@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --navy: #0a0e1a;
  --navy-mid: #111827;
  --navy-light: #1c2539;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-pale: rgba(201,168,76,0.15);
  --white: #f4f1eb;
  --grey: #8a9bb5;
  --grey-light: #b8c4d4;
  --green: #2ecc8a;
  --red: #e05c5c;
  --border: rgba(201,168,76,0.2);
  --card-bg: rgba(17,24,39,0.85);
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.3);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

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

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

.section {
  padding: 100px 0;
  position: relative;
}

.section--alt {
  background: var(--navy-mid);
}

.section__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--grey-light);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 60px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn--cta {
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  color: #0a0e1a;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 10px;
  box-shadow: 0 6px 25px rgba(201,168,76,0.35);
  width: 100%;
  letter-spacing: 0.3px;
}

.btn--cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(201,168,76,0.5);
  color: #0a0e1a;
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,8,16,0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.overlay--hidden {
  display: none;
}

.overlay__card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
}

.overlay__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.overlay__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.overlay__text {
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.overlay__btn--confirm {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}

.overlay__btn--confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.overlay__btn--deny {
  background: transparent;
  color: var(--grey);
  border: 1px solid rgba(138,155,181,0.3);
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.overlay__btn--deny:hover {
  border-color: var(--grey);
  color: var(--white);
}

.overlay__warning {
  margin-top: 24px;
  padding: 14px;
  background: rgba(224,92,92,0.1);
  border: 1px solid rgba(224,92,92,0.3);
  border-radius: 8px;
  color: #e8a0a0;
  font-size: 0.85rem;
  display: none;
}

.overlay__warning--visible {
  display: block;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 9000;
  backdrop-filter: blur(20px);
  transform: translateY(0);
  transition: transform var(--transition);
}

.cookie-banner--hidden {
  display: none;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--grey-light);
  min-width: 260px;
}

.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn--accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  padding: 10px 22px;
  border-radius: 7px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-banner__btn--accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(201,168,76,0.35);
}

.cookie-banner__btn--reject {
  background: transparent;
  color: var(--grey);
  border: 1px solid rgba(138,155,181,0.3);
  padding: 10px 22px;
  border-radius: 7px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-banner__btn--reject:hover {
  border-color: var(--grey);
  color: var(--white);
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  transition: background var(--transition);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header__logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -1px;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.header__logo-text span {
  color: var(--gold);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-light);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  text-decoration: none;
}

.header__nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.header__cta {
  margin-left: 16px;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}

.header__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(46,204,138,0.04) 0%, transparent 60%),
    linear-gradient(160deg, #0d1628 0%, #0a0e1a 40%, #060b18 100%);
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero__left {
  animation: heroFadeIn 0.9s ease both;
}

.hero__right {
  animation: heroFadeIn 0.9s ease 0.2s both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__badge {
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__text {
  font-size: 1.05rem;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey);
}

.hero__trust-icon {
  width: 28px;
  height: 28px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.hero__stats {
  display: grid;
  gap: 16px;
}

.hero__stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(20px);
  transition: all var(--transition);
}

.hero__stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.hero__stat-sub {
  font-size: 0.85rem;
  color: var(--grey);
}

.hero__age-warning {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(224,92,92,0.1);
  border: 1px solid rgba(224,92,92,0.25);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 0.85rem;
  color: #e8a0a0;
  margin-top: 24px;
  width: 100%;
}

/* RANKING SECTION */
.ranking {
  position: relative;
}

.ranking__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy) 100%);
  z-index: 0;
}

.ranking__content {
  position: relative;
  z-index: 1;
}

.ranking__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
  margin-bottom: 60px;
}

.ranking__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 8px;
}

.ranking__filter {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  transition: all var(--transition);
}

.ranking__filter:hover,
.ranking__filter--active {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold);
}

.operator-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  transition: all var(--transition);
  backdrop-filter: blur(20px);
  position: relative;
}

.operator-card:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
  transform: translateY(-4px);
}

.operator-card--top {
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(135deg, rgba(17,24,39,0.95) 0%, rgba(25,30,50,0.95) 100%);
}

.operator-card--top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.operator-card__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.operator-card__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  padding: 32px;
  align-items: start;
}

.operator-card__rank {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.operator-card__rank-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
}

.operator-card--top .operator-card__rank-num {
  opacity: 1;
}

.operator-card__rank-medal {
  font-size: 1.4rem;
}

.operator-card__logo-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.operator-card__logo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -1px;
  padding: 10px;
}

.logo--unibet {
  background: linear-gradient(135deg, rgb(14, 95, 49), rgba(14, 95, 49, 0.533));
  color: #fff;
}

.logo--genybet {
  background: linear-gradient(135deg, rgb(255, 107, 0), rgba(255, 107, 0, 0.533));
  color: #fff;
}

.logo--vbet {
  background: linear-gradient(135deg, rgb(216, 15, 131), rgba(216, 15, 131, 0.533));
  color: #fff;
}

.operator-card__main {
  flex: 1;
  min-width: 0;
}

.operator-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.operator-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.operator-card__license-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(46,204,138,0.12);
  border: 1px solid rgba(46,204,138,0.3);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.operator-card__bonus {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.06));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.operator-card__bonus-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.operator-card__bonus-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.operator-card__features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.operator-card__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--grey-light);
}

.operator-card__feature::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.operator-card__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  min-width: 160px;
}

.operator-card__rating-wrap {
  text-align: center;
}

.operator-card__rating-score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.operator-card__rating-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}

.rating-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.rating-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--grey);
}

.rating-bar__label {
  min-width: 60px;
  font-size: 0.75rem;
}

.rating-bar__track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  transition: width 1s ease;
}

.operator-card__disclaimer {
  border-top: 1px solid var(--border);
  padding: 14px 32px;
  font-size: 0.78rem;
  color: var(--grey);
  font-style: italic;
}

/* INFO GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.info-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.info-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.info-card__text {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.7;
}

/* METHODOLOGY TABLE */
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.method-table {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.method-table__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.method-table__row:last-child {
  border-bottom: none;
}

.method-table__row:hover {
  background: rgba(201,168,76,0.04);
}

.method-table__label {
  font-size: 0.9rem;
  color: var(--grey-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.method-table__label-icon {
  font-size: 1rem;
  width: 24px;
  text-align: center;
}

.method-table__weight {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.method-table__pct {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  min-width: 40px;
  text-align: right;
}

.method-table__bar {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.method-table__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 6px;
}

/* LEGAL SECTION */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* RESPONSIBLE GAMING */
.rg-section {
  background: linear-gradient(135deg, rgba(46,204,138,0.05) 0%, rgba(10,14,26,0) 60%);
  border: 1px solid rgba(46,204,138,0.15);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rg-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(46,204,138,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.rg-section__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.rg-section__text {
  color: var(--grey-light);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.rg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.rg-card {
  background: rgba(10,14,26,0.6);
  border: 1px solid rgba(46,204,138,0.15);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}

.rg-card:hover {
  border-color: rgba(46,204,138,0.4);
  transform: translateY(-3px);
}

.rg-card__icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.rg-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.rg-card__text {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, #080c17 0%, #060912 100%);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer__brand-text {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 24px;
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--grey);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__regulators {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.footer__regulator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 12px;
  text-decoration: none;
  transition: all var(--transition);
}

.footer__regulator:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.footer__regulator-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.footer__regulator-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--grey-light);
  line-height: 1.2;
}

.footer__compliance {
  border-top: 1px solid var(--border);
  margin-top: 0;
  padding: 40px 0;
  background: rgba(0,0,0,0.2);
}

.footer__compliance-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer__compliance-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__compliance-title::before {
  content: '⚠';
  font-size: 0.9rem;
}

.footer__compliance-text {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal-links a {
  font-size: 0.82rem;
  color: var(--grey);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__legal-links a:hover {
  color: var(--white);
}

.footer__age-badge {
  width: 42px;
  height: 42px;
  background: rgba(224,92,92,0.15);
  border: 2px solid rgba(224,92,92,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  color: #e8a0a0;
  flex-shrink: 0;
}

.footer__copyright {
  font-size: 0.82rem;
  color: var(--grey);
}

/* LEGAL PAGES */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-page__hero {
  padding: 80px 24px 60px;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}

.legal-page__date {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 12px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 16px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.legal-page h2:first-of-type {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-page p {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-page ul li {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-page strong {
  color: var(--white);
  font-weight: 600;
}

.legal-page a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* MOBILE */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .hero__age-warning {
    grid-column: 1 / -1;
  }

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

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

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,14,26,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    backdrop-filter: blur(20px);
  }

  .header__nav--open {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .operator-card__inner {
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 24px;
  }

  .operator-card__side {
    grid-column: 1 / -1;
    flex-direction: row;
    min-width: unset;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .operator-card__features {
    grid-template-columns: 1fr;
  }

  .hero__right {
    grid-template-columns: 1fr 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .rg-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .rg-section {
    padding: 40px 24px;
  }

  .section {
    padding: 60px 0;
  }

  .ranking__header {
    grid-template-columns: 1fr;
  }

  .ranking__filters {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero__right {
    grid-template-columns: 1fr;
  }

  .rg-grid {
    grid-template-columns: 1fr;
  }

  .overlay__card {
    padding: 32px 24px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn--accept,
  .cookie-banner__btn--reject {
    flex: 1;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal-links {
    justify-content: center;
  }
}

/* SCROLL ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ANCHOR OFFSET */
[id] {
  scroll-margin-top: 80px;
}
