﻿:root {
  --v-primary:     #8B4513;
  --v-secondary:   #D4891B;
  --v-accent:      #E8A317;
  --v-cream:       #FFF8F0;
  --v-surface:     #FFFFFF;
  --v-alt:         #FFF5E6;
  --v-text:        #2C1810;
  --v-muted:       #8B7355;
  --v-border:      #E8DCC8;
  --v-shadow:      0 2px 20px rgba(139,69,19,0.08);
  --v-shadow-lg:   0 8px 40px rgba(139,69,19,0.12);
  --v-radius:      12px;
  --v-radius-lg:   20px;
  --v-transition:  0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--v-text);
  background: var(--v-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #B8860B; text-decoration: none; transition: color var(--v-transition); }
a:hover { color: var(--v-primary); }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

.v-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.v-topbar {
  background: var(--v-primary);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 0.76rem;
  padding: 6px 24px;
  letter-spacing: 0.02em;
}

.v-header {
  background: var(--v-surface);
  border-bottom: 1px solid var(--v-border);
  position: sticky;
  top: 0;
  z-index: 900;
}
.v-header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.v-logo { display: flex; flex-direction: column; gap: 1px; text-decoration: none; }
.v-logo__name { font-size: 1.15rem; font-weight: 800; color: var(--v-primary); line-height: 1.1; letter-spacing: -0.02em; }
.v-logo__tagline { font-size: 0.64rem; color: var(--v-muted); font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; }

.v-nav { display: flex; align-items: center; gap: 2px; }
.v-nav a {
  color: var(--v-text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background var(--v-transition), color var(--v-transition);
  white-space: nowrap;
}
.v-nav a:hover, .v-nav a.active { background: var(--v-alt); color: var(--v-primary); }
.v-nav__cta {
  background: var(--v-accent) !important;
  color: #fff !important;
  margin-left: 4px;
}
.v-nav__cta:hover { background: #c8900f !important; color: #fff !important; }

.v-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 8px;
}
.v-burger span { display: block; height: 2.5px; background: var(--v-primary); border-radius: 2px; transition: transform var(--v-transition), opacity var(--v-transition); }
.v-burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.v-burger.is-open span:nth-child(2) { opacity: 0; }
.v-burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.v-mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--v-surface);
  border-bottom: 1px solid var(--v-border);
  box-shadow: 0 8px 24px rgba(139,69,19,0.1);
  padding: 12px 24px 20px;
  flex-direction: column;
  gap: 2px;
  z-index: 899;
}
.v-mobile-nav.is-open { display: flex; }
.v-mobile-nav a { color: var(--v-text); font-size: 0.95rem; font-weight: 500; padding: 10px 12px; border-radius: 8px; transition: background var(--v-transition); display: block; }
.v-mobile-nav a:hover { background: var(--v-alt); color: var(--v-primary); }

.v-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--v-radius);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--v-transition);
  text-decoration: none;
  border: none;
  line-height: 1;
}
.v-btn--primary { background: var(--v-accent); color: #fff; }
.v-btn--primary:hover { background: #c8900f; color: #fff; }
.v-btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.v-btn--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.v-btn--navy { background: var(--v-primary); color: #fff; }
.v-btn--navy:hover { background: #6e370c; color: #fff; }
.v-btn--ghost { background: transparent; color: #B8860B; border: 2px solid var(--v-border); }
.v-btn--ghost:hover { background: var(--v-alt); color: var(--v-primary); border-color: var(--v-secondary); }
.v-btn--white { background: #fff; color: var(--v-primary); }
.v-btn--white:hover { background: var(--v-cream); color: var(--v-primary); }
.v-btn--sm { padding: 9px 18px; font-size: 0.84rem; }
.v-btn--lg { padding: 15px 32px; font-size: 0.97rem; }

.v-hero {
  background: linear-gradient(160deg, #3E1A06 0%, #6B320F 45%, #8B4513 75%, #B5621E 100%);
  color: #fff;
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
.v-hero::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,163,23,0.10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.v-hero::after {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.v-hero__inner { display: flex; flex-direction: column; align-items: flex-start; max-width: 780px; position: relative; z-index: 1; }
.v-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.v-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.v-hero__badge-dot { width: 6px; height: 6px; background: #10B981; border-radius: 50%; flex-shrink: 0; }
.v-hero__badge-18 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220,38,38,0.2);
  border: 1px solid rgba(220,38,38,0.35);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: #FCA5A5;
  text-transform: uppercase;
}
.v-hero h1 {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  max-width: 720px;
}
.v-hero h1 em { font-style: normal; color: var(--v-accent); }
.v-hero__sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 640px;
}
.v-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.v-hero__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.v-hero__stats { display: flex; gap: 36px; flex-wrap: wrap; }
.v-hero__stat { display: flex; align-items: center; gap: 10px; }
.v-hero__stat-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.v-hero__stat-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: #fff; line-height: 1.2; }
.v-hero__stat-text span { font-size: 0.73rem; color: rgba(255,255,255,0.5); }

.v-hero__criteria {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.v-hero__criterion {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  padding: 6px 13px;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.8);
}
.v-hero__criterion i { font-size: 0.72rem; color: var(--v-accent); }

.v-section { padding: 72px 0; }
.v-section--alt { background: var(--v-alt); }
.v-section--cream { background: var(--v-cream); }
.v-section--dark { background: #3E1F0A; color: #fff; }
.v-section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.v-section-header__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139,69,19,0.08);
  color: var(--v-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.v-section--dark .v-section-header__label { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.v-section-header h2 { font-size: 1.9rem; font-weight: 800; color: var(--v-primary); line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.02em; }
.v-section--dark .v-section-header h2 { color: #fff; }
.v-section-header p { color: var(--v-muted); font-size: 1rem; line-height: 1.7; }
.v-section--dark .v-section-header p { color: rgba(255,255,255,0.72); }

.v-platforms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 16px; }
.v-platform-card {
  background: var(--v-surface);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--v-shadow);
  transition: all var(--v-transition);
  position: relative;
}
.v-platform-card:hover { box-shadow: var(--v-shadow-lg); transform: translateY(-3px); }
.v-platform-card__featured { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--v-accent); color: var(--v-text); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 3px 14px; border-radius: 0 0 8px 8px; }
.v-platform-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.v-platform-card__img {
  width: 48px; height: 48px; border-radius: 12px;
  object-fit: contain; flex-shrink: 0;
  background: var(--v-alt);
  padding: 4px;
}
.v-platform-card__status { font-size: 0.69rem; background: rgba(16,185,129,0.1); color: #059669; border-radius: 12px; padding: 3px 10px; font-weight: 600; letter-spacing: 0.03em; white-space: nowrap; }
.v-platform-card__name { font-size: 1.06rem; font-weight: 700; color: var(--v-primary); }
.v-platform-card__score { display: flex; align-items: center; gap: 8px; }
.v-platform-card__score-val { font-size: 1.4rem; font-weight: 700; color: var(--v-primary); }
.v-platform-card__score-label { font-size: 0.73rem; color: var(--v-muted); line-height: 1.3; }
.v-stars { display: inline-flex; gap: 2px; color: var(--v-accent); font-size: 0.88rem; }
.v-platform-card__desc { font-size: 0.85rem; color: var(--v-muted); line-height: 1.7; flex: 1; }
.v-platform-card__tags { display: flex; gap: 5px; flex-wrap: wrap; }
.v-tag { font-size: 0.68rem; padding: 3px 9px; border-radius: 6px; font-weight: 500; background: var(--v-alt); color: var(--v-muted); }
.v-tag--green { background: #D1FAE5; color: #065F46; }
.v-tag--blue { background: #DBEAFE; color: #1E40AF; }
.v-tag--amber { background: #FEF3C7; color: #92400E; }
.v-tag--purple { background: #EDE9FE; color: #5B21B6; }
.v-tag--brown { background: #EDE0D4; color: #5C3D2E; }
.v-platform-card__payments { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 2px; }
.v-payment-badge { font-size: 0.63rem; background: var(--v-alt); color: var(--v-muted); padding: 2px 7px; border-radius: 4px; font-weight: 500; letter-spacing: 0.02em; }
.v-platform-card__disclaimer { font-size: 0.7rem; color: var(--v-muted); padding-top: 10px; border-top: 1px solid var(--v-border); line-height: 1.5; }
.v-platform-card__footer { margin-top: auto; display: flex; gap: 8px; }
.v-platform-card__footer .v-btn { flex: 1; justify-content: center; }

.v-methodology-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.v-method-item {
  background: var(--v-surface); border: 1px solid var(--v-border);
  border-radius: var(--v-radius); padding: 28px 24px;
  box-shadow: var(--v-shadow); position: relative;
}
.v-method-item__num {
  position: absolute; top: 16px; right: 18px;
  font-size: 2.2rem; font-weight: 800;
  color: rgba(139,69,19,0.06); line-height: 1;
}
.v-method-item__icon { width: 44px; height: 44px; background: var(--v-alt); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 14px; color: var(--v-primary); }
.v-method-item h3 { font-size: 0.97rem; font-weight: 700; color: var(--v-primary); margin-bottom: 8px; }
.v-method-item p { font-size: 0.85rem; color: var(--v-muted); line-height: 1.65; }

.v-payments-showcase {
  background: var(--v-surface); border: 1px solid var(--v-border);
  border-radius: var(--v-radius-lg); padding: 36px 32px;
  box-shadow: var(--v-shadow);
}
.v-payments-showcase h3 { font-size: 1rem; font-weight: 700; color: var(--v-primary); margin-bottom: 18px; }
.v-payments-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.v-payment-item { background: var(--v-alt); border: 1px solid var(--v-border); border-radius: var(--v-radius); padding: 16px 12px; text-align: center; }
.v-payment-item__icon { font-size: 1.4rem; font-weight: 700; color: var(--v-primary); margin-bottom: 6px; }
.v-payment-item__name { font-size: 0.71rem; color: var(--v-muted); font-weight: 500; }
.v-payments-note { font-size: 0.79rem; color: var(--v-muted); line-height: 1.6; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--v-border); }

.v-regulation-wrap {
  background: var(--v-surface); border: 1px solid var(--v-border);
  border-radius: var(--v-radius-lg); padding: 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start; box-shadow: var(--v-shadow);
}
.v-regulation-wrap h2 { font-size: 1.6rem; font-weight: 800; color: var(--v-primary); margin-bottom: 14px; letter-spacing: -0.02em; }
.v-regulation-wrap > div:first-child p { color: var(--v-muted); font-size: 0.92rem; line-height: 1.75; margin-bottom: 12px; }
.v-regulation-logos { display: flex; gap: 12px; margin-bottom: 16px; }
.v-regulation-logos img { width: 48px; height: 48px; border-radius: 8px; }
.v-reg-sources { display: flex; flex-direction: column; gap: 12px; }
.v-reg-source { background: var(--v-alt); border: 1px solid var(--v-border); border-radius: var(--v-radius); padding: 15px 17px; display: flex; gap: 12px; align-items: center; transition: all var(--v-transition); }
.v-reg-source:hover { border-color: var(--v-secondary); background: var(--v-surface); }
.v-reg-source__icon { width: 36px; height: 36px; background: var(--v-surface); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.v-reg-source__text strong { display: block; font-size: 0.86rem; font-weight: 600; color: var(--v-primary); margin-bottom: 2px; }
.v-reg-source__text span { font-size: 0.77rem; color: var(--v-muted); }

.v-responsible-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.v-responsible-item { background: var(--v-surface); border: 1px solid var(--v-border); border-radius: var(--v-radius); padding: 24px 18px; text-align: center; box-shadow: var(--v-shadow); transition: transform var(--v-transition); }
.v-responsible-item:hover { transform: translateY(-2px); }
.v-responsible-item__icon { font-size: 1.8rem; margin-bottom: 10px; }
.v-responsible-item h3 { font-size: 0.88rem; font-weight: 700; color: var(--v-primary); margin-bottom: 7px; }
.v-responsible-item p { font-size: 0.79rem; color: var(--v-muted); line-height: 1.6; }

.v-faq { max-width: 820px; margin: 0 auto; }
.v-faq-item { border: 1px solid var(--v-border); border-radius: var(--v-radius); margin-bottom: 8px; overflow: hidden; background: var(--v-surface); }
.v-faq-item__q {
  width: 100%; background: none; border: none;
  padding: 18px 20px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  cursor: pointer; text-align: left; font-size: 0.92rem;
  font-weight: 600; color: var(--v-primary);
  transition: background var(--v-transition);
}
.v-faq-item__q:hover { background: var(--v-alt); }
.v-faq-item__icon { width: 24px; height: 24px; border-radius: 50%; background: var(--v-alt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.95rem; color: var(--v-secondary); transition: transform var(--v-transition); }
.v-faq-item.is-open .v-faq-item__icon { transform: rotate(45deg); }
.v-faq-item__a { display: none; padding: 0 20px 18px; font-size: 0.87rem; color: var(--v-muted); line-height: 1.75; }
.v-faq-item.is-open .v-faq-item__a { display: block; }

.v-final-cta { text-align: center; max-width: 600px; margin: 0 auto; }
.v-final-cta h2 { font-size: 1.7rem; font-weight: 800; color: #fff; margin-bottom: 13px; }
.v-final-cta p { color: rgba(255,255,255,0.76); margin-bottom: 26px; font-size: 0.99rem; }
.v-final-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.v-page-hero { background: var(--v-alt); border-bottom: 1px solid var(--v-border); padding: 50px 0 42px; }
.v-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.79rem; color: var(--v-muted); margin-bottom: 16px; flex-wrap: wrap; }
.v-breadcrumb a { color: #B8860B; }
.v-breadcrumb__sep { color: var(--v-border); }
.v-page-hero h1 { font-size: 2rem; font-weight: 800; color: var(--v-primary); line-height: 1.2; margin-bottom: 12px; letter-spacing: -0.02em; }
.v-page-hero__desc { font-size: 1rem; color: var(--v-muted); line-height: 1.7; max-width: 640px; }

.v-content { max-width: 880px; }
.v-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--v-primary); margin: 40px 0 12px; line-height: 1.3; }
.v-content h2:first-child { margin-top: 0; }
.v-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--v-primary); margin: 26px 0 8px; }
.v-content p { color: var(--v-muted); font-size: 0.95rem; line-height: 1.78; margin-bottom: 14px; }
.v-content ul, .v-content ol { padding-left: 20px; margin-bottom: 16px; }
.v-content ul { list-style: disc; }
.v-content ol { list-style: decimal; }
.v-content li { color: var(--v-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 6px; }

.v-info-box { background: rgba(139,69,19,0.05); border-left: 4px solid var(--v-primary); border-radius: 0 var(--v-radius) var(--v-radius) 0; padding: 17px 20px; margin: 22px 0; }
.v-info-box p { font-size: 0.9rem; color: var(--v-text); margin: 0; line-height: 1.65; }
.v-info-box--accent { background: rgba(232,163,23,0.07); border-left-color: var(--v-accent); }

.v-footer {
  background: #2C1508;
  color: rgba(255,255,255,0.8);
  padding: 56px 0 0;
}
.v-footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.v-footer__brand .v-logo__name { color: var(--v-accent); font-size: 1.28rem; }
.v-footer__brand .v-logo__tagline { color: rgba(255,255,255,0.4); }
.v-footer__about { font-size: 0.83rem; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,0.55); }
.v-footer__col-title { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.v-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.v-footer__col a { font-size: 0.86rem; color: rgba(255,255,255,0.65); transition: color var(--v-transition); }
.v-footer__col a:hover { color: var(--v-accent); }
.v-footer__regulators { display: flex; flex-direction: column; gap: 10px; }
.v-footer__regulator { display: flex; gap: 9px; align-items: center; font-size: 0.81rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: opacity 0.2s; }
.v-footer__regulator:hover { opacity: 0.8; }
.v-footer__regulator img { display: block; max-width: 120px; height: auto; border-radius: 4px; }
.v-footer__affiliate-note { font-size: .78rem; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.v-footer__bottom { padding: 22px 0; }
.v-footer__bottom-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.v-footer__disclaimer { font-size: 0.74rem; color: rgba(255,255,255,0.38); line-height: 1.65; max-width: 720px; }
.v-footer__badges { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.v-badge-18 { background: #DC2626; color: #fff; font-size: 0.78rem; font-weight: 700; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.v-age-gate { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(44,21,8,0.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.v-age-gate.is-hidden { display: none; }
.v-age-gate__box { background: var(--v-surface); border-radius: var(--v-radius-lg); padding: 40px 34px; max-width: 460px; width: 100%; text-align: center; box-shadow: 0 24px 64px rgba(0,0,0,0.2); }
.v-age-gate__icon { font-size: 2.6rem; margin-bottom: 14px; }
.v-age-gate__title { font-size: 1.3rem; font-weight: 700; color: var(--v-primary); margin-bottom: 11px; }
.v-age-gate__text { font-size: 0.89rem; color: var(--v-muted); line-height: 1.7; margin-bottom: 26px; }
.v-age-gate__actions { display: flex; flex-direction: column; gap: 9px; }
.v-age-gate__accept { background: var(--v-primary); color: #fff; border: none; padding: 13px 24px; border-radius: var(--v-radius); font-size: 0.93rem; font-weight: 600; cursor: pointer; transition: background var(--v-transition); }
.v-age-gate__accept:hover { background: #6e370c; }
.v-age-gate__decline { background: none; border: 2px solid var(--v-border); color: var(--v-muted); padding: 11px 24px; border-radius: var(--v-radius); font-size: 0.87rem; cursor: pointer; transition: all var(--v-transition); }
.v-age-gate__decline:hover { border-color: #DC2626; color: #DC2626; }

.v-cookie { position: fixed; bottom: 0; left: 0; right: 0; background: #2C1508; color: rgba(255,255,255,0.9); padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; z-index: 9000; box-shadow: 0 -4px 20px rgba(0,0,0,0.14); flex-wrap: wrap; }
.v-cookie.is-hidden { display: none; }
.v-cookie__text { font-size: 0.84rem; line-height: 1.6; flex: 1; min-width: 200px; }
.v-cookie__text a { color: rgba(255,255,255,0.8); text-decoration: underline; }
.v-cookie__actions { display: flex; gap: 8px; flex-shrink: 0; }
.v-cookie__accept { background: var(--v-accent); color: var(--v-text); border: none; padding: 8px 18px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: background var(--v-transition); }
.v-cookie__accept:hover { background: #c8900f; }
.v-cookie__more { background: transparent; color: rgba(255,255,255,0.75); border: 2px solid rgba(255,255,255,0.3); padding: 8px 18px; border-radius: 8px; font-size: 0.85rem; cursor: pointer; transition: all var(--v-transition); text-decoration: none; display: inline-flex; align-items: center; }
.v-cookie__more:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

.v-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.v-reveal.is-visible { opacity: 1; transform: none; }

.v-text-center { text-align: center; }
.v-mt-24 { margin-top: 24px; }
.v-mt-32 { margin-top: 32px; }
.v-mt-48 { margin-top: 48px; }
.v-mb-16 { margin-bottom: 16px; }
.v-mb-24 { margin-bottom: 24px; }
.v-mb-32 { margin-bottom: 32px; }
.v-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.v-three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.v-table-wrap { overflow-x: auto; border-radius: var(--v-radius); border: 1px solid var(--v-border); box-shadow: var(--v-shadow); }
.v-table { width: 100%; border-collapse: collapse; background: var(--v-surface); font-size: 0.87rem; }
.v-table th { background: var(--v-primary); color: #fff; padding: 13px 16px; text-align: left; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.03em; white-space: nowrap; }
.v-table td { padding: 13px 16px; border-bottom: 1px solid var(--v-border); color: var(--v-text); vertical-align: middle; }
.v-table tr:last-child td { border-bottom: none; }
.v-table tr:nth-child(even) td { background: var(--v-alt); }

@media (max-width: 1024px) {
  .v-hero h1 { font-size: 2.3rem; }
  .v-platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .v-methodology-grid { grid-template-columns: repeat(2, 1fr); }
  .v-responsible-grid { grid-template-columns: repeat(2, 1fr); }
  .v-regulation-wrap { grid-template-columns: 1fr; gap: 26px; padding: 30px; }
  .v-footer__top { grid-template-columns: 1fr 1fr; }
  .v-two-col { grid-template-columns: 1fr; }
  .v-payments-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .v-nav { display: none; }
  .v-burger { display: flex; }
  .v-hero { padding: 52px 0 44px; }
  .v-hero h1 { font-size: 1.75rem; letter-spacing: -0.02em; }
  .v-hero__sub { font-size: 0.97rem; }
  .v-hero__stats { gap: 16px; }
  .v-hero__eyebrow { gap: 8px; }
  .v-hero__criteria { gap: 7px; }
  .v-platforms-grid { grid-template-columns: 1fr; }
  .v-methodology-grid { grid-template-columns: 1fr; }
  .v-responsible-grid { grid-template-columns: 1fr; }
  .v-three-col { grid-template-columns: 1fr; }
  .v-section { padding: 48px 0; }
  .v-footer__top { grid-template-columns: 1fr; gap: 26px; }
  .v-footer__bottom-inner { flex-direction: column; }
  .v-regulation-wrap { padding: 22px; }
  .v-page-hero h1 { font-size: 1.6rem; }
  .v-section-header h2 { font-size: 1.5rem; }
  .v-age-gate__box { padding: 26px 18px; }
  .v-cookie { flex-direction: column; }
  .v-hero__actions { flex-direction: column; }
  .v-hero__actions .v-btn { justify-content: center; }
  .v-payments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .v-container { padding: 0 16px; }
  .v-hero h1 { font-size: 1.45rem; }
  .v-page-hero h1 { font-size: 1.4rem; }
  .v-payments-grid { grid-template-columns: repeat(2, 1fr); }
}
