@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');


:root{

  
  --bg:            #412408;
  --bg-surface:    #412408;
  --bg-card:       #412408;
  --bg-card-hover: #1e1e32;
  --bg-elevated:   #23233a;
  --bg-glass:      rgba(19, 19, 31, 0.72);

  
  --accent:        #ff4d2e;
  --accent-2:      #ff6b4a;
  --accent-hover:  #ff6347;
  --accent-dim:    rgba(255, 77, 46, 0.10);
  --accent-border: rgba(255, 77, 46, 0.28);
  --accent-glow:   rgba(255, 77, 46, 0.18);

  
  --violet:        #7c5cfc;
  --violet-dim:    rgba(124, 92, 252, 0.10);
  --violet-border: rgba(124, 92, 252, 0.28);

  
  --gold:          #f5c842;
  --gold-dim:      rgba(245, 200, 66, 0.10);
  --green:         #2ee89a;
  --green-dim:     rgba(46, 232, 154, 0.08);
  --green-border:  rgba(46, 232, 154, 0.25);
  --red:           #f87171;
  --red-dim:       rgba(248, 113, 113, 0.10);

  
  --text-primary:   #f2f2fa;
  --text-secondary: #8a8aaa;
  --text-muted:     #4a4a66;

  
  --border:        rgba(255, 255, 255, 0.05);
  --border-strong: rgba(255, 255, 255, 0.10);
  --border-bright: rgba(255, 255, 255, 0.18);

  
  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;
  --r-pill: 9999px;

  
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.30);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.42);
  --shadow-lg:     0 24px 64px rgba(0,0,0,0.60);
  --shadow-accent: 0 8px 36px rgba(255,77,46,0.30);
  --shadow-violet: 0 8px 36px rgba(124,92,252,0.25);

  
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0.0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:   0.14s;
  --t-base:   0.22s;
  --t-slow:   0.38s;

  
  --font-display: 'Cinzel', serif;
  --font: 'Manrope', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: var(--font);
  cursor: pointer;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 18px;
  border-radius: var(--r-xl);
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-strong);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
}

.brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  white-space: nowrap;
}

.brand img {
  width: 150px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.desktop-nav a {
  padding: 8px 15px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-base) var(--ease), background var(--t-base) var(--ease);
  white-space: nowrap;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-spring);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text-primary);
  background: var(--bg-elevated);
}

.desktop-nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.header-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.header-info a {
  color: var(--accent);
  font-weight: 700;
  transition: color var(--t-fast) var(--ease);
}

.header-info a:hover {
  color: var(--accent-hover);
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--bg-card);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}

.menu-btn:hover {
  background: var(--bg-elevated);
  border-color: var(--accent-border);
}

.menu-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}

.mobile-menu {
  display: none;
  width: min(1200px, calc(100% - 40px));
  margin: 8px auto 0;
  padding: 10px;
  border-radius: var(--r-lg);
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
}

.mobile-menu.active {
  display: grid;
  gap: 2px;
  animation: slideDown 0.22s var(--ease-out) both;
}

@keyframes slideDown{

  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }

}

.mobile-menu a {
  display: block;
  padding: 11px 16px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.mobile-menu a:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 96px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 15% 0%, rgba(255,77,46,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 55% at 85% 90%, rgba(124,92,252,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 50% 50%, rgba(46,232,154,0.04) 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: center;
}

.hero-text {
  padding: 56px 60px;
  border-radius: var(--r-2xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 440px;
  position: relative;
  overflow: hidden;
}

.hero-text::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  animation: fadeInUp 0.5s var(--ease-out) 0.1s both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.0;
  letter-spacing: -2.5px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-primary);
  animation: fadeInUp 0.5s var(--ease-out) 0.18s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  display: inline-block;
  position: relative;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  border-radius: 2px;
  opacity: 0.5;
}

.hero p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-secondary);
  max-width: 560px;
  animation: fadeInUp 0.5s var(--ease-out) 0.26s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  animation: fadeInUp 0.5s var(--ease-out) 0.34s both;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: none;
  box-shadow: var(--shadow-accent);
  transition: background var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring), box-shadow var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.primary-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, transparent 60%);
  pointer-events: none;
}

.primary-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 44px rgba(255,77,46,0.42);
}

.primary-btn:active {
  transform: translateY(0) scale(0.98);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border-strong);
  transition: color var(--t-base) var(--ease), background var(--t-base) var(--ease), border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring);
}

.secondary-btn:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.secondary-btn:active {
  transform: translateY(0);
}

.hero-card {
  padding: 32px 28px;
  border-radius: var(--r-2xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}

.card-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 10px;
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  color: var(--text-primary);
}

.mini-list {
  display: grid;
  gap: 10px;
}

.mini-list div {
  padding: 15px 16px;
  border-radius: var(--r-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring);
}

.mini-list div:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.mini-list strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 3px;
  letter-spacing: -0.5px;
}

.mini-list span {
  font-size: 12px;
  color: var(--text-secondary);
}

.ranking-section {
  padding: 88px 0 104px;
}

.warning-strip {
  max-width: 960px;
  margin: 0 auto 52px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.22);
  color: var(--red);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.warning-strip span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(248,113,113,0.15);
  font-size: 11px;
  flex-shrink: 0;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading span {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.section-heading p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.68;
}

.bookmaker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.bookmaker-card {
  position: relative;
  padding: 28px 26px;
  border-radius: var(--r-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}

.bookmaker-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--violet) 100%);
  opacity: 0.6;
  transition: opacity var(--t-base) var(--ease);
}

.bookmaker-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-bright);
}

.bookmaker-card:hover::before {
  opacity: 1;
}

.bookmaker-card.featured {
  border-color: var(--accent-border);
  background: linear-gradient(160deg, var(--bg-surface) 60%, rgba(255,77,46,0.04) 100%);
  transform: translateY(-14px);
  box-shadow: var(--shadow-accent), var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.06);
  z-index: 1;
}

.bookmaker-card.featured::before {
  opacity: 1;
}

.bookmaker-card.featured:hover {
  transform: translateY(-18px);
}

.rank-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
}

.bookmaker-card.featured .rank-badge {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,77,46,0.40);
}

.bookmaker-logo {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding-right: 52px;
}

.bookmaker-logo img {
  max-width: 150px;
  max-height: 56px;
  object-fit: contain;
  opacity: 0.90;
}

.bookmaker-logo img[alt="Bwin"] {
  filter: brightness(0) invert(1);
}

.bonus-box {
  margin: 18px 0 20px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--gold-dim);
  border: 1px solid rgba(245,200,66,0.18);
  position: relative;
  overflow: hidden;
}

.bonus-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 3px 0 0 3px;
}

.bonus-box small {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
  margin-bottom: 5px;
  opacity: 0.75;
}

.bonus-box strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
}

.benefits-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
}

.benefits-list li {
  position: relative;
  padding-left: 26px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: var(--green-dim);
  border: 1px solid var(--green-border);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%232ee89a' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

.bookmaker-btn {
  display: block;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  border: none;
  transition: background var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring), box-shadow var(--t-base) var(--ease);
  box-shadow: 0 4px 18px rgba(255,77,46,0.28);
  position: relative;
  overflow: hidden;
}

.bookmaker-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.bookmaker-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.bookmaker-btn:active {
  transform: translateY(0);
}

.about-section {
  padding: 96px 0;
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: center;
  padding: 40px;
  border-radius: var(--r-2xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  min-height: 400px;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55));
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-media:hover img {
  transform: scale(1.04);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 14px;
}

.about-lead {
  font-size: 17px !important;
  font-weight: 600;
  color: var(--text-primary) !important;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  transition: color var(--t-fast) var(--ease), gap var(--t-base) var(--ease-spring);
}

.text-link span {
  transition: transform var(--t-base) var(--ease-spring);
  font-size: 16px;
}

.text-link:hover {
  color: var(--accent-hover);
  gap: 12px;
}

.text-link:hover span {
  transform: translateX(2px);
}

.faq-section {
  padding: 96px 0;
}

.faq-heading {
  margin-bottom: 40px;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  background: var(--bg-surface);
  overflow: hidden;
  transition: border-color var(--t-base) var(--ease);
}

.faq-item:hover {
  border-color: var(--border-bright);
}

.faq-item.active {
  border-color: var(--accent-border);
  background: var(--bg-card);
  box-shadow: 0 0 0 1px var(--accent-border);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--t-fast) var(--ease);
}

.faq-question span {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-spring), opacity var(--t-base) var(--ease);
}

.faq-question span::before {
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-question span::after {
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-question span {
  background: var(--accent-dim);
  border-color: var(--accent-border);
}

.faq-item.active .faq-question span::before,
.faq-item.active .faq-question span::after {
  background: var(--accent);
}

.faq-item.active .faq-question span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 22px 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.78;
}

.facts-section {
  padding: 96px 0;
}

.facts-box {
  padding: 56px;
  border-radius: var(--r-2xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}

.facts-box::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.facts-box::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,252,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.facts-title {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

.facts-title span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.facts-title h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--text-primary);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.fact-card {
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring);
}

.fact-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.fact-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  font-size: 20px;
}

.fact-card h3 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.fact-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.contact-cta {
  padding: 96px 0;
}

.contact-cta-box {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--r-2xl);
  background: var(--bg-surface);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px;
  box-shadow: var(--shadow-accent), var(--shadow-md);
}

.contact-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 65% at 50% 50%, rgba(255,77,46,0.09), transparent),
    radial-gradient(ellipse 30% 40% at 15% 80%, rgba(124,92,252,0.06), transparent);
  pointer-events: none;
}

.contact-cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.contact-cta-content > span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.contact-cta-content h2 {
  font-family: var(--font-display);
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--text-primary);
}

.contact-cta-content p {
  margin: 0 auto 30px;
  max-width: 580px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  box-shadow: var(--shadow-accent);
  transition: background var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring), box-shadow var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, transparent 55%);
  pointer-events: none;
}

.cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 48px rgba(255,77,46,0.46);
}

.cta-btn:active {
  transform: translateY(0) scale(0.98);
}

.responsible-section {
  padding: 88px 0;
}

.responsible-box {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 56px;
  border-radius: var(--r-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  text-align: center;
}

.responsible-box h2 {
  font-family: var(--font-display);
  margin-bottom: 16px;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.responsible-text {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-secondary);
}

.responsible-note {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
}

.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-strong);
  position: relative;
}

.footer-grid {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.2fr;
  gap: 48px;
}

.footer-col h3 {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-strong);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color var(--t-fast) var(--ease);
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-col strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-primary);
}

.footer-phone {
  color: var(--accent) !important;
  font-weight: 700;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
}

.footer-logos img {
  height: 34px;
  width: auto;
  object-fit: contain;
  background: var(--bg-card);
  border-radius: var(--r-sm);
  padding: 6px 8px;
  border: 1px solid var(--border);
  transition: filter var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring), border-color var(--t-base) var(--ease);
  filter: grayscale(1) brightness(0.65);
}

.footer-logos img:hover {
  filter: grayscale(0) brightness(1);
  transform: translateY(-2px);
  border-color: var(--border-bright);
}

.footer-logos a {
  display: inline-block;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.age-note {
  color: var(--accent);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease);
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-disclaimer {
  padding: 16px 0 26px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-disclaimer p {
  margin-bottom: 8px;
}

.inner-page {
  padding: 88px 0 104px;
}

.content-page {
  max-width: 840px;
  margin: 0 auto;
  padding: 56px;
  border-radius: var(--r-2xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
}

.content-page h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.03;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.content-page h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 36px 0 12px;
  color: var(--text-primary);
}

.content-page p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.82;
  margin-bottom: 14px;
}

.about-responsible {
  padding: 80px 0 96px;
}

.about-responsible-box {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--r-xl);
  background: var(--bg-surface);
  border: 1px solid rgba(46,232,154,0.18);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-responsible-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(46,232,154,0.07), transparent 65%);
  pointer-events: none;
}

.about-responsible-box h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-primary);
  position: relative;
}

.about-responsible-box p {
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-secondary);
  margin-bottom: 12px;
  position: relative;
}

.about-responsible-note {
  margin-top: 10px;
  font-weight: 800;
  font-size: 13px;
  color: var(--green);
  position: relative;
}

.lead-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 22px;
  line-height: 1.65;
}

.info-block {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.info-block h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.info-block p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.78;
}

.warning-list {
  padding-left: 18px;
  margin-top: 10px;
}

.warning-list li {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 7px;
  line-height: 1.6;
}

.highlight-help {
  background: linear-gradient(135deg, rgba(46,232,154,0.07) 0%, rgba(46,232,154,0.03) 100%);
  border-color: rgba(46,232,154,0.18) !important;
}

.help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.help-links a {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(46,232,154,0.08);
  border: 1px solid rgba(46,232,154,0.18);
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  transition: background var(--t-fast) var(--ease);
}

.help-links a:hover {
  background: rgba(46,232,154,0.15);
}

.help-phone {
  font-weight: 800;
  color: var(--green);
  font-size: 15px;
  margin-top: 8px;
}

.responsible-warning {
  margin-top: 32px;
  padding: 14px;
  border-radius: var(--r-md);
  text-align: center;
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.18);
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.contact-intro,
.contact-form {
  padding: 40px;
  border-radius: var(--r-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
}

.contact-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.contact-intro > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 22px;
}

.contact-card {
  padding: 20px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color var(--t-base) var(--ease);
}

.contact-card:hover {
  border-color: var(--border-strong);
}

.contact-card strong,
.contact-card a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-primary);
}

.contact-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-card a {
  color: var(--accent);
  font-weight: 700;
  transition: color var(--t-fast) var(--ease);
}

.contact-card a:hover {
  color: var(--accent-hover);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 13px 16px;
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), background var(--t-base) var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px var(--accent-dim);
  background: var(--bg-elevated);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  border: none;
  border-radius: var(--r-pill);
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 18px rgba(255,77,46,0.28);
  transition: background var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring), box-shadow var(--t-base) var(--ease);
}

.contact-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.legal-page,
.legal-content {
  padding: 88px 0 104px;
}

.legal-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px;
  border-radius: var(--r-2xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.legal-updated {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin-bottom: 30px !important;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin: 32px 0 10px;
  color: var(--text-primary);
}

.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.82;
  margin-bottom: 13px;
}

.legal-content a {
  color: var(--accent);
  font-weight: 700;
  transition: color var(--t-fast) var(--ease);
}

.legal-content a:hover {
  color: var(--accent-hover);
}

.guide-section {
  padding: 96px 0;
}

.guide-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 48px;
  border-radius: var(--r-2xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
}

.guide-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.guide-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.guide-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.72;
}

.guide-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.guide-step {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring);
}

.guide-step:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.guide-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  font-size: 20px;
}

.guide-step h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.guide-step p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.sports-section {
  padding: 96px 0;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sport-card {
  position: relative;
  overflow: hidden;
  padding: 26px 24px;
  min-height: 200px;
  border-radius: var(--r-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  transition: transform var(--t-base) var(--ease-spring), border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.sport-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--accent-dim);
  pointer-events: none;
  transition: transform 0.5s var(--ease);
}

.sport-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-md);
}

.sport-card:hover::after {
  transform: scale(1.5);
}

.sport-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  font-size: 24px;
  transition: border-color var(--t-base) var(--ease);
}

.sport-card:hover .sport-icon {
  border-color: var(--accent-border);
}

.sport-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.sport-card p {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.method-section {
  padding: 64px 0;
}

.method-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: 40px;
}

.method-content {
  max-width: 660px;
  margin-bottom: 32px;
}

.method-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.method-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.72;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.method-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring);
}

.method-item:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.method-item strong {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.method-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--text-primary);
}

.method-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUpFade 0.3s var(--ease-out) both;
}

@keyframes slideUpFade{

  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }

}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 22px;
  border-radius: var(--r-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-actions a {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  transition: color var(--t-fast) var(--ease);
}

.cookie-actions a:hover {
  color: var(--accent-hover);
}

.cookie-actions button {
  border: none;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  transition: background var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring);
}

.cookie-actions button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 12, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-box {
  max-width: 400px;
  width: 90%;
  padding: 40px 36px;
  border-radius: var(--r-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.06);
  text-align: center;
  animation: scaleIn 0.28s var(--ease-spring) both;
}

@keyframes scaleIn{

  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }

}

.age-box h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.age-box p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.age-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.age-actions button {
  flex: 1;
  padding: 13px;
  border-radius: var(--r-pill);
  border: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  transition: background var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring), box-shadow var(--t-base) var(--ease);
}

#ageYes {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,77,46,0.30);
}

#ageYes:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255,77,46,0.40);
}

#ageNo {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
}

#ageNo:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.text-accent {
  color: var(--accent);
}

.text-green {
  color: var(--green);
}

.text-gold {
  color: var(--gold);
}

.text-muted {
  color: var(--text-muted);
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

@keyframes fadeInUp{

  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }

}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

::selection {
  background: rgba(255, 77, 46, 0.22);
  color: var(--text-primary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  
  .desktop-nav,
    .header-info {
    display: none;
  }
  
  .menu-btn {
    display: flex;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-text {
    padding: 40px 44px;
    min-height: auto;
  }
  
  .bookmaker-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
  
  .bookmaker-card.featured {
    transform: none;
  }
  
  .bookmaker-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .about-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  
  .about-media,
    .about-media img {
    min-height: 300px;
  }
  
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .guide-box {
    grid-template-columns: 1fr;
    padding: 36px;
  }
  
  .guide-steps {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px);
  }
  
  .header-shell {
    padding: 10px 14px;
    border-radius: var(--r-lg);
  }
  
  .hero {
    padding: 52px 0 64px;
  }
  
  .hero-text {
    padding: 28px 24px;
    border-radius: var(--r-xl);
  }
  
  .hero h1 {
    font-size: 36px;
    letter-spacing: -1.2px;
  }
  
  .hero p {
    font-size: 15px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .primary-btn,
    .secondary-btn {
    justify-content: center;
    width: 100%;
  }
  
  .hero-card {
    padding: 24px;
    border-radius: var(--r-xl);
  }
  
  .ranking-section {
    padding: 56px 0 72px;
  }
  
  .warning-strip {
    border-radius: var(--r-lg);
    font-size: 12px;
    line-height: 1.5;
    flex-direction: column;
    text-align: center;
  }
  
  .bookmaker-card {
    padding: 22px;
  }
  
  .about-section,
    .faq-section,
    .facts-section,
    .contact-cta,
    .responsible-section,
    .guide-section,
    .sports-section {
    padding: 64px 0;
  }
  
  .about-panel {
    padding: 18px;
    border-radius: var(--r-xl);
    gap: 20px;
  }
  
  .facts-box {
    padding: 28px 20px;
    border-radius: var(--r-xl);
  }
  
  .facts-grid {
    grid-template-columns: 1fr;
  }
  
  .sports-grid {
    grid-template-columns: 1fr;
  }
  
  .sport-card {
    min-height: auto;
  }
  
  .contact-cta-box {
    padding: 40px 24px;
    min-height: 360px;
    border-radius: var(--r-xl);
  }
  
  .responsible-box {
    padding: 28px 22px;
  }
  
  .method-grid {
    grid-template-columns: 1fr;
  }
  
  .method-box {
    padding: 22px 18px;
  }
  
  .inner-page,
    .legal-page {
    padding: 56px 0 72px;
  }
  
  .content-page,
    .legal-content {
    padding: 28px 20px;
    border-radius: var(--r-xl);
  }
  
  .about-responsible-box {
    padding: 28px 20px;
    border-radius: var(--r-lg);
  }
  
  .contact-intro,
    .contact-form {
    padding: 24px 18px;
    border-radius: var(--r-lg);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 40px 0 32px;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .age-box {
    padding: 30px 20px;
  }
  
  .age-actions {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 30px;
    letter-spacing: -0.8px;
  }
  
  .hero-text {
    padding: 22px 18px;
  }
  
  .section-heading h2 {
    font-size: 26px;
  }
  
  .bookmaker-card,
    .fact-card {
    padding: 16px;
  }
  
  .guide-box {
    padding: 20px 16px;
  }
  
  .facts-box {
    padding: 20px 16px;
  }
}

.verify-section {
  padding: 90px 0;
  background: #f3f6f4;
}

.verify-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 46px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.verify-content h2 {
  margin: 12px 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: #142016;
}

.verify-content p {
  margin: 0;
  max-width: 580px;
  font-size: 17px;
  line-height: 1.75;
  color: #5f6f63;
}

.verify-checklist {
  display: grid;
  gap: 16px;
}

.verify-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 18px;
  background: #f8faf8;
  border: 1px solid rgba(20, 32, 22, 0.08);
}

.verify-item span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #142016;
  color: #ffffff;
  font-weight: 700;
}

.verify-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #253629;
}

@media (max-width: 991px) {
  .verify-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .verify-section {
    padding: 60px 0;
  }

  .verify-panel {
    padding: 28px;
    border-radius: 24px;
  }

  .verify-item {
    align-items: flex-start;
    padding: 18px;
  }
}