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

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

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

h1 { font-size: 2rem; line-height: 1.25; margin-bottom: 16px; }
h2 { font-size: 1.35rem; margin-bottom: 16px; }
h3 { font-size: 1.1rem; margin-bottom: 12px; }

p { margin-bottom: 12px; }

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

a { color: #0d9488; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Cookie banner */
.cookie-banner {
  padding: 14px 0;
  font-size: 14px;
}
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #0d9488;
  color: #fff;
  border-radius: 6px;
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}
.cookie-banner button:hover { opacity: 0.85; }
.hidden { display: none; }

/* Navbar */
.site-header { padding: 16px 0; }
.site-logo {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  color: #0a0a0a;
  margin-bottom: 12px;
}
.site-logo:hover { text-decoration: none; }
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.nav-links a { color: #0a0a0a; font-weight: 500; }
.nav-links a:hover { color: #0d9488; text-decoration: none; }

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

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

.about-inner { max-width: 800px; margin: 0 auto; }

/* Cards */
.card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }

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

.game-card { display: flex; flex-direction: column; }
.game-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.game-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.game-title-row h3 { margin-bottom: 4px; }
.game-developer { color: #999; font-size: 13px; }
.badge {
  display: inline-block;
  background: #ccfbf1;
  color: #0d9488;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.game-desc { margin-bottom: 14px; }
.game-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.game-shots img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.btn {
  display: inline-block;
  background: #0d9488;
  color: #fff;
  border-radius: 6px;
  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-block { width: 100%; display: block; }
.game-card .btn { margin-top: auto; }

/* Gallery (general) */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Subscribe form */
.subscribe-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
}
.subscribe-card h2 { text-align: center; }
.subscribe-sub {
  text-align: center;
  color: #777;
  margin-bottom: 24px;
}
.form-row { margin-bottom: 14px; }
label {
  display: block;
  font-size: 14px;
  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;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Inter', sans-serif;
  background: #fff;
}
input:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 2px #0d948820;
}
.success-msg {
  margin-top: 16px;
  padding: 12px;
  background: #ccfbf1;
  border-radius: 6px;
  color: #0d9488;
  text-align: center;
  font-size: 14px;
}
.error-msg {
  margin-top: 8px;
  padding: 10px 12px;
  background: #fef2f2;
  border-radius: 6px;
  color: #b91c1c;
  font-size: 13px;
}
.form-consent { margin-bottom: 18px; }
.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;
  cursor: pointer;
  accent-color: #0d9488;
}
.consent-label a { color: #0d9488; }

/* How it works */
.steps-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.steps-list li {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 8px;
  padding: 18px 20px;
  display: grid;
  gap: 4px;
}
.steps-list strong {
  color: #0a0a0a;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.steps-list span { color: #555; font-size: 14px; line-height: 1.55; }

/* FAQ */
.faq-list { display: grid; gap: 12px; margin-top: 16px; }
.faq-list dt {
  color: #0a0a0a;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1rem;
}
.faq-list dd {
  margin: 4px 0 0;
  color: #555;
  font-size: 14.5px;
  line-height: 1.6;
}

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

/* Footer */
.site-footer {
  text-align: center;
  color: #999;
  padding: 32px 0;
  font-size: 14px;
}
.site-footer a { color: #0d9488; margin: 0 8px; }
.site-footer a[href^="mailto:"] { margin: 0; }

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  .hero { padding: 56px 0; }
  section { padding: 36px 0; }
  .subscribe-card { padding: 24px; }
  .nav-links { gap: 16px; font-size: 14px; }
  .game-shots { grid-template-columns: 1fr 1fr; }
}
