@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --site-bg: #0c0d18;
  --site-bg-alt: #121424;
  --surface-1: #181a30;
  --surface-2: #202444;
  --surface-3: #2b305c;
  
  --brand-purple: #8840fc;
  --brand-purple-light: #a862ff;
  --brand-purple-glow: rgba(136, 64, 252, 0.45);
  --brand-cyan: #00d2ff;
  --brand-cyan-glow: rgba(0, 210, 255, 0.35);
  --brand-magenta: #ff2a7a;
  --brand-gold: #ffbe1a;
  --brand-gold-glow: rgba(255, 190, 26, 0.3);
  --brand-emerald: #00e699;

  --text-primary: #ffffff;
  --text-secondary: #c4c7e0;
  --text-muted: #8488ad;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(168, 98, 255, 0.25);
  --border-glow: rgba(136, 64, 252, 0.5);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px var(--brand-purple-glow);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;

  --container-max: 1240px;
  --header-height: 76px;
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--site-bg);
  background-image: 
    radial-gradient(ellipse at 15% 10%, rgba(136, 64, 252, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 25%, rgba(0, 210, 255, 0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 60%, rgba(255, 42, 122, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 85%, rgba(136, 64, 252, 0.14) 0%, transparent 45%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--site-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-purple);
}

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

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* TOP ANNOUNCEMENT BANNER */
.top-bar {
  background: linear-gradient(90deg, #3d1478, #181938 40%, #0c3358 75%, #59163f);
  background-size: 200% 100%;
  animation: bgShift 12s ease infinite;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1001;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar__badge {
  background: var(--brand-gold);
  color: #0b0c16;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.top-bar__text strong {
  color: #fff;
}

.top-bar__promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px dashed var(--brand-gold);
}

.top-bar__code {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand-gold);
  letter-spacing: 1px;
}

.top-bar__copy-btn {
  background: var(--brand-purple);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.top-bar__copy-btn:hover {
  background: var(--brand-purple-light);
  transform: scale(1.05);
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(12, 13, 24, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 11, 20, 0.98);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
  border-bottom-color: var(--border-light);
}

.header__container {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 2.5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 32px);
  height: 100%;
}

/* BRAND WRAP (LOGO + DYNAMIC LOCATION FLAG) */
.header__brand-wrap {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 16px);
  flex-shrink: 0;
}

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

.header__logo-img {
  height: clamp(32px, 2.5vw, 40px);
  width: auto;
  object-fit: contain;
}

.header__logo-fallback {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.7rem;
  background: linear-gradient(135deg, #fff 30%, var(--brand-purple-light) 70%, var(--brand-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* DYNAMIC COUNTRY BADGE NEXT TO LOGO */
.header__location-badge {
  position: relative;
  flex-shrink: 0;
}

.location-badge__btn {
  background: linear-gradient(135deg, rgba(32, 36, 68, 0.8), rgba(20, 22, 40, 0.9));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 5px 12px 5px 8px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  font-family: var(--font-main);
  user-select: none;
}

.location-badge__btn:hover {
  background: var(--surface-2);
  border-color: var(--brand-cyan);
  box-shadow: 0 0 16px var(--brand-cyan-glow);
  transform: translateY(-1px);
}

.location-badge__flag {
  font-size: 1.15rem;
  line-height: 1;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.location-badge__code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.location-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-emerald);
  box-shadow: 0 0 8px var(--brand-emerald);
  animation: pulse 2s infinite;
}

.location-badge__btn svg {
  color: var(--text-muted);
  transition: var(--transition);
}

.header__location-badge.open .location-badge__btn svg {
  transform: rotate(180deg);
  color: var(--brand-cyan);
}

/* Country Selection Dropdown */
.location-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: rgba(18, 20, 36, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(136, 64, 252, 0.2);
  padding: 12px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 1050;
}

.header__location-badge.open .location-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.location-dropdown__header {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  padding: 4px 8px;
}

.location-dropdown__detected {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(0, 230, 153, 0.1);
  border: 1px solid rgba(0, 230, 153, 0.25);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-emerald);
  margin-bottom: 8px;
}

.location-dropdown__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-emerald);
  box-shadow: 0 0 8px var(--brand-emerald);
  flex-shrink: 0;
}

.location-dropdown__divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 6px 0;
}

.location-dropdown__title {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
  padding: 4px 8px;
}

.location-dropdown__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 260px;
  overflow-y: auto;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: 1px solid transparent;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.location-item:hover {
  background: var(--surface-2);
  border-color: var(--border-light);
  color: #fff;
  transform: translateX(3px);
}

.location-item.active {
  background: rgba(136, 64, 252, 0.2);
  border-color: var(--brand-purple-light);
  color: #fff;
}

.location-item__flag {
  font-size: 1.2rem;
}

.location-item__name {
  flex-grow: 1;
}

.location-item__curr {
  font-size: 0.75rem;
  font-weight: 800;
  background: var(--surface-3);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--brand-gold);
}

/* NAVIGATION (RESPONSIVE FOR ALL SCREEN SIZES) */
.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.8vw, 32px);
  flex: 1;
  min-width: 0;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.3vw, 22px);
  flex-shrink: 1;
  min-width: 0;
}

.header__nav-link {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: clamp(0.82rem, 0.9vw, 0.94rem);
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: #fff;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-cyan));
  transition: var(--transition);
  border-radius: 2px;
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  flex-shrink: 0;
}

/* Language selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--surface-2);
  color: #fff;
  border-color: var(--border-light);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.lang-item:hover,
.lang-item.active {
  background: var(--surface-2);
  color: #fff;
}

/* CTA BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #8840fc 0%, #6829d6 60%, #5118b5 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--brand-purple-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 20%,
    rgba(255, 255, 255, 0.2) 40%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.2) 60%,
    transparent 80%
  );
  transform: rotate(25deg) translateY(-100%);
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9b57ff 0%, #7d3ded 60%, #6322d4 100%);
  box-shadow: 0 6px 28px rgba(136, 64, 252, 0.65), 0 0 40px rgba(0, 210, 255, 0.3);
  transform: translateY(-2px);
  color: #fff;
}

.btn-primary:hover::before {
  transform: rotate(25deg) translateY(100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--surface-2);
  color: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--surface-3);
  border-color: var(--brand-purple-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(136, 64, 252, 0.3);
}

.btn-gold {
  background: linear-gradient(135deg, #ffc83b 0%, #ff9800 100%);
  color: #0b0c16;
  font-weight: 800;
  box-shadow: 0 4px 20px var(--brand-gold-glow);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffd359 0%, #ffa726 100%);
  box-shadow: 0 6px 25px rgba(255, 190, 26, 0.5);
  transform: translateY(-2px);
}

.btn-android {
  background: linear-gradient(135deg, #00d26a, #00994d);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 210, 106, 0.35);
}

.btn-android:hover {
  box-shadow: 0 6px 26px rgba(0, 210, 106, 0.5);
  transform: translateY(-2px);
}

.btn-ios {
  background: linear-gradient(135deg, #2b305c, #1a1e38);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn-ios:hover {
  background: linear-gradient(135deg, #373e73, #222749);
  border-color: var(--brand-cyan);
  box-shadow: 0 6px 24px rgba(0, 210, 255, 0.3);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.08rem;
  border-radius: var(--radius-md);
}

/* Burger Button */
.burger-btn {
  display: none;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: var(--transition);
}

.burger-btn:hover {
  background: var(--surface-3);
}

/* PROMO CODE CARD COMPONENT */
.promo-box {
  background: linear-gradient(135deg, rgba(32, 36, 68, 0.9), rgba(24, 26, 48, 0.95));
  border: 1px solid var(--brand-purple-light);
  box-shadow: 0 8px 30px rgba(136, 64, 252, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.promo-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand-gold), var(--brand-purple));
}

.promo-box__info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.promo-box__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255, 190, 26, 0.2), rgba(136, 64, 252, 0.2));
  border: 1px solid rgba(255, 190, 26, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.promo-box__labels {
  display: flex;
  flex-direction: column;
}

.promo-box__title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  font-weight: 700;
}

.promo-box__value-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.promo-box__code {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.promo-box__perk {
  font-size: 0.8rem;
  color: var(--brand-gold);
  font-weight: 600;
}

.promo-box__copy-btn {
  background: linear-gradient(135deg, var(--brand-gold) 0%, #ff9800 100%);
  color: #0b0c16;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px var(--brand-gold-glow);
  transition: var(--transition);
}

.promo-box__copy-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 190, 26, 0.5);
}

.promo-box__copy-btn.copied {
  background: linear-gradient(135deg, #00e699 0%, #00b377 100%);
  color: #042416;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.breadcrumbs {
  margin-bottom: 24px;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumbs__link {
  color: var(--text-secondary);
  transition: var(--transition);
}

.breadcrumbs__link:hover {
  color: var(--brand-cyan);
}

.breadcrumbs__sep {
  opacity: 0.4;
}

.breadcrumbs__current {
  color: var(--brand-purple-light);
  font-weight: 600;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

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

.hero__badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(136, 64, 252, 0.15);
  border: 1px solid rgba(136, 64, 252, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-purple-light);
}

.hero-pill.pill-live {
  background: rgba(0, 230, 153, 0.15);
  border-color: rgba(0, 230, 153, 0.35);
  color: var(--brand-emerald);
}

.hero-pill.pill-live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-emerald);
  box-shadow: 0 0 10px var(--brand-emerald);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.5px;
}

.hero__title-gradient {
  background: linear-gradient(135deg, #ffffff 30%, #c48eff 70%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero__bonus-card {
  background: linear-gradient(135deg, rgba(32, 36, 68, 0.6) 0%, rgba(20, 22, 40, 0.8) 100%);
  border: 1px solid rgba(136, 64, 252, 0.3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero__bonus-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--brand-gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero__bonus-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hero__bonus-title {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero__bonus-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-gold);
  text-shadow: 0 0 20px var(--brand-gold-glow);
}

.hero__bonus-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__cta-group .btn {
  flex: 1 1 200px;
}

.hero__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__img-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, var(--brand-purple-glow) 0%, rgba(0, 210, 255, 0.15) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero__img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* TABLE OF CONTENTS (TOC) */
.toc-section {
  padding: 30px 0;
}

.toc-card {
  background: var(--surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.toc-header__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.toc-header__icon {
  color: var(--brand-cyan);
}

.toc-toggle-btn {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.toc-toggle-btn svg {
  transition: var(--transition);
}

.toc-card.collapsed .toc-toggle-btn svg {
  transform: rotate(-90deg);
}

.toc-card.collapsed .toc-content {
  display: none;
}

.toc-content {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 2px solid transparent;
}

.toc-link:hover {
  background: var(--surface-2);
  color: var(--brand-cyan);
  border-left-color: var(--brand-cyan);
  transform: translateX(4px);
}

.toc-num {
  color: var(--brand-purple-light);
  font-size: 0.76rem;
  font-weight: 700;
  min-width: 22px;
}

/* SECTION STYLING */
.section {
  padding: 60px 0;
  position: relative;
}

.section-title-wrap {
  margin-bottom: 32px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-cyan);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 10px;
  max-width: 820px;
}

/* CONTENT CARD / BOX */
.content-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.content-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

/* TWO-COL LAYOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.two-col__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  background: var(--surface-2);
}

.two-col__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.two-col__img-wrap:hover .two-col__img {
  transform: scale(1.03);
}

/* MODERN TABLES */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin: 24px 0;
  background: var(--surface-1);
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.94rem;
}

.custom-table th {
  background: linear-gradient(90deg, #8840fc, #672adb);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 16px 20px;
  letter-spacing: 0.5px;
  border: none;
}

.custom-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.custom-table tr:last-child td {
  border-bottom: none;
}

.custom-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.custom-table tbody tr:hover {
  background: rgba(136, 64, 252, 0.1);
}

.custom-table td:first-child {
  font-weight: 600;
  color: #fff;
}

/* STEP-BY-STEP FLOW (HOW TO) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.step-card {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface-1) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-purple-light);
  box-shadow: 0 12px 30px var(--brand-purple-glow);
}

.step-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.step-card__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-cyan));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--brand-purple-glow);
}

.step-card__badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.step-card__img-wrap {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-3);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.step-card:hover .step-card__img {
  transform: scale(1.05);
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* LIST COMPATIBLE ITEMS */
.device-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.device-tag {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.device-tag:hover {
  background: var(--surface-3);
  border-color: var(--brand-cyan);
  color: #fff;
  transform: translateY(-2px);
}

/* SPORTS BADGES */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.sport-card {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: default;
}

.sport-card:hover {
  background: var(--surface-3);
  border-color: var(--brand-purple-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(136, 64, 252, 0.25);
}

.sport-card__icon {
  font-size: 1.8rem;
}

.sport-card__name {
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}

/* BENEFITS GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.benefit-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--brand-purple-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(136, 64, 252, 0.2), rgba(0, 210, 255, 0.15));
  border: 1px solid rgba(136, 64, 252, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.benefit-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* PAYMENT METHODS BADGES */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.payment-card {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: var(--transition);
}

.payment-card:hover {
  border-color: var(--brand-cyan);
  background: var(--surface-3);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 210, 255, 0.2);
}

.payment-card__badge {
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #fff, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.payment-card__time {
  font-size: 0.75rem;
  color: var(--brand-emerald);
  font-weight: 600;
}

/* FAQ ACCORDION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.faq-item {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover,
.faq-item.open {
  border-color: var(--brand-purple-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--brand-cyan);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--brand-purple);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 22px;
}

/* CALLOUT BANNER */
.callout-banner {
  background: linear-gradient(135deg, #3d1478, #1c1547 50%, #0d2847);
  border: 1px solid var(--brand-purple-light);
  box-shadow: var(--shadow-glow);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 60px 0;
}

.callout-banner__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.callout-banner__desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 28px;
}

.callout-banner__cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* FOOTER */
.footer {
  background: #080911;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand-desc {
  margin-top: 16px;
  line-height: 1.6;
  max-width: 340px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 18px;
}

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

.footer__link {
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--brand-cyan);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__disclaimer {
  font-size: 0.8rem;
  max-width: 700px;
  line-height: 1.6;
}

/* STICKY BOTTOM BAR (MOBILE/TABLET CONVERSION BAR) */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(12, 13, 24, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 10px 16px;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.mobile-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.mobile-sticky-bar__promo {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.mobile-sticky-bar__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.mobile-sticky-bar__code {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-sticky-bar .btn {
  flex: 1;
  padding: 12px 18px;
  font-size: 0.92rem;
}

/* SCROLL TO TOP */
.to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 990;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
}

.to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top-btn:hover {
  background: var(--brand-purple);
  border-color: var(--brand-purple-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

/* TOAST NOTIFICATION */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  background: linear-gradient(135deg, #1f2347, #13152c);
  border: 1px solid var(--brand-emerald);
  box-shadow: 0 10px 30px rgba(0, 230, 153, 0.35);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards, toastOut 0.3s 2.2s forwards;
}

.toast svg {
  color: var(--brand-emerald);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(-10px) scale(0.95); }
}

/* RESPONSIVE BREAKPOINTS */
@media (min-width: 1600px) {
  :root {
    --header-height: 84px;
  }
  .header__container {
    max-width: 1680px;
  }
  .header__nav-link {
    font-size: 0.96rem;
  }
  .header__nav-list {
    gap: 28px;
  }
}

@media (max-width: 1180px) {
  .burger-btn {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(12, 13, 24, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-light);
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .header__nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .header__nav-link {
    font-size: 1rem;
    padding: 8px 0;
  }
  .header__actions {
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
  }
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero__badge-row,
  .hero__cta-group,
  .hero__bonus-header {
    justify-content: center;
  }
  .promo-box {
    justify-content: center;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
  .hero__title {
    font-size: 2.1rem;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .callout-banner {
    padding: 30px 20px;
  }
  .callout-banner__title {
    font-size: 1.7rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .mobile-sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 74px;
  }
  .to-top-btn {
    bottom: 84px;
    right: 20px;
  }
}

/* Programmatic SEO Country Directory & Footer Grid */
.footer__countries {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}
.footer__countries-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.footer__country-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer__country-card:hover {
  background: var(--surface-2);
  border-color: var(--brand-purple-light);
  color: var(--text-primary);
  transform: translateY(-2px);
}
.footer__country-card .flag {
  font-size: 1.25rem;
  line-height: 1;
}
.footer__country-card .c-info {
  display: flex;
  flex-direction: column;
}
.footer__country-card .c-name {
  font-weight: 600;
  color: var(--text-primary);
}
.footer__country-card .c-curr {
  font-size: 0.74rem;
  color: var(--brand-gold);
}

