.page-hero {
  padding: 6rem 3rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(205, 220, 0, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(75, 204, 206, 0.1) 0%, transparent 55%);
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.9;
  margin-bottom: 1.4rem;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

.ks-hero {
  background: var(--dark-2);
  border: 2px solid rgba(75, 204, 206, 0.32);
  border-radius: 24px;
  padding: 4rem 4rem 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.ks-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(75, 204, 206, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 72% 38%, rgba(218, 108, 174, 0.1) 0%, transparent 52%);
}

.ks-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--pink));
}

.ks-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(205, 220, 0, 0.1);
  border: 2px solid var(--lime);
  color: var(--lime);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}

.ks-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 1.4s ease-in-out infinite;
}

.ks-live-badge-alt {
  background: rgba(75, 204, 206, 0.12);
  border-color: var(--teal);
  color: var(--teal);
}

.ks-live-badge-alt .ks-live-dot {
  background: var(--pink);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.ks-hero h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.ks-hero-title {
  color: var(--white);
}

.ks-hero-highlight {
  color: var(--pink);
}

.ks-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.btn-ks-big {
  background: var(--lime);
  color: var(--dark);
  font-family: "Bangers", cursive;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  padding: 0.85rem 2.8rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.7);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.btn-ks-big:hover {
  transform: translate(-4px, -4px);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.7);
  background: #d8e800;
}

.btn-ks-big svg {
  width: 28px;
  height: 28px;
}

.ks-perks {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

.ks-perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.ks-perk::before {
  content: "✓";
  color: var(--lime);
  font-weight: 900;
  font-size: 1rem;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.option-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.option-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.option-card.featured {
  border-color: var(--lime);
  box-shadow: 0 0 0 1px rgba(205, 220, 0, 0.3);
}

.option-card.featured::before {
  content: "BEST OPTION";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--lime);
  color: var(--dark);
  font-family: "Nunito", sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.3rem 0.9rem;
  border-radius: 0 16px 0 8px;
}

.option-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.option-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.option-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.option-status {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  display: inline-block;
}

.status-live {
  background: rgba(205, 220, 0, 0.12);
  border: 1.5px solid var(--lime);
  color: var(--lime);
}

.status-soon {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--border);
  color: var(--dim);
}

.option-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.option-card .btn {
  font-size: 1rem;
  padding: 0.6rem 1.4rem;
}

.email-section {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.email-form {
  display: flex;
  max-width: 480px;
  margin: 2rem auto 1rem;
}

.email-form input {
  flex: 1;
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: var(--white);
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s;
}

.email-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.email-form input:focus {
  border-color: var(--teal);
}

.email-form button {
  background: var(--teal);
  color: var(--dark);
  font-family: "Bangers", cursive;
  font-size: 1.15rem;
  letter-spacing: 0.07em;
  padding: 1rem 1.6rem;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.email-form button:hover {
  background: #5cdfe0;
}

.ks-fine {
  font-size: 0.77rem;
  color: var(--dim);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: "Bangers", cursive;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-align: left;
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--teal);
}

.faq-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  transition: all 0.3s;
}

.faq-item.open .faq-arrow {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--dark);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.6rem;
}

@media (max-width: 960px) {
  .options-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .ks-hero {
    padding: 3rem 2rem;
  }
}

@media (max-width: 560px) {
  .page-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form input {
    border-right: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px 8px 0 0;
  }

  .email-form button {
    border-radius: 0 0 8px 8px;
  }

  .ks-perks {
    flex-direction: column;
    align-items: center;
  }
}
