:root {
  --brand-primary: #0a1a3a;
  --brand-secondary: #1a3a6e;
  --brand-accent: #2ecc71;
  --brand-bg: #0c1e4a;
  --brand-text: #ffffff;
  --brand-header-bg: #0a1530;
  --brand-btn-bg: #2ecc71;
  --brand-btn-text: #ffffff;
  --brand-btn-radius: 8px;
  --brand-head-font: 'Impact', sans-serif;
  --brand-body-font: 'Arial', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size: 14px;
}

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

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

body {
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  color: var(--brand-text);
  background-color: var(--brand-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: #27ae60;
}

a:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

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

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 10px;
  background: var(--brand-accent);
  color: var(--brand-primary);
  padding: 10px 20px;
  z-index: 100000;
  font-weight: 700;
  border-radius: var(--brand-btn-radius);
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 10px;
}

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

/* Site Logo */
.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--brand-header-bg);
  z-index: 10000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo a {
  display: flex;
  align-items: center;
}

/* Navigation */
.main-nav {
  position: relative;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav ul li a {
  display: block;
  padding: 10px 18px;
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--brand-btn-radius);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(46, 204, 113, 0.15);
  color: var(--brand-accent);
}

.header-cta .btn-header {
  display: inline-block;
  padding: 10px 24px;
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.header-cta .btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(46, 204, 113, 0.45);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  font-size: 24px;
  padding: 6px 12px;
  border-radius: var(--brand-btn-radius);
  cursor: pointer;
  transition: background 0.2s ease;
  line-height: 1;
}

.mobile-menu-btn:hover {
  background: rgba(46, 204, 113, 0.15);
}

.mobile-menu-btn:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px;
  background: linear-gradient(160deg, var(--brand-header-bg) 0%, var(--brand-primary) 30%, var(--brand-secondary) 60%, #0d2955 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 160%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(46, 204, 113, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(26, 58, 110, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--brand-bg), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.15);
  color: var(--brand-accent);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.hero-content h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--brand-text);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 .highlight {
  color: var(--brand-accent);
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: var(--brand-head-font);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-accent);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--brand-btn-radius);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 3px;
}

.btn-hero {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  font-size: 20px;
  padding: 18px 48px;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(46, 204, 113, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(46, 204, 113, 0.55);
  color: var(--brand-btn-text);
}

.btn-cta {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  padding: 16px 40px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.45);
  color: var(--brand-btn-text);
}

.btn-outline {
  background: transparent;
  color: var(--brand-accent);
  border: 2px solid var(--brand-accent);
  padding: 14px 36px;
  border-radius: var(--brand-btn-radius);
}

.btn-outline:hover {
  background: rgba(46, 204, 113, 0.1);
  transform: translateY(-2px);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatPulse 3s ease-in-out infinite;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  color: var(--brand-btn-text);
}

.floating-cta:focus {
  outline: 2px solid var(--brand-text);
  outline-offset: 3px;
}

.floating-cta::before {
  content: '🎰';
  font-size: 18px;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(46, 204, 113, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(46, 204, 113, 0.6); }
}

/* Main Content */
.main-content {
  padding: 60px 0 80px;
}

.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--brand-text);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--brand-accent);
  border-radius: 2px;
}

.content-section h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--brand-accent);
  margin-bottom: 14px;
  margin-top: 30px;
}

.content-section p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
  max-width: 900px;
}

.content-section ul,
.content-section ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.content-section ul li,
.content-section ol li {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  padding-left: 4px;
}

.content-section ul li::marker {
  color: var(--brand-accent);
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.feature-card {
  background: linear-gradient(145deg, rgba(26, 58, 110, 0.5), rgba(10, 26, 58, 0.7));
  border: 1px solid rgba(46, 204, 113, 0.15);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(46, 204, 113, 0.4);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-family: var(--brand-head-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 10px;
  margin-top: 0;
  text-transform: uppercase;
}

.feature-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, rgba(26, 58, 110, 0.6), rgba(10, 26, 58, 0.8));
  border-left: 4px solid var(--brand-accent);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 30px 0;
}

.info-box p {
  margin-bottom: 8px;
  font-size: 16px;
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 16px;
  margin: 40px 0;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.cta-section h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--brand-text);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cta-section h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
}

/* Bonus Banner */
.bonus-banner {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(26, 58, 110, 0.6));
  border: 2px solid rgba(46, 204, 113, 0.3);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(46, 204, 113, 0.05), transparent 70%);
  pointer-events: none;
}

.bonus-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  position: relative;
}

.bonus-banner h2::after {
  display: none;
}

.bonus-banner .bonus-amount {
  display: block;
  font-family: var(--brand-head-font);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--brand-accent);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.bonus-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 24px;
  max-width: 500px;
}

/* Footer */
.site-footer {
  background: var(--brand-header-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-family: var(--brand-head-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--brand-accent);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

/* Footer Logos Row */
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.footer-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--brand-btn-radius);
  padding: 10px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  white-space: nowrap;
  gap: 6px;
}

.footer-logo-item span.logo-icon {
  font-size: 22px;
}

/* Footer Payments */
.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.payment-icon {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 24px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 16px;
}

.footer-disclaimer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}

/* Legal Pages */
.legal-content {
  padding: 140px 0 80px;
}

.legal-content h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brand-text);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.legal-content .last-reviewed {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--brand-accent);
  margin-top: 40px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-text);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  max-width: 900px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-content ul li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.legal-content ul li::marker {
  color: var(--brand-accent);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    flex-wrap: wrap;
  }
}

@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
  }

  .mobile-nav-active ul li a {
    padding: 12px 20px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .header-cta {
    display: none;
  }

  .hero-section {
    min-height: 70vh;
    padding: 120px 20px 60px;
  }

  .hero-stats {
    gap: 24px;
  }
}

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

  .hero-section {
    min-height: 60vh;
    padding: 110px 16px 50px;
  }

  .hero-description {
    font-size: 16px;
  }

  .btn-hero {
    font-size: 17px;
    padding: 16px 36px;
  }

  .content-section p {
    font-size: 16px;
  }

  .bonus-banner {
    padding: 28px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-logos {
    gap: 14px;
  }

  .footer-logo-item {
    padding: 8px 14px;
    font-size: 12px;
  }

  .floating-cta {
    bottom: 20px;
    right: 16px;
    padding: 12px 22px;
    font-size: 14px;
  }

  .cta-section {
    padding: 40px 16px;
    border-radius: 12px;
  }
}

@media (max-width: 320px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .btn-hero {
    font-size: 15px;
    padding: 14px 28px;
  }

  .floating-cta {
    right: 10px;
    bottom: 14px;
    padding: 10px 18px;
    font-size: 13px;
  }

  .header-inner {
    padding: 10px 12px;
  }
}