* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #0f0f14;
  color: #f2f2f2;
  line-height: 1.6;
}

a {
  color: #d43a6b;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 34px;
  color: #d43a6b;
}

/* Header */
.site-header {
  background: #0b0b10;
  border-bottom: 1px solid #1f1f2a;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav a {
  margin-left: 20px;
  font-size: 0.95rem;
}

/* Support modal overlay */
.support-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 20, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Modal box */
.support-box {
  background: #161622;
  border-radius: 14px;
  padding: 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Close button */
.support-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 22px;
  cursor: pointer;
}

/* Text */
.support-box h2 {
  margin-bottom: 8px;
}

.support-text {
  font-size: 0.9rem;
  color: #b8b8c4;
  margin-bottom: 20px;
}

/* Inputs */
.support-box input,
.support-box textarea {
  width: 100%;
  background: #0f0f14;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.support-box textarea {
  resize: vertical;
  min-height: 90px;
}

/* Submit */
.support-submit {
  width: 100%;
  background: #d43a6b;
  border: none;
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

/* Success message */
.support-success {
  display: none;
  text-align: center;
  color: #6fe3b4;
  margin-top: 16px;
  font-size: 0.95rem;
}


/* Hero */
.hero {
  padding: 90px 0;
  text-align: center;
  background:
    radial-gradient(
      70% 50% at 50% -10%,
      rgba(190, 25, 60, 0.55) 0%,
      rgba(190, 25, 60, 0.35) 30%,
      rgba(120, 20, 50, 0.18) 55%,
      rgba(15, 15, 20, 0) 85%
    ),
    linear-gradient(
      180deg,
      #1b0f18 0%,
      #120e18 45%,
      #0f0f14 85%
    );
}



.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.subtitle {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #cfcfd8;
}

.cta-button {
  display: inline-block;
  background: #f90202;
  color: #fff;
  padding: 14px 34px;
  border-radius: 12px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #bb2f5c;
}

.cta-button.secondary {
  background: transparent;
  border: 1px solid #d43a6b;
}

.disclaimer {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #9a9aa5;
}

/* Sections */
.features,
.explanation,
.cta-section {
  padding: 70px 0;
}

.features h2,
.explanation h2,
.cta-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.feature {
  background: #151520;
  padding: 30px;
  border-radius: 12px;
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature p {
  color: #c5c5cf;
}

/* Footer */
.site-footer {
  background: #0b0b10;
  border-top: 1px solid #1f1f2a;
  padding: 30px 0;
  font-size: 0.85rem;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-links a {
  margin-left: 15px;
  color: #9a9aa5;
}

@media (max-width: 768px) {

  /* Container */
  .container {
    padding: 0 20px;
  }

  /* Header */
  .site-header .container {
    flex-direction: column;
    height: auto;
    padding: 12px 0;
  }

  .logo {
    margin-bottom: 6px;
    font-size: 1.05rem;
  }

  .nav span,
  .nav a {
    margin: 0 8px;
    font-size: 0.85rem;
  }

  /* Hero */
  .hero {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .cta-button {
    padding: 12px 26px;
    font-size: 0.95rem;
  }

  .disclaimer {
    font-size: 0.75rem;
  }

  /* Sections */
  .features,
  .explanation,
  .cta-section {
    padding: 48px 0;
  }

  .features h2,
  .explanation h2,
  .cta-section h2 {
    font-size: 1.3rem;
    margin-bottom: 28px;
  }

  /* Features grid */
  .feature-grid {
    gap: 20px;
  }

  .feature {
    padding: 22px;
  }

  .feature h3 {
    font-size: 1rem;
  }

  .feature p {
    font-size: 0.9rem;
  }

  /* Support modal */
  .support-box {
    padding: 22px;
    border-radius: 12px;
    max-width: 92%;
  }

  .support-box h2 {
    font-size: 1.2rem;
  }

  .support-text {
    font-size: 0.85rem;
  }

  .support-submit {
    padding: 11px;
    font-size: 0.9rem;
  }

  /* Footer */
  .site-footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-links a {
    margin: 0 8px;
    font-size: 0.8rem;
  }
}

