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

body {
  background: linear-gradient(200deg, #f3e8ff, #faf5ff);
  background-attachment: fixed;
  font-family: 'DM Sans', sans-serif;
  color: #3a3a3a;
  line-height: 1.65;
  font-size: 15px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'Playfair Display', serif;
  color: #1f1f1f;
  font-weight: 700;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.4rem; }

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

a {
  color: #7c3aed;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 14px;
  color: #3a3a3a;
}

.cookie-banner-hidden {
  display: none;
}

/* Navbar */
.navbar {
  padding: 16px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-logo {
  font-size: 1.35rem;
  color: #1f1f1f;
  text-decoration: none;
  white-space: nowrap;
}

.site-logo:hover {
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #3a3a3a;
}

.nav-links a:hover {
  color: #7c3aed;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1f1f1f;
  margin: 5px 0;
  transition: transform 0.25s, opacity 0.25s;
  border-radius: 2px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  background: #7c3aed;
  color: #fff;
  border-radius: 20px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.85;
  text-decoration: none;
  color: #fff;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

/* Sections */
.section {
  padding: 64px 0;
}

/* Hero section with gradient background */
.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(244,114,182,0.45), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(56,189,248,0.35), transparent 48%),
    radial-gradient(circle at 78% 12%, rgba(250,204,21,0.28), transparent 36%),
    linear-gradient(135deg, #4c1d95 0%, #6d28d9 38%, #7c3aed 65%, #a855f7 100%);
  color: #fff;
  border-radius: 0 0 32px 32px;
  margin-bottom: 16px;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
  mix-blend-mode: screen;
}

.hero-blob--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -120px;
  background: #ec4899;
}

.hero-blob--2 {
  width: 360px;
  height: 360px;
  bottom: -140px;
  right: -100px;
  background: #38bdf8;
}

.hero-blob--3 {
  width: 280px;
  height: 280px;
  top: 30%;
  right: 18%;
  background: #fde047;
  opacity: 0.45;
}

.hero-section .hero h1,
.hero-section .hero p {
  color: #fff;
}

.hero-section .hero p {
  color: rgba(255,255,255,0.92);
}

.hero-section .badge-18 {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}

/* Hero */
.hero {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 0 12px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.05;
  margin-top: 18px;
  letter-spacing: -0.5px;
}

.hero p {
  margin-top: 24px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #3a3a3a;
}

/* Age Gate */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(40, 20, 60, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.hidden {
  display: none;
}

.age-gate__box {
  max-width: 480px;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.age-gate__box h2 {
  margin-bottom: 12px;
  color: #7c3aed;
  font-family: 'Playfair Display', serif;
}

.age-gate__box p {
  margin-bottom: 18px;
  line-height: 1.55;
  font-size: 15px;
}

.age-gate__btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate__btn {
  padding: 10px 22px;
  border-radius: 20px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
}

.age-gate__btn--yes {
  background: #7c3aed;
  color: #fff;
}

.age-gate__btn--no {
  background: #f3e8ff;
  color: #7c3aed;
}

/* 18+ Badge */
.badge-18 {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: 4px 14px;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-family: 'DM Sans', sans-serif;
}

/* Slot demo page */
.slot-frame {
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 520px;
  border: 0;
  border-radius: 10px;
  background: #000;
  display: block;
}

.slot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 18px;
}

.slot-meta-info p {
  margin: 0;
  color: #7a7a7a;
  font-size: 14px;
}

.responsible-banner {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 16px 18px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.55;
}

.responsible-banner strong {
  color: #92400e;
}

.responsible-banner a {
  color: #92400e;
  text-decoration: underline;
}

/* How it works */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.how-step {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.how-step:hover {
  box-shadow: 0 6px 24px rgba(124,58,237,0.12);
  transform: translateY(-2px);
}

.how-step__num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
}

.how-step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 14px;
  color: #4a4a4a;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 16px 20px;
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: 0 4px 16px rgba(124,58,237,0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #1f1f1f;
  list-style: none;
  position: relative;
  padding-right: 28px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #7c3aed;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
}

/* Form consent */
.form-consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.form-consent input[type="checkbox"] {
  margin-top: 5px;
  width: auto;
}

.form-consent label {
  font-size: 13px;
  line-height: 1.45;
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Game Catalog */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.game-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.game-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-card-header-text h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.genre-badge {
  display: inline-block;
  background: #f3e8ff;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 12px;
}

.game-developer {
  font-size: 13px;
  color: #7a7a7a;
  margin-top: 2px;
}

.game-description {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #3a3a3a;
}

.game-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.game-screenshots img {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.game-card .btn {
  width: 100%;
  text-align: center;
}

/* About */
.about-content {
  max-width: 800px;
}

.about-content p {
  margin-bottom: 14px;
}

/* Subscribe / Contact Form */
.subscribe-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
}

.subscribe-card h2 {
  margin-bottom: 6px;
}

.subscribe-card .subtitle {
  color: #7a7a7a;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #1f1f1f;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  color: #1f1f1f;
}

.form-input:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.125);
}

.btn-submit {
  width: 100%;
  padding: 10px;
  font-weight: 500;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px;
  background: #f3e8ff;
  border-radius: 6px;
  text-align: center;
  color: #7c3aed;
  font-weight: 500;
  font-size: 14px;
}

.form-success.visible {
  display: block;
}

/* Footer */
.footer {
  text-align: center;
  color: #7a7a7a;
  padding: 32px 0;
  font-size: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-links a {
  color: #7a7a7a;
  font-size: 13px;
}

.footer-links a:hover {
  color: #7c3aed;
}

/* Legal pages */
.legal-content {
  max-width: 800px;
  padding-bottom: 32px;
}

.legal-content h1 {
  margin-bottom: 24px;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.legal-content p {
  margin-bottom: 12px;
}

.legal-content ul, .legal-content ol {
  margin-left: 24px;
  margin-bottom: 12px;
}

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

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }

  .hero-section {
    border-radius: 0 0 20px 20px;
  }

  .hero-blob {
    filter: blur(40px);
  }

  .hero-blob--1 {
    width: 240px;
    height: 240px;
    top: -80px;
    left: -80px;
  }

  .hero-blob--2 {
    width: 220px;
    height: 220px;
    bottom: -100px;
    right: -60px;
  }

  .hero-blob--3 {
    width: 180px;
    height: 180px;
    top: 40%;
    right: -40px;
  }

  .hero {
    padding: 8px 0 4px;
  }

  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.1;
    margin-top: 14px;
  }

  .hero p {
    font-size: 1.02rem;
    margin-top: 16px;
  }

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

  .how-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .navbar .container {
    position: relative;
    gap: 16px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: auto;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 14px 18px;
    gap: 12px;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 100;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 4px 0;
  }

  .subscribe-card {
    padding: 24px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .slot-frame {
    min-height: 360px;
  }
}