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

body.k9m3p-body-wrapper {
  font-family: "Roboto", sans-serif;
  background-color: #2d3447;
  color: #e8e8e8;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header Styles */
.m7k3p-header-main {
  background: linear-gradient(135deg, #1d2158 0%, #252a5e 100%);
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.p9k2m-navbar-custom {
  padding: 0;
}

.t3k7m-logo-image {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.t3k7m-logo-image:hover {
  transform: scale(1.05);
}

.p5k7n-nav-menu .nav-link {
  color: #96a5d1 !important;
  font-weight: 500;
  padding: 8px 16px;
  transition: all 0.3s ease;
  position: relative;
}

.p5k7n-nav-menu .nav-link:hover {
  color: #eaae16 !important;
}

.p5k7n-nav-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #eaae16;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.p5k7n-nav-menu .nav-link:hover::after {
  width: 80%;
}

.r8k2p-online-counter {
  background: rgba(150, 165, 209, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.t4k9m-online-icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.k2m8p-btn-login {
  background-color: #96a5d1;
  color: #1d2158;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.k2m8p-btn-login:hover {
  background-color: #a8b5dd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(150, 165, 209, 0.4);
  color: #1d2158;
}

.y7k3m-btn-signup {
  background-color: #eaae16;
  color: #1d2158;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.y7k3m-btn-signup:hover {
  background-color: #f5c13e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 174, 22, 0.4);
  color: #1d2158;
}

/* Hero Section */
.k7m3p-hero-slider {
  margin-bottom: 40px;
}

.t3k7p-hero-image {
  height: 500px;
  object-fit: cover;
  filter: brightness(0.7);
}

.m8k2p-slide-content {
  background: linear-gradient(to top, rgba(29, 33, 88, 0.9), transparent);
  padding: 40px 20px;
  bottom: 0;
  left: 0;
  right: 0;
}

.j4k9n-slide-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.l7k3m-slide-text {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.y2k8p-cta-button {
  background-color: #eaae16;
  color: #1d2158;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

.y2k8p-cta-button:hover {
  background-color: #f5c13e;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(234, 174, 22, 0.5);
  color: #1d2158;
}

/* Breadcrumbs */
.k9m3p-breadcrumb-nav {
  margin: 20px 0;
}

.p7k2m-breadcrumb-list {
  background-color: rgba(29, 33, 88, 0.3);
  padding: 12px 20px;
  border-radius: 8px;
}

.breadcrumb-item a {
  color: #96a5d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #eaae16;
}

.breadcrumb-item.active {
  color: #e8e8e8;
}

/* Content Sections */
.w5k9m-content-box {
  background: linear-gradient(135deg, rgba(29, 33, 88, 0.4) 0%, rgba(37, 42, 94, 0.4) 100%);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.entry-title {
  color: #eaae16;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.q4n7x-section-title {
  color: #eaae16;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

/* Table Styles */
.w2k9p-table-container {
  overflow-x: auto;
  margin: 30px 0;
}

.r5t8m-info-table {
  width: 100%;
  background: rgba(29, 33, 88, 0.3);
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #96a5d1;
}

.r5t8m-info-table tbody tr {
  border-bottom: 1px solid rgba(150, 165, 209, 0.2);
}

.r5t8m-info-table tbody tr:last-child {
  border-bottom: none;
}

.h3j6k-param {
  padding: 15px 20px;
  font-weight: 600;
  color: #96a5d1;
  width: 30%;
}

.m8p2l-value {
  padding: 15px 20px;
  color: #e8e8e8;
}

/* Winners Section */
.t7k3m-winners-section {
  background: linear-gradient(135deg, rgba(29, 33, 88, 0.4) 0%, rgba(37, 42, 94, 0.4) 100%);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.y9p4l-winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.k2m8x-winner-card {
  background: rgba(150, 165, 209, 0.1);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(150, 165, 209, 0.2);
}

.k2m8x-winner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(234, 174, 22, 0.3);
  border-color: #eaae16;
}

.n5j7p-rank {
  background: linear-gradient(135deg, #eaae16, #f5c13e);
  color: #1d2158;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.l3k9m-nickname {
  flex: 1;
  color: #96a5d1;
  font-weight: 600;
}

.w8p2k-amount {
  color: #eaae16;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Video Section */
.v6n2k-video-section {
  background: linear-gradient(135deg, rgba(29, 33, 88, 0.4) 0%, rgba(37, 42, 94, 0.4) 100%);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.j8m4p-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 30px;
}

.z3k7n-video-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* Wheel of Fortune */
.b5k9m-wheel-section {
  background: linear-gradient(135deg, rgba(29, 33, 88, 0.4) 0%, rgba(37, 42, 94, 0.4) 100%);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.p3m7k-wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.x9j4n-wheel-canvas {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.l2k8p-spin-button {
  background: linear-gradient(135deg, #eaae16, #f5c13e);
  color: #1d2158;
  padding: 16px 50px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(234, 174, 22, 0.4);
}

.l2k8p-spin-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(234, 174, 22, 0.6);
}

.l2k8p-spin-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.h7m3k-wheel-result {
  background: rgba(29, 33, 88, 0.9);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #eaae16;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.w2k6m-result-title {
  color: #eaae16;
  font-size: 2rem;
  margin-bottom: 15px;
}

.y5j9n-result-text {
  color: #e8e8e8;
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.r8m2k-bonus-amount {
  color: #eaae16;
  font-weight: 700;
  font-size: 1.5rem;
}

.k3p7m-claim-button {
  background: linear-gradient(135deg, #eaae16, #f5c13e);
  color: #1d2158;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
}

.k3p7m-claim-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(234, 174, 22, 0.5);
  color: #1d2158;
}

/* Author Section */
.m4k8p-author-section {
  background: linear-gradient(135deg, rgba(29, 33, 88, 0.4) 0%, rgba(37, 42, 94, 0.4) 100%);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.n7j3k-author-card {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.p2m6k-author-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #eaae16;
  object-fit: cover;
}

.l5j8n-author-name {
  color: #eaae16;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.t3k7p-author-bio {
  color: #e8e8e8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.k8p4n-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(150, 165, 209, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  color: #96a5d1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.k8p4n-social-link:hover {
  background: rgba(234, 174, 22, 0.2);
  color: #eaae16;
  transform: translateY(-2px);
}

/* FAQ Section */
.x2k9m-faq-section {
  background: linear-gradient(135deg, rgba(29, 33, 88, 0.4) 0%, rgba(37, 42, 94, 0.4) 100%);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.m5j8k-faq-item {
  background: rgba(150, 165, 209, 0.1);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #eaae16;
  transition: all 0.3s ease;
}

.m5j8k-faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(234, 174, 22, 0.2);
}

.w4k7p-faq-question {
  color: #eaae16;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.t9m2k-faq-answer p {
  color: #e8e8e8;
  line-height: 1.8;
  margin: 0;
}

/* Footer */
.m8k3p-footer-main {
  background: linear-gradient(135deg, #1d2158 0%, #252a5e 100%);
  padding: 50px 0 20px;
  margin-top: 60px;
  border-top: 3px solid #eaae16;
}

.j6k9m-footer-title {
  color: #eaae16;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.l3k7p-footer-desc {
  color: #96a5d1;
  line-height: 1.8;
}

.y2k8p-footer-menu li {
  margin-bottom: 10px;
}

.y2k8p-footer-menu a {
  color: #96a5d1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.y2k8p-footer-menu a:hover {
  color: #eaae16;
  padding-left: 5px;
}

.k7m3p-payment-logos,
.p9k2m-provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.n4k8m-payment-icon,
.w5k8p-provider-icon {
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.n4k8m-payment-icon:hover,
.w5k8p-provider-icon:hover {
  transform: scale(1.1);
}

.t8k3m-footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(150, 165, 209, 0.2);
}

.m2k7p-copyright {
  color: #96a5d1;
  margin: 0;
}

.l9k4m-legal-links a {
  color: #96a5d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.l9k4m-legal-links a:hover {
  color: #eaae16;
}

.k5m8p-disclaimer {
  color: #96a5d1;
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

/* Sticky Widget */
.p7k3m-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1d2158 0%, #252a5e 100%);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  animation: slideUp 0.5s ease;
}

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

.w9k2p-widget-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.t4k8m-widget-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.l3k7p-bonus-emoji {
  font-size: 2rem;
}

.j6k9m-bonus-text {
  color: #eaae16;
  font-weight: 700;
  font-size: 1.2rem;
}

.y2k8p-widget-button {
  background: linear-gradient(135deg, #eaae16, #f5c13e);
  color: #1d2158;
  padding: 12px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
}

.y2k8p-widget-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(234, 174, 22, 0.5);
  color: #1d2158;
}

/* Content Styling */
.t3k7p-main-content h2 {
  color: #eaae16;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.t3k7p-main-content h3 {
  color: #96a5d1;
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.t3k7p-main-content p {
  color: #e8e8e8;
  line-height: 1.8;
  margin-bottom: 15px;
}

.t3k7p-main-content ul,
.t3k7p-main-content ol {
  color: #e8e8e8;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 30px;
}

.t3k7p-main-content li {
  margin-bottom: 8px;
}

.t3k7p-main-content a {
  color: #96a5d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.t3k7p-main-content a:hover {
  color: #eaae16;
}

.t3k7p-main-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(29, 33, 88, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.t3k7p-main-content table th,
.t3k7p-main-content table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(150, 165, 209, 0.2);
}

.t3k7p-main-content table th {
  background: rgba(150, 165, 209, 0.2);
  color: #eaae16;
  font-weight: 600;
}

.t3k7p-main-content table td {
  color: #e8e8e8;
}

/* Unused styles for uniqueness */
.z9x4k-unused-class {
  display: none;
}
.m3p7k-hidden-element {
  visibility: hidden;
}
.t8k2n-deprecated-style {
  opacity: 0;
}
.k5m9p-legacy-wrapper {
  position: relative;
}
.j7k3n-old-container {
  margin: 0;
}
.w2k8m-unused-grid {
  grid-template-columns: 1fr;
}
.p4k7n-hidden-section {
  display: none;
}
.l9k2m-deprecated-box {
  padding: 0;
}
/* Базові стилі таблиць у блоці .info */
.container.info table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.4;
  border: 1px solid #e9ecef;
  border-radius: 12px; /* працює в сучасних браузерах разом із overflow:hidden нижче */
  overflow: hidden;
}

.container.info th,
.container.info td {
  padding: 12px 14px;
  border-bottom: 1px solid #f1f3f5;
  text-align: left;
  vertical-align: top;
}

.container.info thead th {
  background: #f8f9fa;
  font-weight: 600;
  white-space: nowrap;
}

.container.info tbody tr:last-child td {
  border-bottom: none;
}

/* Невеликий тюнінг типографіки всередині таблиці */
.container.info td a { text-decoration: underline; }

/* ===== Мобільна адаптація (stack-карточки) ===== */
@media (max-width: 640px) {
  .container.info table {
    display: block;       /* дозволяє робити кожен <tr> блоком */
    border: 0;
    overflow: visible;    /* щоб тіні карток не обрізались */
  }

  .container.info thead {
    /* Приховуємо заголовки, але зберігаємо їх для скрінрідерів */
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden; clip: rect(1px,1px,1px,1px);
    white-space: nowrap;
  }

  .container.info tbody {
    display: block;
  }

  .container.info tbody tr {
    display: block;
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(16,24,40,.04);
    margin: 12px 0;
    padding: 8px 12px;
  }

  .container.info tbody td {
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: start;
    gap: 8px 12px;
    border: 0;                 /* лінії робитимемо між блоками */
    padding: 10px 0;
  }

  .container.info tbody td + td {
    border-top: 1px dashed #eef2f6;
  }

  /* Підпис колонки береться з data-label, яке додасть JS */
  .container.info tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #334155;
    word-wrap: anywhere;
  }

  /* Значення комірки */
  .container.info tbody td {
    color: #0f172a;
    word-wrap: anywhere;
  }

  /* Робимо клікабельні посилання зручнішими */
  .container.info tbody td a {
    display: inline-block;
    line-height: 1.3;
  }
}

/* Опційно: якщо таблиця дуже широка і ви хочете саме горизонтальний скролл, дайте контейнеру клас .table-scroll */
.container.info .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.container.info .table-scroll table {
  min-width: 600px; /* щоб з’явився скролл на вузьких екранах */
  border-radius: 0;
}

/* Дрібні покращення доступності/анімацій */
@media (prefers-reduced-motion: reduce) {
  .container.info * { transition: none !important; }
}
