:root {
  --primary: #ff5f6d;       /* coral/red */
  --primary-dark: #e63946;  /* deeper red */
  --gold: #ffc371;          /* peach / accent */
  --gold-soft: #ffe0b2;     /* soft peach */
  --white: #ffffff;
  --text: #fff6f6;
  --text-muted: #ffd7d7;
  --bg: #330305;
  --danger: #ff4b4b;
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
  --transition: 0.25s ease;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ff5f6d, #ffc371);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(
    to bottom,
    rgba(51, 3, 5, 0.96),
    rgba(51, 3, 5, 0.94)
  );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, var(--gold-soft), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255, 99, 99, 0.55);
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  color: var(--text-muted);
  transition: var(--transition);
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn span {
  margin-left: 0.4rem;
  font-size: 0.85rem;
}

/* Register = warm accent */
.btn-register {
  background: linear-gradient(135deg, #ffd27f, #ffc371);
  color: #4a2400;
  box-shadow: 0 6px 16px rgba(255, 146, 68, 0.5);
}

.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255, 146, 68, 0.7);
}

/* Login = white with border */
.btn-login {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
}

/* Bonus = deep red with glow */
.btn-bonus {
  background: linear-gradient(145deg, var(--primary-dark), #8b1220);
  color: var(--gold-soft);
  border: 1px solid rgba(255, 228, 170, 0.9);
  box-shadow:
    0 0 10px rgba(255, 228, 170, 0.8),
    0 0 22px rgba(255, 95, 109, 0.8);
}

.btn-bonus:hover {
  box-shadow:
    0 0 14px rgba(255, 228, 170, 1),
    0 0 30px rgba(255, 95, 109, 1);
  transform: translateY(-1px) scale(1.02);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Hero (home only) */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(139, 18, 32, 0.95);
  border: 1px solid rgba(255, 228, 170, 0.9);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
  color: var(--gold-soft);
  gap: 0.4rem;
}

.eyebrow i {
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw + 1.2rem, 3.2rem);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.hero h1 span {
  background: linear-gradient(90deg, #ffe3b3, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 1.4rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-note strong {
  color: var(--gold-soft);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
}

.badge {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 228, 170, 0.4);
  background: rgba(80, 0, 7, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
}

.badge i {
  font-size: 0.9rem;
  color: var(--gold-soft);
}

/* Hero stats card */
.hero-card {
  background: radial-gradient(circle at top, #ff7f88 0, #4d0509 50%, #240002 100%);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 228, 170, 0.35);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(255, 228, 170, 0.35), transparent 70%);
  top: -50px;
  right: -40px;
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.hero-card-title {
  font-size: 1rem;
  font-weight: 600;
}

.chip {
  font-size: 0.7rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(139, 18, 32, 0.95);
  border: 1px solid rgba(255, 228, 170, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.hero-stat {
  padding: 0.65rem 0.75rem;
  background: rgba(64, 2, 7, 0.9);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

.hero-stat-label {
  color: var(--text-muted);
  font-size: 0.7rem;
  margin-bottom: 0.15rem;
}

.hero-stat-value {
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-progress {
  margin-top: 0.4rem;
  width: 100%;
  height: 5px;
  background: rgba(80, 0, 7, 0.85);
  border-radius: 999px;
  overflow: hidden;
}

.hero-progress span {
  display: block;
  height: 100%;
  width: 85%;
  background: linear-gradient(90deg, #ffe0b2, #ffffff);
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-card-footer strong {
  color: var(--gold-soft);
}

/* Sections */
section {
  padding: 2.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--gold-soft);
  margin-bottom: 0.2rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0.3rem auto 0;
}

/* warm section backgrounds */
.bg-alt-1 {
  background: radial-gradient(circle at top, rgba(255, 136, 143, 0.45), rgba(51, 3, 5, 0.98));
}

.bg-alt-2 {
  background: radial-gradient(circle at top, rgba(255, 159, 120, 0.4), rgba(39, 1, 3, 0.97));
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.feature-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(64, 2, 7, 0.94);
  border: 1px solid rgba(255, 228, 170, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 228, 170, 0.26), transparent 60%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 228, 170, 0.7);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.8rem;
  background: rgba(255, 144, 110, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.feature-icon i {
  color: var(--gold-soft);
}

.feature-title {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.feature-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.7rem;
}

.step-card {
  background: rgba(64, 2, 7, 0.94);
  padding: 0.9rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 228, 170, 0.6);
  font-size: 0.85rem;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 159, 120, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}

.step-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 0.4rem;
}

.testimonial-card {
  background: rgba(50, 2, 7, 0.96);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "★";
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 3.2rem;
  color: rgba(255, 220, 165, 0.25);
}

.testimonial-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.testimonial-name {
  font-size: 0.8rem;
  font-weight: 600;
}

.testimonial-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.about-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0.6rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.about-list i {
  color: var(--gold-soft);
  margin-top: 0.1rem;
}

.about-highlight {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--gold-soft);
}

.about-card {
  background: rgba(64, 2, 7, 0.95);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  border: 1px solid rgba(255, 228, 170, 0.4);
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
}

.about-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.about-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.about-safe {
  background: rgba(139, 18, 32, 0.9);
  padding: 0.5rem 0.6rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 228, 170, 0.6);
  font-size: 0.78rem;
  margin-top: 0.5rem;
}

.about-safe strong {
  color: var(--gold-soft);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.blog-card {
  background: rgba(64, 2, 7, 0.95);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: rgba(255, 228, 170, 0.85);
  transform: translateY(-3px);
}

.blog-tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 159, 120, 0.3);
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
  display: inline-block;
}

.blog-title {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.blog-link {
  font-size: 0.8rem;
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form {
  background: rgba(64, 2, 7, 0.96);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.form-control {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(30, 0, 3, 0.98);
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: rgba(255, 228, 170, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 228, 170, 0.6);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-info p {
  margin-bottom: 0.6rem;
}

.contact-highlight {
  padding: 0.6rem 0.7rem;
  border-radius: 0.8rem;
  background: rgba(139, 18, 32, 0.9);
  border: 1px solid rgba(255, 228, 170, 0.6);
  margin-top: 0.7rem;
  font-size: 0.78rem;
}

.contact-highlight strong {
  color: var(--gold-soft);
}

.contact-email {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.contact-email a {
  color: var(--gold-soft);
}

/* Privacy text */
.privacy {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.privacy h3 {
  font-size: 1rem;
  margin: 1rem 0 0.4rem;
  color: var(--text);
}

.privacy p {
  margin-bottom: 0.45rem;
}

.privacy ul {
  padding-left: 1.1rem;
  margin-bottom: 0.6rem;
}

.privacy li {
  margin-bottom: 0.3rem;
}

.privacy-strong {
  color: var(--gold-soft);
}

/* Footer */
footer {
  background: #220103;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem 0 1.1rem;
  margin-top: 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand {
  max-width: 320px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-brand strong {
  color: var(--gold-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-icon:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

/* Hidden responsible gaming note */
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.8s forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.15s;
}

.fade-in-delay-2 {
  animation-delay: 0.3s;
}

.fade-in-delay-3 {
  animation-delay: 0.45s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-card {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 840px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(51, 3, 5, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 4%;
    gap: 0.7rem;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    transition: max-height 0.3s ease, border-bottom 0.3s ease;
  }

  .nav-links.open {
    max-height: 220px;
    border-bottom: 1px solid rgba(255, 228, 170, 0.5);
  }

  .nav-cta {
    margin-left: auto;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 720px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .features-grid,
  .testimonials-grid,
  .blog-grid,
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-cta {
    display: none; /* header simpler; hero still has buttons */
  }
}
