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

body {
  background: linear-gradient(170deg, #fbcfe8, #fdf2f8);
  background-attachment: fixed;
  min-height: 100vh;
  font-family: 'Space Grotesk', sans-serif;
  color: #4a4a4a;
  font-size: 17px;
  line-height: 1.7;
}

h1, h2, h3, .site-logo {
  font-family: 'Instrument Serif', serif;
  color: #222;
  font-weight: 700;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 1.6rem; }

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

a {
  color: #db2777;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Navbar */
.navbar {
  padding: 16px 0;
  background: transparent;
  text-align: center;
}

.site-logo {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.site-logo a {
  color: #222;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links li a {
  font-size: 15px;
  font-weight: 500;
}

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

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

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

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

.hero .badge-18 {
  font-size: 14px;
  padding: 6px 18px;
}

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

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

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

/* Card */
.card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}

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

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

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

.game-card-header-info h3 {
  font-size: 1.15rem;
  line-height: 1.3;
}

.game-genre {
  display: inline-block;
  background: #db2777;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 20px;
  margin-top: 4px;
}

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

.game-description {
  margin: 12px 0;
  font-size: 15px;
  line-height: 1.6;
}

.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;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #db2777;
  color: #fff;
  border-radius: 6px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
  text-decoration: none;
  text-align: center;
}

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

.btn-full {
  width: 100%;
}

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

.subscribe-wrapper .card {
  padding: 32px;
}

.form-heading {
  margin-bottom: 4px;
}

.form-subtitle {
  color: #808080;
  margin-bottom: 20px;
  font-size: 15px;
}

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

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

.form-group input:focus {
  border-color: #db2777;
  box-shadow: 0 0 0 2px rgba(219,39,119,0.13);
}

.form-success {
  display: none;
  color: #16a34a;
  font-size: 15px;
  margin-top: 12px;
  text-align: center;
}

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

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

.footer-links {
  margin-bottom: 8px;
}

.footer-links a {
  color: #808080;
  margin: 0 6px;
}

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

/* Age Gate */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(40, 10, 30, 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: #db2777;
  font-family: 'Instrument Serif', 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: 6px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Space Grotesk', sans-serif;
}

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

.age-gate__btn--no {
  background: #fce7f3;
  color: #db2777;
}

/* 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: 'Space Grotesk', 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: #808080;
  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;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
}

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

.cookie-banner p {
  display: inline;
}

.cookie-banner a {
  margin: 0 4px;
}

.cookie-accept-btn {
  display: inline-block;
  background: #db2777;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 18px;
  font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  margin-left: 12px;
  transition: opacity 0.2s;
}

.cookie-accept-btn:hover {
  opacity: 0.85;
}

/* Legal / Extra Pages */
.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  margin-bottom: 20px;
}

.page-content h2 {
  margin-top: 32px;
  margin-bottom: 10px;
}

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

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

.page-content ul {
  margin: 10px 0 16px 24px;
}

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

.page-content a {
  word-break: break-word;
}

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

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

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

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

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

  .subscribe-wrapper .card {
    padding: 24px;
  }

  .nav-links {
    gap: 14px;
  }

  .site-logo {
    font-size: 1.6rem;
  }
}
