/* === BASE STYLES === */:root {
  --color-bg-deep: #0a0420;
  --color-bg-surface: #150935;
  --color-bg-elevated: #1f0d4a;
  --color-brand-primary: #ff2e9a;
  --color-brand-secondary: #b026ff;
  --color-accent-gold: #ffd84d;
  --color-accent-cyan: #00e5ff;
  --color-neutral-100: #ffffff;
  --color-neutral-200: #e8e0ff;
  --color-neutral-400: #a89dd1;
  --color-neutral-600: #6b5d99;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-glow: 0 10px 60px rgba(255, 46, 154, 0.4);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
  --gradient-brand: linear-gradient(135deg, #ff2e9a 0%, #b026ff 100%);
  --gradient-gold: linear-gradient(135deg, #ffd84d 0%, #ff9d2e 100%);
  --gradient-bg: radial-gradient(ellipse at top, #2a0f5c 0%, #0a0420 60%);
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--color-bg-deep);
  color: var(--color-neutral-200);
  line-height: 1.7;
  margin: 0;
  background-image: var(--gradient-bg);
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: var(--color-neutral-100);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1.25rem; }

a { color: var(--color-accent-cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-brand-primary); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary, .cta-button.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-neutral-100) !important;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover, .cta-button.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 80px rgba(255, 46, 154, 0.6);
  color: var(--color-neutral-100) !important;
}

.btn-gold {
  background: var(--gradient-gold);
  color: #2a0f5c !important;
  box-shadow: 0 10px 40px rgba(255, 216, 77, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 60px rgba(255, 216, 77, 0.6);
  color: #2a0f5c !important;
}

.info-card {
  background: linear-gradient(135deg, rgba(255, 46, 154, 0.08) 0%, rgba(176, 38, 255, 0.08) 100%);
  border: 1px solid rgba(255, 46, 154, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-brand-primary);
  box-shadow: var(--shadow-card), 0 0 40px rgba(255, 46, 154, 0.25);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.info-card:hover::before { transform: scaleX(1); }

.content-image {
  margin: 0 0 1.5rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.content-image.wide img { max-height: 480px; }

.info-card .content-image img { max-height: 200px; }

.highlight-box, .promo-block {
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.1) 0%, rgba(255, 157, 46, 0.05) 100%);
  border-left: 4px solid var(--color-accent-gold);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.promo-block {
  background: linear-gradient(135deg, rgba(176, 38, 255, 0.15) 0%, rgba(255, 46, 154, 0.1) 100%);
  border-left-color: var(--color-brand-primary);
  padding: 2.5rem;
  margin-top: 3rem;
}

.feature-list, .checklist {
  list-style: none;
  padding: 0;
}

.feature-list li, .checklist li {
  position: relative;
  padding: 1rem 0 1rem 2.5rem;
  border-bottom: 1px solid rgba(168, 157, 209, 0.15);
}

.feature-list li::before, .checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 15px rgba(255, 46, 154, 0.5);
}

.feature-list li::after, .checklist li::after {
  content: '';
  position: absolute;
  left: 0.55rem;
  top: 1.65rem;
  width: 0.4rem;
  height: 0.7rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.table-responsive {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 46, 154, 0.2);
  margin: 2rem 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(31, 13, 74, 0.6);
}

.comparison-table thead {
  background: var(--gradient-brand);
}

.comparison-table th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  color: #fff;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(168, 157, 209, 0.1);
  color: var(--color-neutral-200);
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(255, 46, 154, 0.05); }

code {
  background: rgba(0, 229, 255, 0.15);
  color: var(--color-accent-cyan);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.9em;
}

/* === LAYOUT STYLES === */
#site-header, .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 4, 32, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 46, 154, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-neutral-100);
  text-decoration: none;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.logo:hover { opacity: 0.85; }

.hamburger {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 46, 154, 0.3);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-brand-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  color: var(--color-neutral-200);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width 0.3s;
}

.primary-nav a:hover { color: var(--color-brand-primary); }
.primary-nav a:hover::after { width: 100%; }

.header-inner .cta-button {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

#site-footer, .site-footer {
  background: linear-gradient(180deg, var(--color-bg-deep) 0%, #050110 100%);
  border-top: 1px solid rgba(255, 46, 154, 0.15);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 2rem;
}

.footer-nav a {
  color: var(--color-neutral-400);
  font-weight: 500;
}

.footer-nav a:hover { color: var(--color-brand-primary); }

.copyright {
  color: var(--color-neutral-600);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  
  .header-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .primary-nav {
    display: none;
    width: 100%;
    order: 99;
  }
  
  .primary-nav.is-open { display: block; }
  
  .primary-nav ul {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
  }
  
  .header-inner .cta-button {
    width: 100%;
    max-width: 100%;
    order: 100;
  }
  
  .logo { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .footer-nav ul { gap: 1rem; flex-direction: column; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  
  .header-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .primary-nav {
    display: none;
    width: 100%;
    order: 99;
  }
  
  .primary-nav.is-open { display: block; }
  
  .primary-nav ul {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
  }
  
  .header-inner .cta-button {
    width: 100%;
    max-width: 100%;
    order: 100;
  }
  
  .logo { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .footer-nav ul { gap: 1rem; flex-direction: column; }
}

@media (max-width: 768px) {
  .hero-section { padding: 3rem 0 4rem; }
  .registration, .login, .bonuses, .safety, .games, .mobile-banking, .faq {
    padding: 3rem 0;
  }
  .timeline-item { padding-left: 3.5rem; }
  .timeline-item::before { width: 38px; height: 38px; font-size: 1rem; }
  .timeline-vertical::before { left: 18px; }
  .promo-block { padding: 1.5rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .cta-button { width: 100%; }
  .accordion-header { padding: 1rem 3rem 1rem 1.25rem; font-size: 1rem; }
}