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

body {
  background: linear-gradient(170deg, #ede9fe, #f5f3ff);
  background-attachment: fixed;
  font-family: 'Inter', sans-serif;
  color: #555;
  line-height: 1.75;
  font-size: 17px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'Sora', sans-serif;
  color: #0a0a0a;
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.15rem; margin-bottom: 10px; }

p { margin-bottom: 14px; }

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

a { color: #6d28d9; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Cookie banner */
.cookie-banner {
  padding: 14px 20px;
  text-align: center;
  font-size: 15px;
  color: #444;
}
.cookie-banner a { margin: 0 6px; }
.cookie-banner button {
  margin-left: 10px;
  background: #6d28d9;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 8px 18px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: opacity 0.2s;
}
.cookie-banner button:hover { opacity: 0.85; }

/* Navbar */
.navbar {
  padding: 16px 0;
  background: transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-logo {
  font-size: 1.4rem;
  color: #0a0a0a;
}
.site-logo a { color: inherit; }
.site-logo a:hover { text-decoration: none; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a { color: #444; font-weight: 500; }
.nav-links a:hover { color: #6d28d9; text-decoration: none; }

/* Hero */
.hero {
  padding: 80px 0;
  text-align: center;
}
.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

/* Section */
section { padding: 56px 0; }

.about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-inner p { text-align: left; }

/* Card */
.card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(2px);
  border: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.08); }

/* Catalog */
.catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.game-card { display: flex; flex-direction: column; }
.game-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.game-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
}
.game-title { margin-bottom: 4px; }
.developer { color: #999; font-size: 14px; }
.badge {
  display: inline-block;
  background: #ede9fe;
  color: #6d28d9;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}
.game-desc { font-size: 15px; margin-bottom: 14px; }
.screens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.screens img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.btn {
  display: inline-block;
  background: #6d28d9;
  color: #fff;
  border-radius: 2px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
  text-align: center;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.btn-full { width: 100%; display: block; }

/* Subscribe form */
.subscribe-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.subscribe-wrap .card { padding: 32px; }
.subscribe-wrap h2 { text-align: center; }
.subscribe-sub {
  text-align: center;
  color: #777;
  margin-bottom: 22px;
}
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #444;
  font-weight: 500;
}
input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
input:focus {
  border-color: #6d28d9;
  box-shadow: 0 0 0 2px rgba(109, 40, 217, 0.125);
}
.form-success {
  margin-top: 16px;
  padding: 12px;
  background: #ede9fe;
  color: #6d28d9;
  border-radius: 6px;
  text-align: center;
  font-size: 15px;
  display: none;
}
.form-success.show { display: block; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #6d28d9;
  cursor: pointer;
}
.form-consent label {
  cursor: pointer;
  user-select: none;
}
.form-consent a { color: #6d28d9; }
.form-error {
  margin-top: 10px;
  padding: 10px 12px;
  background: #fef2f2;
  color: #b91c1c;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  display: none;
}
.form-error.show { display: block; }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.75);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border-top: 3px solid #6d28d9;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 15px; margin-bottom: 0; }

/* How we pick */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 24px;
  counter-reset: step;
}
.step {
  background: rgba(255,255,255,0.75);
  border-radius: 8px;
  padding: 24px 22px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #6d28d9;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: 14px; margin-bottom: 0; color: #666; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.stat {
  text-align: center;
  background: rgba(255,255,255,0.75);
  border-radius: 8px;
  padding: 26px 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #6d28d9;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label { font-size: 14px; color: #666; }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.testimonial {
  background: rgba(255,255,255,0.75);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.testimonial-quote {
  font-size: 15px;
  color: #444;
  margin-bottom: 14px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ede9fe;
  color: #6d28d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.testimonial-name { font-weight: 600; color: #222; font-size: 14px; line-height: 1.2; }
.testimonial-meta { color: #888; font-size: 13px; }

/* FAQ */
.faq {
  max-width: 800px;
  margin: 24px auto 0;
}
.faq-item {
  background: rgba(255,255,255,0.75);
  border-radius: 8px;
  padding: 18px 22px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  margin-bottom: 12px;
}
.faq-item summary {
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: #0a0a0a;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: #6d28d9;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 15px;
  color: #555;
}

/* Genres */
.genres {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.genre {
  background: rgba(255,255,255,0.75);
  border-radius: 8px;
  padding: 26px 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  text-align: center;
  border-left: 3px solid #6d28d9;
}
.genre-name {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.genre-count { font-size: 13px; color: #888; }

/* Section headers */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 8px;
}
.section-head h2 { margin-bottom: 10px; }
.section-head p { color: #666; }

/* Legal pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 { margin-top: 28px; }
.legal-content ul, .legal-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-content li { margin-bottom: 8px; }

/* Footer */
.footer {
  text-align: center;
  color: #999;
  padding: 32px 0;
  font-size: 14px;
}
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 960px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .genres { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.3rem; }
  .hero { padding: 56px 0; }
  section { padding: 40px 0; }
  .nav-inner { flex-wrap: wrap; gap: 16px; }
  .nav-links { gap: 18px; }
  .subscribe-wrap .card { padding: 24px; }
  body { font-size: 16px; }
  .catalog { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}
