@keyframes lure-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 151, 58, 0.5);
  }
  60% {
    box-shadow: 0 0 0 10px rgba(200, 151, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 151, 58, 0);
  }
}
@keyframes bubble-rise {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0;
  }

  20% {
    opacity: 0.6;
  }

  80% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-10vh) scale(1.2);
    opacity: 0;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bubble {
  position: fixed;
  border-radius: 50%;
  background: rgba(24, 151, 117, 0.5);
  animation: bubble-rise linear infinite;
  pointer-events: none;
  z-index: 100;
}
.card {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 28px rgba(10, 30, 25, 0.7),
    0 2px 8px rgba(200, 151, 58, 0.15);
}
.card-featured {
  border-top: 2px solid var(--accent-color);
}
.grid {
  display: grid;
  gap: 20px;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flex-center {
  align-items: center;
  justify-content: center;
}
.text-center {
  text-align: center;
}
.text-accent {
  color: var(--accent-color);
}
.text-secondary-color {
  color: var(--text-secondary);
}
.text-muted-color {
  color: var(--text-muted);
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-accent {
  background: rgba(200, 151, 58, 0.15);
  color: var(--accent-color);
  border: 1px solid rgba(200, 151, 58, 0.3);
}
.badge-primary {
  background: rgba(26, 107, 90, 0.2);
  color: var(--primary-light);
  border: 1px solid rgba(26, 107, 90, 0.4);
}
.table-wrapper {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.table-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 32px;
  background: linear-gradient(to right, transparent, var(--bg-card));
  pointer-events: none;
  display: none;
}
@media (max-width: 767px) {
  .table-wrapper::after {
    display: block;
  }
}
table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 580px;
}
th {
  background: var(--primary-dark);
  color: var(--text-on-dark);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.88rem;
  vertical-align: top;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
tr:last-child td {
  border-bottom: none;
}
tr:hover td {
  background: rgba(26, 107, 90, 0.08);
}
.wave-divider {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath d='M0,30 C300,60 900,0 1200,30 L1200,60 L0,60Z' fill='%231a6b5a' opacity='0.15'/%3E%3C/svg%3E")
    center/cover no-repeat;
  height: 60px;
  width: 100%;
}
/* .section-header {
        margin-bottom: 40px;
      } */
p {
  color: var(--text-secondary);
  /* max-width: 700px; */
  margin-top: 12px;
  line-height: 1.7;
}
.section-header.text-center p {
  margin: 12px auto 0;
}
.bonus-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.bonus-card {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 28px 24px;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 28px rgba(10, 30, 25, 0.7),
    0 2px 8px rgba(200, 151, 58, 0.15);
}
.bonus-card-featured {
  border-top: 2px solid var(--accent-color);
}
.bonus-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.bonus-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}
.bonus-label {
  font-size: 0.8rem;
  color: #a5e8d7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.bonus-conditions {
  list-style: none;
  padding: 0;
}
.bonus-conditions li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(31, 61, 53, 0.5);
  color: var(--text-secondary);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.bonus-conditions li::before {
  content: "✓";
  color: var(--primary-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.bonus-conditions li:last-child {
  border-bottom: none;
}
.games-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
@media (min-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
.game-card {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 28px rgba(10, 30, 25, 0.7),
    0 2px 8px rgba(200, 151, 58, 0.15);
}
.game-card-thumb {
  height: 100px;
  background: linear-gradient(135deg, var(--primary-dark), var(--bg-main));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
}
.game-card-body {
  padding: 12px;
}
.game-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-provider {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.game-card-rtp {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(13, 31, 27, 0.85);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.7rem;
  color: var(--accent-color);
  font-weight: 700;
}
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.category-tab {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 44px;
}
.category-tab.active,
.category-tab:hover {
  background: var(--primary-color);
  color: var(--text-on-dark);
  border-color: var(--primary-color);
}
.games-screenshot {
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-top: 32px;
}
.payment-features {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 32px;
}
.payment-feature {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.payment-feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.payment-feature-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.payment-feature-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.vip-tiers {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.vip-tier {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vip-tier:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 28px rgba(10, 30, 25, 0.7),
    0 2px 8px rgba(200, 151, 58, 0.15);
}
.vip-tier-elite {
  border-top: 2px solid var(--accent-color);
  background: linear-gradient(180deg, rgba(200, 151, 58, 0.08), var(--bg-card));
}
.vip-tier-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.vip-tier-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
}
ul,
ol {
  list-style: none;
  text-align: left;
  padding: 0;
  margin-top: 16px;
}
ul,
ol li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 5px 0;
  border-bottom: 1px solid rgba(31, 61, 53, 0.4);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
ul li::before {
  content: "◉";
  color: var(--primary-light);
  flex-shrink: 0;
  margin-right: 5px;
}
ol li::before {
  content: "◯";
  color: var(--primary-light);
  flex-shrink: 0;
}
ul li:last-child {
  border-bottom: none;
}
.steps {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .steps-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-on-dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.step-title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.providers-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.provider-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.provider-badge:hover {
  border-color: var(--primary-light);
  color: var(--text-primary);
}
.review-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .review-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}
.review-content h3 {
  color: var(--accent-color);
  margin: 28px 0 12px;
}
.review-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}
.review-score {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 28px 24px;
  margin-bottom: 20px;
  text-align: center;
}
.score-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  display: block;
}
.score-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  display: block;
}
.score-bars {
  text-align: left;
}
.score-bar-item {
  margin-bottom: 12px;
}
.score-bar-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
}
.score-bar-track {
  height: 6px;
  background: rgba(31, 61, 53, 0.6);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 3px;
}
.pros-cons {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 24px;
  margin-bottom: 20px;
}
.pros-cons h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pros-cons h4.pros-title {
  color: var(--primary-light);
}
.pros-cons h4.cons-title {
  color: #e85a5a;
  margin-top: 20px;
}
.pros-cons ul {
  list-style: none;
  padding: 0;
}
.pros-cons ul li {
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(31, 61, 53, 0.4);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pros-cons ul li:last-child {
  border-bottom: none;
}
.pros-cons ul.pros-list li::before {
  content: "✓";
  color: var(--primary-light);
  font-weight: 700;
  flex-shrink: 0;
}
.pros-cons ul.cons-list li::before {
  content: "✗";
  color: #e85a5a;
  font-weight: 700;
  flex-shrink: 0;
}
.overview-table-wrapper {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 20px;
}
.rg-tools {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 28px;
}
.rg-tool {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.rg-tool-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.rg-tool-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.rg-tool-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.rg-orgs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.rg-org {
  background: rgba(26, 107, 90, 0.1);
  border: 1px solid rgba(26, 107, 90, 0.3);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 0.8rem;
  color: var(--primary-light);
  font-weight: 500;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-color);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  color: var(--text-primary);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  font-weight: 600;
  transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-question:hover {
  color: var(--accent-color);
}
.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-color);
  font-size: 1rem;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent-color);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.92rem;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 31, 27, 0.93) 0%,
    rgba(15, 74, 61, 0.75) 50%,
    rgba(13, 31, 27, 0.88) 100%
  );
}
.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-content {
    padding: 100px 0;
  }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 151, 58, 0.12);
  border: 1px solid rgba(200, 151, 58, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
h1 {
  margin-bottom: 16px;
}
.hero-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-stat {
  background: rgba(22, 41, 35, 0.75);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 20px;
  min-width: 110px;
}
.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.bonus-note-box {
  background: rgba(200, 151, 58, 0.08);
  border: 1px solid rgba(200, 151, 58, 0.2);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 20px;
}
.bonus-note-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.bonus-note-box strong {
  color: var(--accent-color);
}
.extra-bonus-box {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 24px;
  margin-top: 28px;
}
.extra-bonus-box h3 {
  color: var(--accent-color);
  margin-bottom: 14px;
}
.extra-bonus-box p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.92rem;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mobile-info-box {
  margin-top: 32px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 24px;
}
.mobile-info-box h3 {
  margin-bottom: 14px;
  color: var(--text-on-dark);
}
.mobile-info-box p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.92rem;
}
.mobile-features-grid {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.mobile-features-grid li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.mobile-features-grid li span.check {
  color: var(--primary-light);
  flex-shrink: 0;
}
.crash-section {
  margin-top: 40px;
}
.crash-section h3 {
  margin-bottom: 20px;
  color: var(--text-on-dark);
}
.live-section {
  margin-top: 32px;
}
.live-section h3 {
  margin-bottom: 20px;
  color: var(--text-on-dark);
}
.review-cta-block {
  text-align: center;
}
.review-cta-block .btn {
  width: 100%;
  display: block;
}
.review-cta-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}
.rg-note-box {
  margin-top: 32px;
  background: rgba(15, 74, 61, 0.15);
  border: 1px solid rgba(26, 107, 90, 0.2);
  border-radius: 8px;
  padding: 24px;
}
.rg-note-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.table-section-wrapper {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 20px;
}
.summary-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 28px 0;
}
.summary-item {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.summary-item-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.summary-item-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.summary-item-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

:root {
  --primary-color: #1a6b5a;
  --primary-dark: #0f4a3d;
  --primary-light: #2a9478;
  --accent-color: #c8973a;
  --accent-light: #e8b85a;
  --bg-main: #0d1f1b;
  --bg-secondary: #111f1c;
  --bg-card: #162923;
  --bg-header: #0a1815;
  --bg-footer: #091410;
  --text-primary: #e8ede9;
  --text-secondary: #9bbfb2;
  --text-muted: #5a7d74;
  --text-on-dark: #f0f5f1;
  --border-color: #1f3d35;
  --cta-gradient-start: #c8973a;
  --cta-gradient-end: #9d7228;
  --card-radius: 8px;
  --button-radius: 6px;
  --hover-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bassbet-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-color);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color: var(--text-on-dark);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.7;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  width: 100%;
  box-sizing: border-box;
}

.bassbet-footer *,
.bassbet-footer *::before,
.bassbet-footer *::after {
  box-sizing: border-box;
}

.footer-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

.footer-wave {
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0,20 C300,40 900,0 1200,20 L1200,40 L0,40Z' fill='%231a6b5a' opacity='0.12'/%3E%3C/svg%3E")
    center/cover no-repeat;
  margin-bottom: 0;
}

.footer-main {
  padding: 56px 0 40px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 0;
}

.footer-col--brand {
  flex: 1 1 260px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--primary-light);
  flex-shrink: 0;
}

.footer-logo-mark::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(-20deg);
}

.footer-logo-mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 50%;
  bottom: 10px;
  right: 7px;
  opacity: 0.85;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
}

.footer-logo-sub {
  font-size: 0.7rem;
  color: var(--accent-color);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}

.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.footer-age-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-age-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.footer-col-title {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-nav-list li {
  margin: 0;
  padding: 0;
}

.footer-nav-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
  display: inline-block;
  padding: 5px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: var(--hover-transition);
}

.footer-nav-list a:hover {
  color: var(--accent-light);
  transform: translateX(3px);
}

.footer-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0;
}

.footer-responsible {
  padding: 32px 0;
}

.footer-responsible-inner {
  background: #0d1f1b;
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 24px;
}

.footer-responsible-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.footer-responsible-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 14px;
}

.footer-responsible-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-responsible-links a {
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--hover-transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-responsible-links a:hover {
  color: var(--accent-light);
}

.footer-payments {
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
}

.footer-payments-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}

.footer-payment-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-payment-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background: #0d1f1b;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--hover-transition);
}

.footer-payment-label:hover {
  border-color: var(--accent-color);
  color: var(--accent-light);
}

.footer-regulator {
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
}

.footer-regulator-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.footer-regulator-text strong {
  color: var(--text-secondary);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--hover-transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-legal-links a:hover {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 32px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .footer-col,
  .footer-col--brand {
    flex: 1 1 100%;
    width: 100%;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal-links {
    gap: 4px 12px;
  }

  .footer-responsible-links {
    flex-direction: column;
    gap: 0;
  }

  .footer-payment-labels {
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .footer-col-title {
    font-size: 1.05rem;
  }

  .footer-responsible-inner {
    padding: 18px 16px;
  }
}

:root {
  --primary-color: #1a6b5a;
  --primary-dark: #0f4a3d;
  --primary-light: #2a9478;
  --accent-color: #c8973a;
  --accent-light: #e8b85a;
  --bg-main: #0d1f1b;
  --bg-secondary: #111f1c;
  --bg-card: #162923;
  --bg-header: #0a1815;
  --bg-footer: #091410;
  --text-primary: #e8ede9;
  --text-secondary: #9bbfb2;
  --text-muted: #5a7d74;
  --text-on-dark: #f0f5f1;
  --border-color: #1f3d35;
  --cta-gradient-start: #c8973a;
  --cta-gradient-end: #9d7228;
  --button-radius: 6px;
  --card-radius: 8px;
  --hover-transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-height-desktop: 68px;
  --header-height-mobile: 56px;
}

@keyframes lure-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 151, 58, 0.5);
  }
  60% {
    box-shadow: 0 0 0 10px rgba(200, 151, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 151, 58, 0);
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#bassbet-header *,
#bassbet-header *::before,
#bassbet-header *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#bassbet-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #0a1815;
  border-bottom: 1px solid #1f3d35;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.7;
  color: var(--text-on-dark);
}

#bassbet-header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-height-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#bassbet-header .header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  gap: 10px;
}

#bassbet-header .logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#bassbet-header .logo-icon svg {
  width: 36px;
  height: 36px;
}

#bassbet-header .logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

#bassbet-header .logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  white-space: nowrap;
}

#bassbet-header .logo-name span {
  color: var(--accent-color);
}

#bassbet-header .logo-tagline {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

#bassbet-header .header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}

#bassbet-header .header-nav a {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 12px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
  border-radius: var(--button-radius);
  transition: var(--hover-transition);
  position: relative;
}

#bassbet-header .header-nav a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--primary-light);
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 6px rgba(42, 148, 120, 0.5);
}

#bassbet-header .header-nav a:hover {
  color: var(--text-on-dark);
  background: rgba(26, 107, 90, 0.12);
}

#bassbet-header .header-nav a:hover::after {
  transform: scaleX(1);
}

#bassbet-header .header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

#bassbet-header .btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  text-decoration: none;
  color: var(--text-on-dark);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: var(--button-radius);
  border: 1px solid var(--border-color);
  background: transparent;
  white-space: nowrap;
  transition: var(--hover-transition);
}

#bassbet-header .btn-login:hover {
  border-color: var(--primary-light);
  color: var(--accent-light);
  background: rgba(26, 107, 90, 0.1);
}

#bassbet-header .btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  text-decoration: none;
  color: #0a1815;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: var(--button-radius);
  border: none;
  background: linear-gradient(
    135deg,
    var(--cta-gradient-start),
    var(--cta-gradient-end)
  );
  white-space: nowrap;
  transition: var(--hover-transition);
  animation: lure-pulse 2.4s ease-out infinite;
  position: relative;
}

#bassbet-header .btn-register:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 151, 58, 0.35);
  animation: none;
}

#bassbet-header .burger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--button-radius);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--hover-transition);
  padding: 0;
}

#bassbet-header .burger-btn:hover {
  border-color: var(--primary-light);
  background: rgba(26, 107, 90, 0.1);
}

#bassbet-header .burger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}

#bassbet-header .burger-icon span {
  display: block;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: var(--hover-transition);
  transform-origin: center;
}

#bassbet-header .burger-icon span:nth-child(1) {
  width: 20px;
}

#bassbet-header .burger-icon span:nth-child(2) {
  width: 20px;
  /* clip-path: path("M0,1 Q5,0 10,1 Q15,2 20,1"); */
}

#bassbet-header .burger-icon span:nth-child(3) {
  width: 20px;
}

#bassbet-header
  .burger-btn[aria-expanded="true"]
  .burger-icon
  span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#bassbet-header
  .burger-btn[aria-expanded="true"]
  .burger-icon
  span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

#bassbet-header
  .burger-btn[aria-expanded="true"]
  .burger-icon
  span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#bassbet-header .mobile-nav {
  display: none;
  background: #0a1815;
  border-top: 1px solid var(--border-color);
  overflow: hidden;
}

#bassbet-header .mobile-nav.is-open {
  display: block;
  animation: slide-down 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

#bassbet-header .mobile-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#bassbet-header .mobile-nav a {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 12px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 400;
  border-radius: var(--button-radius);
  transition: var(--hover-transition);
  border-left: 2px solid transparent;
}

#bassbet-header .mobile-nav a:hover {
  color: var(--text-on-dark);
  background: rgba(26, 107, 90, 0.12);
  border-left-color: var(--primary-light);
}

@media (max-width: 1024px) {
  #bassbet-header .header-nav a {
    padding: 0 9px;
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  #bassbet-header .header-inner {
    height: var(--header-height-mobile);
    gap: 12px;
  }

  #bassbet-header .header-nav {
    display: none;
  }

  #bassbet-header .burger-btn {
    display: flex;
  }

  #bassbet-header .logo-tagline {
    display: none;
  }

  #bassbet-header .logo-name {
    font-size: 1.05rem;
  }

  #bassbet-header .logo-icon svg {
    width: 30px;
    height: 30px;
  }

  #bassbet-header .btn-login {
    height: 40px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  #bassbet-header .btn-register {
    height: 40px;
    padding: 0 14px;
    font-size: 0.82rem;
  }
}

@media (max-width: 400px) {
  #bassbet-header .btn-login {
    padding: 0 10px;
    font-size: 0.78rem;
  }

  #bassbet-header .btn-register {
    padding: 0 10px;
    font-size: 0.78rem;
  }

  #bassbet-header .header-cta {
    gap: 6px;
  }
}
