:root {
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #a07820;
  --purple-deep: #0d0015;
  --purple-mid: #1a0033;
  --purple-bright: #7c00cc;
  --purple-glow: #9b30ff;
  --white: #fff8ee;
  --text-muted: #c0a0d0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--purple-deep);
  color: var(--white);
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      ellipse at 20% 30%,
      rgba(124, 0, 204, 0.25) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(30, 0, 80, 0.6) 0%,
      transparent 60%
    );
}

.stars::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      1px 1px at 15% 12%,
      rgba(255, 255, 255, 0.9) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 72% 8%,
      rgba(255, 255, 255, 0.7) 0%,
      transparent 100%
    ),
    radial-gradient(
      1.5px 1.5px at 33% 25%,
      rgba(255, 255, 255, 0.8) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 88% 33%,
      rgba(255, 255, 255, 0.6) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 5% 55%,
      rgba(255, 255, 255, 0.7) 0%,
      transparent 100%
    ),
    radial-gradient(
      1.5px 1.5px at 60% 45%,
      rgba(255, 255, 255, 0.9) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 45% 70%,
      rgba(255, 255, 255, 0.6) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 92% 78%,
      rgba(255, 255, 255, 0.8) 0%,
      transparent 100%
    ),
    radial-gradient(
      1.5px 1.5px at 28% 88%,
      rgba(255, 255, 255, 0.7) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 78% 90%,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 100%
    );
  animation: twinkle 6s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from {
    opacity: 0.7;
  }

  to {
    opacity: 1;
  }
}

.moon {
  position: fixed;
  top: 40px;
  right: 80px;
  width: 60px;
  height: 60px;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.8));
  animation: moonFloat 8s ease-in-out infinite alternate;
}

@keyframes moonFloat {
  from {
    transform: translateY(0) rotate(-5deg);
  }

  to {
    transform: translateY(-12px) rotate(5deg);
  }
}

.arch-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dark),
    var(--gold),
    var(--gold-light),
    var(--gold),
    var(--gold-dark),
    transparent
  );
  z-index: 10;
}

header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(6px);
}

.logo a{
  font-family: "Cinzel Decorative", serif;
  
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow:
    0 0 20px rgba(212, 175, 55, 0.6),
    0 0 40px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.06em;
}

a{
 text-decoration: none;
}

.logo a span {
  color: var(--purple-glow);
}

nav a {
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 32px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.hero {
  position: relative;
  z-index: 2;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.38;
  z-index: 0;
  animation: heroPan 20s ease-in-out infinite alternate;
  background-image: url('../images/bcgr-img-min.png')
}

.politica{
  padding: 50px 24px;
  min-height: 80vh;
}

.politica h1{
  text-align: center;
  margin-bottom: 10px;
}

.politica h1, 
.politica h2{
  text-align: center;
  margin-bottom: 10px;
  margin-top: 20px;
}

@keyframes heroPan {
  from {
    transform: scale(1.04) translateX(0);
  }

  to {
    transform: scale(1.08) translateX(-20px);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(13, 0, 21, 0.2) 0%,
    rgba(13, 0, 21, 0) 40%,
    rgba(13, 0, 21, 0.8) 80%,
    rgba(13, 0, 21, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.eyebrow {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero h1 {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  text-shadow:
    0 0 60px rgba(155, 48, 255, 0.5),
    0 4px 20px rgba(0, 0, 0, 0.8);
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  text-shadow:
    0 0 30px rgba(212, 175, 55, 0.8),
    0 0 80px rgba(212, 175, 55, 0.4);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 580px;
  margin: 22px auto 0;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.divider {
  margin: 30px auto;
  width: 260px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dark),
    var(--gold),
    var(--gold-dark),
    transparent
  );
  opacity: 0;
  animation: fadeUp 0.7s 0.75s forwards;
}

.bonus-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid var(--gold-dark);
  border-radius: 4px;
  padding: 28px 48px;
  background: linear-gradient(
    135deg,
    rgba(30, 0, 80, 0.85) 0%,
    rgba(13, 0, 21, 0.9) 100%
  );
  box-shadow:
    0 0 60px rgba(155, 48, 255, 0.3),
    inset 0 0 30px rgba(212, 175, 55, 0.05);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.7s 1s forwards;
  margin-top: 8px;
}

.bonus-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent 0deg,
    rgba(212, 175, 55, 0.06) 60deg,
    transparent 120deg
  );
  animation: spin 12s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.badge-label {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
  z-index: 1;
}

.badge-main {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  z-index: 1;
  text-shadow: 0 0 20px rgba(155, 48, 255, 0.6);
}

.badge-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 8px;
  z-index: 1;
  letter-spacing: 0.06em;
  font-weight: 300;
}

.btn-cta {
  display: inline-block;
  margin-top: 28px;
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 52px;
  border-radius: 2px;
  color: var(--purple-deep);
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  border: none;
  cursor: pointer;
  box-shadow:
    0 0 40px rgba(212, 175, 55, 0.5),
    0 4px 24px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  opacity: 0;
  animation: fadeUp 0.7s 1.2s forwards;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 60px rgba(212, 175, 55, 0.7),
    0 8px 32px rgba(0, 0, 0, 0.5);
}

.banners-section {
  position: relative;
  z-index: 2;
  padding: 70px 40px;
  background: linear-gradient(
    180deg,
    var(--purple-deep) 0%,
    var(--purple-mid) 50%,
    var(--purple-deep) 100%
  );
}

.section-title {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.banner-card {
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(155, 48, 255, 0.25),
    0 8px 40px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}

.banner-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 0 70px rgba(155, 48, 255, 0.45),
    0 16px 60px rgba(0, 0, 0, 0.7);
}

.banner-card img {
  display: block;
  width: 100%;
  height: auto;
}

.banner-mobile {
  display: none;
  grid-column: 1/-1;
}

.banner-mobile img {
  /* max-height: 360px; */
  object-fit: cover;
  object-position: center 30%;
}

.features-section {
  position: relative;
  z-index: 2;
  padding: 70px 40px;
  background: linear-gradient(
    180deg,
    rgba(13, 0, 21, 1) 0%,
    rgba(26, 0, 51, 0.95) 100%
  );
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 6px;
  background: linear-gradient(
    135deg,
    rgba(30, 0, 80, 0.5),
    rgba(13, 0, 21, 0.6)
  );
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.sub-section {
  position: relative;
  z-index: 2;
  padding: 90px 40px;
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--purple-mid) 0%,
    var(--purple-deep) 100%
  );
  overflow: hidden;
}

.sub-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(155, 48, 255, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.sub-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
  padding: 52px 48px;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    rgba(30, 0, 80, 0.7),
    rgba(13, 0, 21, 0.8)
  );
  box-shadow:
    0 0 80px rgba(155, 48, 255, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.sub-inner h2 {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.sub-inner p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.input-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.input-row input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 3px;
  color: var(--white);
  font-family: "Raleway", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
}

.input-row input[type="email"]:focus {
  border-color: var(--gold);
}

.input-row input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.btn-sub {
  padding: 14px 28px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-deep);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.btn-sub:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin-bottom: 24px;
}

.checkbox-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
  position: relative;
}

.checkbox-row input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-row input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--purple-deep);
  font-size: 0.75rem;
  font-weight: 900;
}

.checkbox-row label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}

.checkbox-row label a {
  color: var(--gold);
  text-decoration: none;
}

.checkbox-row label a:hover {
  text-decoration: underline;
}

.success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px;
  animation: fadeUp 0.5s forwards;
}

.check-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--purple-deep);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
  animation: popIn 0.4s 0.1s both;
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-msg h3 {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.3rem;
  color: var(--gold);
}

.success-msg p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 40px 60px 28px;
  background: var(--purple-deep);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-logo {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.1rem;
  color: var(--gold);
}

.footer-links a {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 24px;
  letter-spacing: 0.1em;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-legal {
  font-size: 0.68rem;
  color: rgba(192, 160, 208, 0.4);
  line-height: 1.6;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.badge-18 {
  display: inline-block;
  border: 1px solid rgba(192, 160, 208, 0.4);
  border-radius: 3px;
  padding: 2px 7px;
  font-size: 0.65rem;
  color: rgba(192, 160, 208, 0.5);
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  header {
    padding: 20px 24px;
  }

  nav {
    display: none;
  }

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

  .banner-mobile {
    display: block;
    grid-column: auto;
  }

  .banner-desktop{
    display: none;
  }

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

  .input-row {
    flex-direction: column;
  }

  .sub-inner {
    padding: 36px 24px;
  }

  footer {
    padding: 32px 24px;
  }

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

  .footer-links a {
    margin: 0 10px;
  }
}
