@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --brand-primary: #1a3cb5;
  --brand-secondary: #7eb8f0;
  --brand-accent: #ff3366;
  --brand-bg: #eef2ff;
  --brand-text: #1a1a4e;
  --brand-header-bg: #1a1a4e;
  --brand-btn-bg: #ff3366;
  --brand-btn-text: #ffffff;
  --brand-btn-radius: 30px;
  --brand-head-font: 'Nunito', sans-serif;
  --brand-body-font: 'Nunito', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

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-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--brand-accent);
}

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 10px;
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 20px;
  z-index: 100000;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

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

/* ============ HEADER ============ */
.site-header {
  background: var(--brand-header-bg);
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: 0 2px 16px rgba(26, 26, 78, 0.25);
}

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

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

.main-nav {
  position: relative;
}

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

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

.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: var(--brand-primary);
  color: #fff;
}

.header-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-accent), #e6244f);
  color: var(--brand-btn-text);
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(255, 51, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 51, 102, 0.55);
  color: #fff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--brand-secondary);
  color: #fff;
  font-size: 26px;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s ease;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
  background: var(--brand-primary);
  outline: none;
}

/* ============ HERO ============ */
.hero-section {
  background: linear-gradient(145deg, var(--brand-header-bg) 0%, var(--brand-primary) 55%, var(--brand-secondary) 100%);
  padding: 80px 20px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(126, 184, 240, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: var(--brand-secondary);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(126, 184, 240, 0.3);
}

.hero-content h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

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

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bonus-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 36px;
  display: inline-block;
}

.hero-bonus-box .bonus-amount {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: #fff;
  line-height: 1.1;
}

.hero-bonus-box .bonus-amount span {
  color: var(--brand-accent);
}

.hero-bonus-box .bonus-detail {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-top: 8px;
}

.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-accent), #e6244f);
  color: var(--brand-btn-text);
  padding: 18px 48px;
  border-radius: var(--brand-btn-radius);
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 6px 24px rgba(255, 51, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.5px;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255, 51, 102, 0.6);
  color: #fff;
}

.hero-trust {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-trust-item {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--brand-secondary);
}

/* ============ MAIN CONTENT ============ */
.main-content {
  padding: 60px 0 80px;
}

.main-content h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--brand-text);
  margin-bottom: 18px;
  line-height: 1.25;
}

.main-content h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--brand-text);
  margin-bottom: 12px;
  margin-top: 28px;
  line-height: 1.3;
}

.main-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

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

.main-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ============ THREE COLUMN FEATURE GRID ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 50px;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26, 60, 181, 0.07);
  border: 1px solid rgba(126, 184, 240, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26, 60, 181, 0.13);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand-bg), #d8e2ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
}

.feature-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

/* ============ INFO SPLIT SECTIONS ============ */
.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 50px 0;
  align-items: start;
}

.info-block {
  background: #fff;
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: 0 3px 16px rgba(26, 60, 181, 0.06);
  border: 1px solid rgba(126, 184, 240, 0.15);
}

.info-block h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.info-block h3 {
  margin-top: 18px;
}

/* ============ HIGHLIGHT BOX ============ */
.highlight-box {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-header-bg));
  color: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  margin: 50px 0;
  text-align: center;
}

.highlight-box h2 {
  color: #fff;
  margin-bottom: 14px;
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto 24px;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-accent), #e6244f);
  color: var(--brand-btn-text);
  padding: 16px 40px;
  border-radius: var(--brand-btn-radius);
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.55);
  color: #fff;
}

/* ============ PAYMENT STRIP ============ */
.payment-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(126, 184, 240, 0.15);
}

.payment-strip .pay-icon {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-text);
  background: var(--brand-bg);
  padding: 10px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============ BOTTOM SECTION ============ */
.bottom-section {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  margin: 0 0 50px;
  box-shadow: 0 3px 16px rgba(26, 60, 181, 0.06);
  border: 1px solid rgba(126, 184, 240, 0.15);
}

/* ============ FLOATING CTA ============ */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-accent), #e6244f);
  color: #fff;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.6);
  color: #fff;
}

.floating-cta svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--brand-header-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 0;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 340px;
}

.footer-links h4, .footer-info h4 {
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}

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

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

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

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

.footer-info p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-badge svg {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer {
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer a:hover {
  color: var(--brand-accent);
}

.footer-bottom {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ============ LEGAL PAGE STYLES ============ */
.legal-page {
  padding: 50px 0 70px;
}

.legal-page h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--brand-text);
  margin-bottom: 28px;
}

.legal-page h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brand-text);
  margin: 32px 0 12px;
}

.legal-page p, .legal-page li {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

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

.legal-page li {
  margin-bottom: 6px;
}

/* ============ RESPONSIVE ============ */
@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.15);
    z-index: 9998;
    gap: 4px;
  }

  .mobile-nav-active ul li a {
    padding: 12px 20px;
    width: 100%;
    border-radius: 10px;
  }

  .header-cta-btn {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .info-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-section {
    padding: 50px 16px 60px;
  }
}

@media (max-width: 768px) {
  .hero-bonus-box {
    padding: 22px 20px;
  }

  .hero-bonus-box .bonus-amount {
    font-size: 2rem;
  }

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

  .highlight-box {
    padding: 30px 20px;
  }

  .info-block {
    padding: 26px 20px;
  }

  .bottom-section {
    padding: 28px 20px;
  }

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

@media (max-width: 480px) {
  .header-inner {
    padding: 10px 14px;
  }

  .site-logo-img {
    height: 36px;
  }

  .hero-section {
    padding: 36px 14px 48px;
  }

  .hero-trust {
    gap: 16px;
  }

  .hero-trust-item {
    font-size: 12px;
  }

  .container {
    padding: 0 14px;
  }

  .features-grid {
    margin: 24px 0 30px;
  }

  .feature-card {
    padding: 24px 18px;
  }
}