/* ===== Design Tokens ===== */
:root {
  --bg: #101114;
  --secondary: #1A1C24;
  --text: #575C70;
  --text-secondary: #959595;
  --white: #FFFFFF;
  --border: #7918A6;
  --gradient: linear-gradient(100deg, #7918A6 3%, #12AAAA 103%);
  --hero-gradient: linear-gradient(to right, #1A1C24, #643482 46%, #0F7257);
  --radius: 10px;
  --radius-lg: 20px;
  --radius-btn: 15px;
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* ===== Logo ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  height: 40px;
  width: 131px;
  position: relative;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 2px;
}

.logo-games {
  height: 12px;
  width: auto;
}

.logo-zone {
  height: 8px;
  width: auto;
}

/* ===== Gradient Button ===== */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient);
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  padding: 7px 10px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  height: 48px;
  transition: opacity 0.2s;
}

.btn-gradient:hover {
  opacity: 0.9;
}

.btn-gradient.btn-sm {
  font-size: 14px;
  line-height: 20px;
  height: 48px;
}

.btn-with-arrow img {
  width: 24px;
  height: 24px;
}

/* ===== Verified Badge ===== */
.verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--secondary);
  padding: 3px 10px;
  border-radius: var(--radius);
}

.verified-badge img {
  width: 16px;
  height: 16px;
}

.verified-badge span {
  font-size: 12px;
  line-height: 14px;
}

/* ===== Stars ===== */
.stars {
  display: flex;
  align-items: center;
}

.star {
  width: 16px;
  height: 16px;
}

/* ===== Rating ===== */
.rating-score {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  text-align: center;
}

.rating-max {
  color: var(--text-secondary);
}

.rating-reviews {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  text-align: center;
}

/* ===== Payment Icons ===== */
.payment-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.payment-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
}

.more-link {
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
  text-decoration: underline;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.payment-icons-extra {
  display: none;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.payment-icons-extra--open {
  display: flex;
}

/* ===== Section Label ===== */
.section-label {
  background: var(--hero-gradient);
  padding: 10px 50px;
  border-radius: var(--radius);
  overflow: hidden;
}

.section-label span {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--white);
}

/* ===== 18+ Age Banner ===== */
.age-banner {
  background: linear-gradient(171deg, #7918A6 3%, #12AAAA 103%);
  text-align: center;
  padding: 2px 5px;
}

.age-banner p {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.age-banner a {
  text-decoration: underline;
}

/* ===== Mobile Header ===== */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.burger-btn {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

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

.burger-btn.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* ===== Mobile Nav Overlay ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 70px;
}

.mobile-nav .logo {
  margin-bottom: 10px;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
}

.mobile-nav li a {
  display: block;
  padding: 12px 30px;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: color 0.2s;
}

.mobile-nav li a.active {
  color: var(--white);
  border: 1px solid var(--border);
}

/* ===== Page Layout ===== */
.page-wrapper {
  display: flex;
  gap: 10px;
  padding: 20px 50px 0 50px;
  max-width: 1440px;
  margin: 0 auto;
}

/* ===== Sidebar ===== */
.sidebar {
  flex-shrink: 0;
  width: 210px;
}

.sidebar-inner {
  position: sticky;
  top: 20px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
}

.nav-link {
  display: block;
  padding: 12px 30px;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}

.nav-link.active {
  color: var(--white);
  border: 1px solid var(--border);
}

/* ===== Content ===== */
.content {
  flex: 1;
  min-width: 0;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== Hero Section ===== */
.hero-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-banner {
  background: var(--hero-gradient);
  border-radius: var(--radius);
  padding: 30px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.hero-text {
  padding-left: 50px;
  width: 500px;
  flex-shrink: 0;
}

.hero-text h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 16px;
  line-height: 24px;
}

.hero-features {
  flex: 1;
  display: flex;
  gap: 50px;
  padding: 20px 50px;
  align-items: center;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-feature img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-feature span {
  font-size: 16px;
  line-height: 24px;
}

/* ===== Top 3 Cards ===== */
.top3-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-big {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  height: 120px;
  overflow: hidden;
}

.card-big-badge {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: #41095B;
  color: var(--white);
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  padding: 21px 0;
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-big-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  min-width: 0;
}

.card-big-thumb {
  width: 102px;
  height: 88px;
  flex-shrink: 0;
  padding: 10px 2px;
}

.card-big-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}

.card-big-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.card-big-offer {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.offer-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: var(--white);
}

.offer-sub {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

.card-big-payments {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  flex-shrink: 0;
}

.card-big-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  gap: 5px;
}

/* ===== About Section ===== */
.about-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-top {
  display: flex;
  gap: 10px;
}

.about-text-block {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 50px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  min-height: 350px;
}

.about-text-block h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

.about-text-block p {
  font-size: 16px;
  line-height: 24px;
}

.about-icon-block {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 50px;
  width: 410px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  min-height: 350px;
  overflow: hidden;
}

.about-football {
  width: 205px;
  height: 205px;
  object-fit: cover;
}

.about-icon-block p {
  font-size: 16px;
  line-height: 24px;
}

/* ===== Other Cards Grid ===== */
.other-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.card-small {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-small-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-small-thumb {
  width: 102px;
  height: 88px;
  flex-shrink: 0;
  padding: 10px 2px;
}

.card-small-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}

.card-small-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.card-small-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-small-offer {
  flex: 1;
}

.card-small-payments {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.card-small-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== FAQ Section ===== */
.faq-section {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.faq-header {
  text-align: center;
  max-width: 746px;
}

.faq-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 16px;
  line-height: 24px;
}

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 50px;
  text-align: left;
}

.faq-question span {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: var(--white);
}

.faq-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 50px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 50px 20px 50px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

/* ===== Why Choose Section ===== */
.why-section {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 10px;
}

.why-header p {
  font-size: 16px;
  line-height: 24px;
}

.why-cards {
  display: flex;
  gap: 20px;
}

.why-card {
  flex: 1;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
}

.why-card h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
}

.why-card p {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

/* ===== Article Block (About page) ===== */
.article-block {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 50px 100px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.article-header h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 20px;
}

.article-header p {
  font-size: 16px;
  line-height: 24px;
}

.article-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-body h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: var(--white);
}

.article-body p {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

.article-body .spacer {
  height: 0;
}

/* ===== Noscript Notice ===== */
.noscript-notice {
  background: linear-gradient(90deg, rgba(121, 24, 166, 0.15), rgba(18, 170, 170, 0.15));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  text-align: center;
}
.noscript-notice p {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
}

/* ===== Age Verification Popup ===== */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-popup {
  background: #101216;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.age-popup-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.age-popup-text h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: var(--white);
}

.age-popup-text p {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}

.age-popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.age-btn {
  width: 100%;
  height: 54px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
  cursor: pointer;
  text-align: center;
  border: none;
  transition: opacity 0.2s;
}

.age-btn:hover {
  opacity: 0.9;
}

.age-btn-deny {
  background: var(--secondary);
  border: 1px solid var(--border);
}

.age-btn-confirm {
  background: var(--gradient);
}

/* ===== Cookie Consent Popup ===== */
.cookie-overlay {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  padding: 0;
}

.cookie-popup {
  background: #101216;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 320px;
  max-width: calc(100vw - 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.cookie-popup-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-popup-text h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: var(--white);
}

.cookie-popup-text p {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.cookie-option.disabled {
  cursor: default;
}

.cookie-option input[type="checkbox"] {
  display: none;
}

.cookie-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid var(--text-secondary);
  border-radius: 3px;
  background: transparent;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}

.cookie-option input[type="checkbox"]:checked + .cookie-check {
  background: var(--border);
  border-color: var(--border);
}

.cookie-option input[type="checkbox"]:checked + .cookie-check::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cookie-option span {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

.cookie-popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-btn {
  width: 100%;
  height: 54px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
  cursor: pointer;
  text-align: center;
  border: none;
  transition: opacity 0.2s;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.cookie-btn-cancel {
  background: var(--secondary);
  border: 1px solid var(--border);
}

.cookie-btn-accept {
  background: var(--gradient);
}

/* ===== Policy Block ===== */
.policy-block {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 50px 100px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.policy-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.policy-tab {
  padding: 12px 50px;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
  border-radius: var(--radius);
  background: var(--secondary);
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.policy-tab:hover {
  color: var(--white);
}

.policy-tab.active {
  color: var(--white);
  border-color: var(--border);
}

.policy-content {
  display: none;
  flex-direction: column;
  gap: 50px;
}

.policy-content.active {
  display: flex;
}

.policy-header h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 20px;
}

.policy-header p {
  font-size: 16px;
  line-height: 24px;
}

.policy-date {
  font-size: 14px !important;
  color: var(--text-secondary) !important;
  margin-bottom: 8px;
}

.policy-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-body h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: var(--white);
  margin-top: 8px;
}

.policy-body p {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

.policy-body .policy-bold {
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}

/* ===== Contact Block ===== */
.contact-block {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 50px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.contact-header {
  text-align: center;
  max-width: 530px;
}

.contact-header h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 20px;
}

.contact-header p {
  font-size: 16px;
  line-height: 24px;
}

.contact-form {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row .form-group {
  flex: 1;
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input {
  height: 54px;
}

.form-group textarea {
  height: 118px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.5;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #12AAAA;
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #e74c3c;
}

.form-error {
  font-size: 12px;
  line-height: 16px;
  color: #e74c3c;
  min-height: 16px;
  margin-top: 4px;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.checkbox-wrapper input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  border: 1px solid var(--text-secondary);
  border-radius: 3px;
  background: transparent;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--border);
  border-color: var(--border);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

.checkbox-label a:hover {
  opacity: 0.85;
}

.btn-send {
  width: 100%;
  height: 54px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-send:hover {
  opacity: 0.9;
}

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

.form-success {
  text-align: center;
  padding: 20px;
  background: rgba(18, 170, 170, 0.15);
  border: 1px solid #12AAAA;
  border-radius: var(--radius);
}

.form-success p {
  font-size: 16px;
  line-height: 24px;
  color: #12AAAA;
}

/* ===== Disclaimer Section ===== */
.disclaimer-section {
  display: flex;
}

.disclaimer-inner {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 50px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.disclaimer-inner h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

.disclaimer-sub {
  font-size: 16px;
  line-height: 24px;
}

.disclaimer-box {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.disclaimer-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 15px 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  align-self: flex-start;
}

.disclaimer-box p {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

/* ===== Regulators ===== */
.regulators {
  padding: 0 40px 30px;
}

.regulators-inner {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.regulators-inner a {
  opacity: 0.5;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.regulators-inner a:hover {
  opacity: 1;
}

.regulators-inner img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg);
  padding: 50px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-menus {
  display: flex;
  gap: 100px;
}

.footer-menu h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: var(--white);
  margin-bottom: 30px;
}

.footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-menu li a {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-menu li a:hover {
  color: var(--white);
}

.footer-email p a {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

.footer-copy {
  text-align: center;
}

.footer-copy p {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}

/* ==============================================
   TABLET (max-width: 1024px / ~834px target)
   ============================================== */
@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .page-wrapper {
    padding: 20px 30px 0 30px;
    flex-direction: column;
  }

  .hero-text {
    width: auto;
    flex: 1;
  }

  .hero-text h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .hero-features {
    gap: 30px;
    padding: 20px 30px;
  }

  .hero-feature img {
    width: 70px;
    height: 70px;
  }

  .article-block {
    padding: 30px;
    gap: 50px;
  }

  .article-header h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .article-header p {
    font-size: 15px;
  }

  .article-body h4 {
    font-size: 18px;
    line-height: 24px;
  }

  .article-body p {
    font-size: 15px;
  }

  .about-text-block h2,
  .faq-header h2,
  .why-header h2,
  .disclaimer-inner h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .about-text-block p,
  .faq-header p,
  .about-icon-block p {
    font-size: 15px;
    line-height: 24px;
  }

  .about-icon-block {
    width: 300px;
    padding: 30px;
  }

  .about-football {
    width: 150px;
    height: 150px;
  }

  .card-big-content {
    gap: 15px;
  }

  .faq-question span {
    font-size: 18px;
    line-height: 24px;
  }

  .why-card {
    padding: 30px;
  }

  .why-card h4 {
    font-size: 18px;
    line-height: 24px;
  }

  .footer {
    padding: 30px;
  }

  .footer-menus {
    gap: 50px;
  }

  .section-label span {
    font-size: 20px;
    line-height: 26px;
  }

  .policy-block {
    padding: 30px;
    gap: 30px;
  }

  .policy-tab {
    padding: 10px 30px;
    font-size: 15px;
  }

  .policy-header h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .policy-body h4 {
    font-size: 18px;
    line-height: 24px;
  }

  .contact-block {
    padding: 30px;
    gap: 30px;
  }

  .contact-header h1 {
    font-size: 34px;
    line-height: 40px;
  }
}

/* ==============================================
   SMALL TABLET (max-width: 850px)
   ============================================== */
@media (max-width: 850px) {
  .hero-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-text {
    padding: 0 30px;
    width: 100%;
  }

  .hero-features {
    width: 100%;
    padding: 0 30px;
  }

  .about-top {
    flex-direction: column;
  }

  .about-icon-block {
    width: 100%;
  }

  .about-text-block {
    min-height: auto;
    padding: 30px;
  }

  .other-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-cards {
    flex-direction: column;
  }

  .card-big {
    height: auto;
  }

  .card-big-content {
    flex-wrap: wrap;
    padding: 15px 20px;
    gap: 10px;
  }

  .card-big-offer {
    text-align: left;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .regulators {
    padding: 0 20px 20px;
  }

  .regulators-inner {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}

/* ==============================================
   MOBILE (max-width: 480px)
   ============================================== */
@media (max-width: 480px) {
  .age-banner p {
    font-size: 12px;
    line-height: 14px;
  }

  .page-wrapper {
    padding: 10px 15px 0 15px;
  }

  .hero-banner {
    padding: 20px 0;
  }

  .hero-text {
    padding: 0 20px;
  }

  .hero-text h1 {
    font-size: 20px;
    line-height: 24px;
  }

  .hero-text p {
    font-size: 14px;
    line-height: 20px;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
    padding: 10px 20px;
  }

  .hero-feature img {
    width: 60px;
    height: 60px;
  }

  .hero-feature span {
    font-size: 14px;
    line-height: 20px;
  }

  .section-label {
    padding: 10px 20px;
  }

  .section-label span {
    font-size: 18px;
    line-height: 24px;
  }

  .card-big {
    flex-direction: column;
    height: auto;
  }

  .card-big-badge {
    writing-mode: horizontal-tb;
    transform: none;
    width: 100%;
    height: auto;
    padding: 8px 20px;
  }

  .card-big-content {
    flex-direction: column;
    align-items: stretch;
    padding: 15px;
    gap: 10px;
  }

  .card-big-thumb {
    width: 100%;
    height: 120px;
    padding: 0;
  }

  .card-big-rating {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .card-big-offer {
    text-align: center;
  }

  .card-big-payments {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .card-big-actions {
    flex-direction: row;
    justify-content: space-between;
  }

  .other-cards-grid {
    grid-template-columns: 1fr;
  }

  .article-block {
    padding: 10px;
    gap: 20px;
  }

  .article-header h1 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .article-header p {
    font-size: 14px;
    line-height: 20px;
  }

  .article-body h4 {
    font-size: 16px;
    line-height: 16px;
  }

  .article-body p {
    font-size: 14px;
    line-height: 20px;
  }

  .about-text-block h2,
  .faq-header h2,
  .why-header h2,
  .disclaimer-inner h2 {
    font-size: 18px;
    line-height: 22px;
  }

  .about-text-block p,
  .about-icon-block p,
  .faq-header p,
  .why-header p,
  .disclaimer-sub {
    font-size: 14px;
    line-height: 20px;
  }

  .about-text-block {
    padding: 20px;
    min-height: auto;
  }

  .about-icon-block {
    padding: 20px;
    min-height: auto;
  }

  .about-football {
    width: 120px;
    height: 120px;
  }

  .faq-section {
    padding-top: 30px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question span {
    font-size: 16px;
    line-height: 16px;
  }

  .faq-icon {
    width: 40px;
    height: 40px;
  }

  .faq-item.open .faq-answer {
    padding: 0 20px 15px 20px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 20px;
  }

  .why-section {
    padding: 20px;
  }

  .why-card {
    padding: 20px;
  }

  .why-card h4 {
    font-size: 16px;
    line-height: 16px;
  }

  .why-card p {
    font-size: 14px;
    line-height: 20px;
  }

  .why-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .disclaimer-inner {
    padding: 20px;
  }

  .disclaimer-box {
    padding: 20px;
  }

  .disclaimer-label {
    font-size: 18px;
    line-height: 24px;
    padding: 10px 15px;
  }

  .disclaimer-box p {
    font-size: 14px;
    line-height: 20px;
  }

  .policy-block {
    padding: 20px 10px;
    gap: 20px;
  }

  .policy-tabs {
    gap: 8px;
  }

  .policy-tab {
    padding: 8px 16px;
    font-size: 14px;
    line-height: 20px;
  }

  .policy-header h1 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .policy-header p {
    font-size: 14px;
    line-height: 20px;
  }

  .policy-body h4 {
    font-size: 16px;
    line-height: 16px;
  }

  .policy-body p {
    font-size: 14px;
    line-height: 20px;
  }

  .contact-block {
    padding: 20px 10px;
    gap: 20px;
  }

  .contact-header h1 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .contact-header p {
    font-size: 14px;
    line-height: 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
    line-height: 20px;
  }

  .checkbox-label {
    font-size: 14px;
    line-height: 20px;
  }

  .btn-send {
    font-size: 14px;
    line-height: 20px;
  }

  .form-success p {
    font-size: 14px;
    line-height: 20px;
  }

  .offer-title {
    font-size: 16px;
    line-height: 16px;
  }

  .offer-sub {
    font-size: 14px;
    line-height: 20px;
  }

  .footer {
    padding: 20px 15px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-menus {
    flex-direction: column;
    gap: 30px;
  }

  .footer-menu h5 {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 20px;
  }

  .footer-menu ul {
    gap: 15px;
  }

  .footer-menu li a {
    font-size: 14px;
    line-height: 20px;
  }

  .regulators {
    padding: 0 16px 16px;
  }

  .regulators-inner {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 15px;
  }

  .regulators-inner img {
    height: 22px;
  }

  .footer-copy p {
    font-size: 12px;
    line-height: 14px;
  }

  .btn-gradient {
    font-size: 14px;
    height: 40px;
    padding: 7px 10px;
  }

  .btn-gradient.btn-sm {
    height: 40px;
  }
}
