:root {
  --color-primary: #0255c2;
  --color-secondary: #54b146;
  --color-bg: #f5f5f5;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #e0e0e0;
  --font-main: "Roboto", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.k3m9p-body {
  position: relative;
  min-height: 100vh;
}

/* Header Styles */
.j8k3m-header {
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.n7k2m-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.p4k9j-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.m3k7p-logo-block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.h5k2m-logo {
  display: block;
  transition: opacity 0.3s ease;
}

.h5k2m-logo:hover {
  opacity: 0.8;
}

.h5k2m-logo img {
  height: 50px;
  width: auto;
}

.k9m3p-online-count {
  background: linear-gradient(135deg, #54b146 0%, #45a037 100%);
  color: var(--color-white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(84, 177, 70, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(84, 177, 70, 0.8);
  }
}

.j7k3m-online-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.p8k4m-nav-block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.n5k8j-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.n5k8j-menu li a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 15px;
}

.n5k8j-menu li a:hover {
  color: var(--color-primary);
}

.k4m9p-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.m7k3j-btn {
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.p9k2m-btn-login {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.p9k2m-btn-login:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(2, 85, 194, 0.3);
}

.j3k8m-btn-signup {
  background: linear-gradient(135deg, #54b146 0%, #45a037 100%);
  color: var(--color-white);
  border: 2px solid transparent;
}

.j3k8m-btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(84, 177, 70, 0.4);
}

.h8k3m-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.h8k3m-burger span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.h8k3m-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.h8k3m-burger.active span:nth-child(2) {
  opacity: 0;
}

.h8k3m-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.k7m3p-hero {
  background: linear-gradient(135deg, #0255c2 0%, #0145a0 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.k7m3p-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/banner6.png") center / cover no-repeat;
  z-index: 0;
}

.m9k4j-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  background: rgba(128, 128, 128, 0.6); /* сірий з 60% прозорістю */
  color: #fff;
  padding: 20px;
  border-radius: 10px;
}

.p3k7m-hero-content {
  color: var(--color-white);
}

.p3k7m-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.p3k7m-hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
  opacity: 0.95;
}

.k5m8j-hero-btn {
  background: linear-gradient(135deg, #54b146 0%, #45a037 100%);
  color: var(--color-white);
  padding: 18px 45px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 20px rgba(84, 177, 70, 0.4);
}

.k5m8j-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(84, 177, 70, 0.6);
}

.j9k3m-demo-game {
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.j9k3m-demo-game h3 {
  margin-bottom: 15px;
  color: var(--color-text);
  font-size: 20px;
}

.m4k7p-demo-placeholder {
  width: 100%;
  height: 400px;
  background: #f0f0f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
}

/* Container */
.m4k8j-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Table of Contents */
.p7k3m-toc {
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.p7k3m-toc h2 {
  color: var(--color-primary);
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

.k8m3j-toc-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.k8m3j-toc-list li a {
  color: var(--color-text);
  text-decoration: none;
  padding: 12px 20px;
  display: block;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.k8m3j-toc-list li a:hover {
  background: #e9ecef;
  border-left-color: var(--color-primary);
  transform: translateX(5px);
}

/* Jackpots Block */
.m9k4p-jackpots {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.m9k4p-jackpots::before {
  content: "💰";
  position: absolute;
  font-size: 200px;
  opacity: 0.1;
  right: -50px;
  top: -50px;
}

.m9k4p-jackpots h2 {
  color: #333;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.j7k4m-jackpot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.p3k9m-jackpot-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.p3k9m-jackpot-item:hover {
  transform: translateY(-5px);
}

.p3k9m-jackpot-item h3 {
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 10px;
}

.k5m7j-jackpot-amount {
  font-size: 32px;
  font-weight: 900;
  color: #d4af37;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Winners Block */
.k4m8p-winners {
  background: var(--color-white);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.k4m8p-winners h2 {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.m7k3p-winners-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}

.m7k3p-winners-table table {
  width: 100%;
  min-width: 600px;
}

.m7k3p-winners-table th,
.m7k3p-winners-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.m7k3p-winners-table th {
  background: #f8f9fa;
  font-weight: 700;
  color: var(--color-text);
}

.m7k3p-winners-table tr:hover {
  background: #f8f9fa;
}

.j8k2m-winner-rank {
  font-weight: 700;
  color: var(--color-primary);
}

.p9k3m-winner-amount {
  font-weight: 700;
  color: var(--color-secondary);
}

/* Games Block */
.k7m4p-games {
  background: var(--color-white);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.k7m4p-games h2 {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.m3k8j-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.p4k7m-game-card {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.p4k7m-game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.j9k4m-game-image {
  width: 100%;
  height: 200px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.k3m7p-game-info {
  padding: 20px;
}

.k3m7p-game-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--color-text);
}

.m8k3j-game-btn {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.m8k3j-game-btn:hover {
  background: #0145a0;
  transform: scale(1.05);
}

/* Modal */
.p7k9m-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.p7k9m-modal.active {
  display: flex;
}

.k4m9j-modal-content {
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.j8k3m-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

.j8k3m-modal-close:hover {
  color: #333;
}

.m9k4p-modal-iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 10px;
  margin-bottom: 20px;
}

.k7m3j-modal-play-btn {
  background: linear-gradient(135deg, #54b146 0%, #45a037 100%);
  color: var(--color-white);
  padding: 15px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.k7m3j-modal-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(84, 177, 70, 0.4);
}

/* Mini Game */
.p8k4m-minigame {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
  color: var(--color-white);
}

.p8k4m-minigame h2 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.k9m3j-slot-machine {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.m4k7j-reels {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.j7k3m-reel {
  background: var(--color-white);
  width: 100px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.j7k3m-reel.spinning {
  animation: spin 0.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}

.p3k8m-spin-btn {
  background: linear-gradient(135deg, #54b146 0%, #45a037 100%);
  color: var(--color-white);
  padding: 15px 50px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(84, 177, 70, 0.4);
}

.p3k8m-spin-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(84, 177, 70, 0.6);
}

.p3k8m-spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.k5m9j-result {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  min-height: 30px;
}

.m7k4p-claim-btn {
  background: #ffd700;
  color: #333;
  padding: 12px 35px;
  border-radius: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.m7k4p-claim-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* Content Block */
.p9k3m-content {
  background: var(--color-white);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.h4j8k-h1 {
  color: var(--color-primary);
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.3;
}

.n7m2k-text {
  line-height: 1.8;
}

.n7m2k-text h2 {
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.n7m2k-text h3 {
  color: var(--color-text);
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.n7m2k-text p {
  margin-bottom: 20px;
  color: var(--color-text);
}

.n7m2k-text ul,
.n7m2k-text ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.n7m2k-text li {
  margin-bottom: 10px;
  color: var(--color-text);
}

.n7m2k-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.n7m2k-text table th,
.n7m2k-text table td {
  padding: 15px;
  text-align: left;
  border: 1px solid var(--color-border);
}

.n7m2k-text table th {
  background: #f8f9fa;
  font-weight: 700;
  color: var(--color-text);
}

.n7m2k-text table tr:hover {
  background: #f8f9fa;
}

.n7m2k-text strong {
  color: var(--color-primary);
  font-weight: 700;
}

.p7h3m-section {
  margin-bottom: 40px;
}

.n4k8p-heading {
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.m2k9j-table {
  width: 100%;
  overflow-x: auto;
  display: block;
}

.m2k9j-table table {
  width: 100%;
  min-width: 600px;
}

/* Footer */
.j4k8m-footer {
  background: var(--color-white);
  padding: 50px 20px 30px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  margin-top: 60px;
}

.m8k3p-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.p3k9m-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.k7m4j-footer-block h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.k7m4j-footer-block ul {
  list-style: none;
}

.k7m4j-footer-block ul li {
  margin-bottom: 10px;
}

.k7m4j-footer-block ul li a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.k7m4j-footer-block ul li a:hover {
  color: var(--color-primary);
}

.m9k4p-payment-logos,
.j8k3m-provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.m9k4p-payment-logos img,
.j8k3m-provider-logos img {
  height: 30px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.m9k4p-payment-logos img:hover,
.j8k3m-provider-logos img:hover {
  opacity: 1;
}

.k4m7p-footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  text-align: center;
}

.k4m7p-footer-bottom p {
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.p8k3m-author-info {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  text-align: left;
}

.p8k3m-author-info h4 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

.p8k3m-author-info p {
  color: var(--color-text);
  font-size: 14px;
  margin-bottom: 8px;
}

.p8k3m-author-info a {
  color: var(--color-primary);
  text-decoration: none;
}

.p8k3m-author-info a:hover {
  text-decoration: underline;
}

/* Widget */
.k9m4p-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #54b146 0%, #45a037 100%);
  padding: 15px 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.k9m4p-widget p {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.m7k3p-widget-btn {
  background: var(--color-white);
  color: var(--color-secondary);
  padding: 12px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.m7k3p-widget-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .n5k8j-menu {
    display: none;
  }

  .h8k3m-burger {
    display: flex;
  }

  .n5k8j-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .m9k4j-hero-container {
    grid-template-columns: 1fr;
  }

  .p3k7m-hero-content h1 {
    font-size: 36px;
  }

  .m3k8j-games-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .p4k9j-header-content {
    flex-direction: column;
  }

  .p3k7m-hero-content h1 {
    font-size: 28px;
  }

  .p3k7m-hero-content p {
    font-size: 16px;
  }

  .k9m4p-widget {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .k9m4p-widget p {
    font-size: 14px;
    text-align: center;
  }

  .h4j8k-h1 {
    font-size: 28px;
  }

  .n4k8p-heading {
    font-size: 24px;
  }
}

/* Unused styles for obfuscation */
.elementor-widget-container {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
}
.wp-block-cover {
  position: relative;
  background-size: cover;
  background-position: 50%;
  min-height: 430px;
  width: 100%;
}
.yoast-breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
}
.woocommerce-product-gallery {
  position: relative;
  margin-bottom: 3em;
}
@media (max-width: 768px){ .table-scroll{overflow-x:auto} .table-scroll table{min-width:640px} }
/* ===== Responsive tables (mobile only) ===== */
@media (max-width: 768px) {
  .xj9k2-content-wrapper table {
    display: block;
    width: 100%;
    border: 0;
    border-collapse: separate; /* щоб не «липли» бордери при картках */
  }

  /* ховаємо рядок заголовків */
  .xj9k2-content-wrapper table thead,
  .xj9k2-content-wrapper table tr:first-child:has(th) {
    display: none !important;
  }

  .xj9k2-content-wrapper table tbody,
  .xj9k2-content-wrapper table tr {
    display: block;
    width: 100%;
  }

  .xj9k2-content-wrapper table tr {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    margin: 12px 0;
    overflow: hidden;
  }

  .xj9k2-content-wrapper table td,
  .xj9k2-content-wrapper table th {
    display: block;
    border: 0;
    padding: 12px 16px 12px 44%;
    position: relative;
    min-height: 44px;
    line-height: 1.4;
  }

  /* підпис колонки */
  .xj9k2-content-wrapper table td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    top: 12px;
    width: calc(44% - 16px);
    color: #6b7280;           /* сірий */
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* дрібні покращення типографіки */
  .xj9k2-content-wrapper table td + td {
    border-top: 1px dashed #eee;
  }
}
