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

body {
  background: linear-gradient(170deg, #fef3c7, #fffbeb);
  background-attachment: fixed;
  min-height: 100vh;
  font-family: 'DM Sans', sans-serif;
  color: #3a3a3a;
  font-size: 17px;
  line-height: 1.7;
}

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

h1 { font-size: 2.75rem; line-height: 1.2; margin-bottom: 18px; }
h2 { font-size: 1.6rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
p { margin-bottom: 14px; }

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

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

.muted { color: #7a7a7a; font-size: 0.9rem; }

/* Cookie banner */
.cookie-banner {
  padding: 14px 0;
  font-size: 0.95rem;
}
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; }
.cookie-banner button {
  background: #b45309;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  transition: opacity 0.2s;
}
.cookie-banner button:hover { opacity: 0.85; }
.hidden { display: none; }

/* Navbar */
.navbar { padding: 16px 0; background: transparent; }
.navbar .container {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.site-logo { font-size: 1.5rem; color: #1f1f1f; }
.site-logo a { color: inherit; text-decoration: none; }
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a { color: #3a3a3a; font-weight: 500; }
.nav-links a:hover { color: #b45309; text-decoration: none; }

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

/* Hero */
.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-text { flex: 0 0 60%; }
.hero-image { flex: 0 0 40%; text-align: center; }
.hero-image img { max-width: 100%; height: auto; border-radius: 12px; }

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

/* Card */
.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 6px 24px rgba(0,0,0,0.06); }

/* Games grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.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;
  flex-shrink: 0;
}
.game-title { margin-bottom: 4px; }
.badge {
  display: inline-block;
  background: rgba(180, 83, 9, 0.12);
  color: #b45309;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-right: 8px;
}
.dev { font-size: 0.85rem; color: #7a7a7a; }
.shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0 18px;
}
.shots img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.btn {
  display: inline-block;
  background: #b45309;
  color: #fff;
  border-radius: 6px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  text-align: center;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.btn-block { width: 100%; display: block; }

/* Subscribe form */
.form-wrap { max-width: 560px; margin: 0 auto; }
.form-wrap.card { padding: 32px; }
.form-wrap h2 { text-align: center; }
.form-wrap .subtitle { text-align: center; color: #7a7a7a; margin-bottom: 24px; }
.form-field { margin-bottom: 14px; }
label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #3a3a3a;
}
input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus {
  border-color: #b45309;
  box-shadow: 0 0 0 2px rgba(180, 83, 9, 0.125);
}
.success {
  margin-top: 16px;
  padding: 12px;
  background: rgba(180, 83, 9, 0.08);
  color: #b45309;
  border-radius: 6px;
  text-align: center;
  font-size: 0.95rem;
}

/* Reasons / lists */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.legal-content { max-width: 820px; }
.legal-content h2 { margin-top: 28px; }
.legal-content ul { margin: 10px 0 14px 22px; }
.legal-content li { margin-bottom: 6px; }

/* Footer */
.footer {
  text-align: center;
  color: #7a7a7a;
  padding: 32px 0;
  font-size: 0.92rem;
}
.footer a { color: #7a7a7a; margin: 0 6px; }
.footer a:hover { color: #b45309; }

/* Consent checkbox */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 18px;
  font-size: 0.88rem;
  color: #3a3a3a;
  line-height: 1.45;
}
.form-consent input[type="checkbox"] {
  width: auto;
  margin: 3px 0 0;
  flex-shrink: 0;
  accent-color: #b45309;
  cursor: pointer;
}
.form-consent label {
  margin: 0;
  font-size: inherit;
  cursor: pointer;
}
.form-consent a { color: #b45309; }

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero .container { flex-direction: column; }
  .hero-text, .hero-image { flex: 1 1 100%; }
  .navbar .container { gap: 16px; }
  .nav-links { gap: 14px; }
  .form-wrap.card { padding: 24px; }
  .games-grid { grid-template-columns: 1fr; }
  section { padding: 40px 0; }
}
