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

body {
  background: linear-gradient(135deg, #fde68a, #fefce8);
  background-attachment: fixed;
  font-family: 'Source Sans 3', sans-serif;
  color: #4a4a4a;
  line-height: 1.7;
  font-size: 17px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'Libre Baskerville', serif;
  color: #1a1a1a;
  font-weight: 700;
}

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

p { margin-bottom: 14px; }

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

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

img { max-width: 100%; display: block; }

/* Cookie banner */
.cookie-banner {
  background: rgba(255,255,255,0.9);
  padding: 14px 20px;
  text-align: center;
  font-size: 15px;
}
.cookie-banner button {
  margin-left: 12px;
  background: #d97706;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  transition: opacity 0.2s;
}
.cookie-banner button:hover { opacity: 0.85; }

/* Header / Navbar */
.site-header { padding: 16px 0; }
.site-logo {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #1a1a1a;
}
.site-logo:hover { text-decoration: none; }
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.main-nav a {
  color: #4a4a4a;
  font-weight: 600;
  font-size: 15px;
}
.main-nav a:hover { color: #d97706; text-decoration: none; }

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

.hero, .about-block, .page-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #d97706;
  color: #fff;
  border-radius: 20px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
  font-weight: 600;
  transition: opacity 0.2s;
  text-align: center;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.btn-block { width: 100%; padding: 12px; font-weight: 500; }

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

/* Games grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.game-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.game-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}
.game-title { margin-bottom: 4px; font-size: 1.15rem; }
.game-dev { color: #808080; font-size: 14px; }
.badge {
  display: inline-block;
  background: rgba(217,119,6,0.12);
  color: #d97706;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}
.game-desc { font-size: 15px; color: #4a4a4a; margin-bottom: 14px; }
.shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.shots img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

/* Section heading center */
.section-head { text-align: center; max-width: 800px; margin: 0 auto 12px; }
.section-head p { color: #808080; }

/* Subscribe / contact form */
.form-wrap { max-width: 560px; margin: 0 auto; }
.form-wrap .card { padding: 32px; }
.form-wrap label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #4a4a4a;
  font-weight: 600;
}
.form-wrap input {
  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: inherit;
  margin-bottom: 14px;
  background: #fff;
}
.form-wrap input:focus {
  border-color: #d97706;
  box-shadow: 0 0 0 2px rgba(217,119,6,0.13);
}
.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 4px 0 18px; font-size: 13px; line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px;
  accent-color: #d97706; cursor: pointer; margin-bottom: 0;
}
.form-consent label { margin-bottom: 0; font-weight: 400; color: #555; cursor: pointer; font-size: 13px; }
.form-consent a { color: #d97706; }
.form-success {
  display: none;
  margin-top: 14px;
  color: #15803d;
  font-size: 15px;
  text-align: center;
}
.form-success.visible { display: block; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #1a1a1a;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
}
.faq-item[open] summary { color: #d97706; }
.faq-item p { margin-top: 10px; }

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

/* Footer */
.site-footer {
  text-align: center;
  color: #808080;
  padding: 32px 0;
  font-size: 14px;
}
.site-footer a { color: #808080; margin: 0 6px; }
.site-footer a:hover { color: #d97706; }
.footer-links { margin-bottom: 8px; }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  body { font-size: 16px; }
  .form-wrap .card { padding: 24px; }
  section { padding: 40px 0; }
  .main-nav ul { gap: 14px; font-size: 14px; }
  .shots img { height: 130px; }
  .games-grid { grid-template-columns: 1fr; }
}
