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

body {
  background: linear-gradient(170deg, #fef3c7, #fffbeb);
  background-attachment: fixed;
  font-family: 'Outfit', sans-serif;
  color: #555;
  line-height: 1.65;
  font-size: 15px;
  min-height: 100vh;
}

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

h1 { font-size: 2.25rem; margin-bottom: 16px; }
h2 { font-size: 1.4rem; margin-bottom: 16px; }
h3 { font-size: 1.15rem; margin-bottom: 10px; }

p { margin-bottom: 14px; }
a { color: #b45309; text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Cookie banner */
.cookie-banner {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 14px 20px;
  font-size: 14px;
}
.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.cookie-inner p { margin: 0; }
.cookie-btn {
  background: #b45309;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 8px 18px;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }

/* Navbar */
.navbar {
  background: transparent;
  padding: 16px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.site-logo {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0a0a0a;
}
.site-logo:hover { text-decoration: none; }
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  text-transform: uppercase;
  font-size: 13px;
  color: #444;
  letter-spacing: 0.5px;
}
.nav-links a:hover { color: #b45309; text-decoration: none; }

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

/* Hero */
.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-text { flex: 0 0 60%; }
.hero-img { flex: 0 0 40%; display: flex; justify-content: center; }
.hero-img img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(180,83,9,0.18);
}
.btn-hero { margin-top: 14px; padding: 12px 30px; }
.hero-note { font-size: 12px; color: #999; margin-top: 12px; max-width: 460px; }
.age-tag {
  display: inline-block;
  background: #7c2d12;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

/* Slot preview in hero */
.slot-preview {
  display: flex;
  gap: 10px;
  background: linear-gradient(160deg, #fef3c7, #fde68a);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(180,83,9,0.18);
}
.slot-preview .reel {
  background: #fff;
  border-radius: 10px;
  padding: 10px 8px;
  min-width: 64px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.slot-preview .sym {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: block;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
}
.slot-preview .sym-a { background: linear-gradient(135deg, #b45309, #f59e0b); }
.slot-preview .sym-b { background: linear-gradient(135deg, #7c2d12, #b45309); }
.slot-preview .sym-c { background: linear-gradient(135deg, #fde68a, #f59e0b); }
.slot-preview .sym-d { background: linear-gradient(135deg, #92400e, #d97706); }

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

/* Card */
.card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 6px 20px rgba(180,83,9,0.10); }

/* Game card (single featured) */
.game-card { display: flex; flex-direction: column; max-width: 760px; margin: 0 auto; }
.game-card.featured { padding: 32px; }
.game-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.game-head img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  flex-shrink: 0;
}
.game-head h3 { margin-bottom: 4px; }
.badge {
  display: inline-block;
  background: #b45309;
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 8px;
}
.dev { font-size: 13px; color: #999; }
.game-desc { font-size: 14px; margin-bottom: 14px; }
.shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.shots img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.btn {
  background: #b45309;
  color: #fff;
  border-radius: 2px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  transition: opacity 0.2s;
  margin-top: auto;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.btn-block { width: 100%; }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.feature-card { padding: 22px; }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(160deg, #fef3c7, #fde68a);
  color: #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-icon svg {
  width: 26px;
  height: 26px;
}
.feature-card p { font-size: 14px; margin-bottom: 0; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.testimonial { padding: 22px; }
.testimonial-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #b45309;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
}
.testimonial-name { font-weight: 600; color: #0a0a0a; font-size: 14px; }
.testimonial-meta { font-size: 12px; color: #999; }
.testimonial p { font-size: 14px; font-style: italic; }
.stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
}

/* FAQ */
.faq-inner { max-width: 800px; }
.faq-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 14px 18px;
  transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: 0 6px 20px rgba(180,83,9,0.08); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #0a0a0a;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: #b45309;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
}

/* Subscribe */
.subscribe-card { max-width: 560px; margin: 0 auto; padding: 32px; }
.subscribe-card h2 { text-align: center; }
.subscribe-sub { text-align: center; color: #999; margin-bottom: 24px; font-size: 14px; }
.form-row { margin-bottom: 14px; }
label { display: block; font-size: 13px; margin-bottom: 6px; color: #555; }
input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
input:focus {
  border-color: #b45309;
  box-shadow: 0 0 0 2px rgba(180,83,9,0.15);
}
.success {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(180,83,9,0.1);
  border-radius: 6px;
  color: #7c2d12;
  font-size: 14px;
  display: none;
}
.success.show { display: block; }

/* Legal & content pages */
.content-block { max-width: 800px; }
.content-block h2 { margin-top: 28px; }
.content-block ul { margin: 10px 0 14px 22px; }
.content-block li { margin-bottom: 6px; }

/* Services list */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

/* Featured game card extras */
.game-logo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: linear-gradient(160deg, #b45309, #7c2d12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(124,45,18,0.25);
}
.game-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 800;
  color: #fde68a;
  line-height: 1;
}
.game-points {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}
.game-points li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

/* Game embed (game.html) */
.game-disclaimer {
  background: rgba(124,45,18,0.08);
  border: 1px solid rgba(124,45,18,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #7c2d12;
  margin-bottom: 20px;
  text-align: center;
}
.game-title {
  text-align: center;
  margin-bottom: 18px;
}
.game-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(180,83,9,0.18);
}
.game-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.game-info {
  max-width: 1100px;
  margin: 24px auto 0;
  font-size: 14px;
  color: #555;
}
.game-info p { margin-bottom: 10px; }
.game-back {
  text-align: center;
  margin-top: 28px;
}
.game-back a { font-size: 14px; }

/* Footer */
footer {
  text-align: center;
  color: #999;
  padding: 32px 0;
  font-size: 14px;
}
footer a { color: #b45309; margin: 0 6px; }
footer .responsible {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 12px;
  color: #7c2d12;
}

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate.is-open { display: flex; }
.age-gate-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.age-gate-badge {
  display: inline-block;
  background: #7c2d12;
  color: #fde68a;
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 28px;
  padding: 8px 22px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.age-gate-card h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.age-gate-card p { font-size: 14px; }
.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 12px;
}
.age-gate-actions .btn { width: 100%; padding: 12px 24px; }
.btn-link {
  background: transparent;
  border: none;
  color: #999;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-decoration: underline;
  padding: 6px 12px;
}
.btn-link:hover { color: #7c2d12; }
.age-gate-note {
  font-size: 12px;
  color: #999;
  margin: 0;
}
.age-gate-blocked {
  position: fixed;
  inset: 0;
  background: #fef3c7;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  color: #7c2d12;
}

/* Consent checkbox */
.consent-row { margin-top: 4px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 0;
}
.consent-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: #b45309;
  cursor: pointer;
}

/* Disclaimer section */
#disclaimer { padding-top: 32px; padding-bottom: 32px; }
.disclaimer-inner {
  max-width: 900px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(124,45,18,0.15);
  border-radius: 12px;
  padding: 32px;
}
.disclaimer-inner h1 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
}
.disclaimer-inner p {
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
}
.disclaimer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 20px 0;
  padding: 0;
}
.disclaimer-links a {
  font-size: 13px;
  color: #b45309;
}
.disclaimer-images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
.disclaimer-images a {
  display: inline-flex;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.disclaimer-images a:hover { opacity: 1; }
.disclaimer-images img {
  display: block;
  height: 40px;
  width: auto;
  background: #000;
  padding: 6px 12px;
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-text, .hero-img { flex: 1 1 100%; }
  .nav-links { gap: 14px; }
  section { padding: 48px 0; }
  .subscribe-card { padding: 24px; }
  .game-card.featured { padding: 22px; }
  .disclaimer-inner { padding: 22px; }
}
