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

body {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  background-attachment: fixed;
  font-family: 'DM Sans', sans-serif;
  color: #444;
  line-height: 1.65;
  min-height: 100vh;
  font-size: 16px;
}

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

h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 16px; color: #111; }
h2 { font-size: 1.5rem; margin-bottom: 16px; color: #111; }
h3 { font-size: 1.2rem; margin-bottom: 12px; color: #111; }

p { color: #333; margin-bottom: 12px; }

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

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

/* Cookie Banner */
.cookie-banner {
  background: rgba(255,255,255,0.85);
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}
.cookie-banner.hidden { display: none; }
.cookie-banner button {
  background: #1d4ed8;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 8px 18px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: opacity 0.2s;
}
.cookie-banner button:hover { opacity: 0.85; }

/* Navbar */
.site-header { padding: 16px 0; background: transparent; }
.site-logo {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.site-logo a { color: #1a1a1a; text-decoration: none; }
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.nav-links a { color: #1d4ed8; font-size: 15px; }

/* 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; }
.about-inner p { margin-bottom: 14px; }

/* Cards */
.card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 6px 18px rgba(29,78,216,0.08); }

/* Games Catalog */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.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;
  object-fit: cover;
}
.game-title-row h3 { margin-bottom: 4px; }
.game-developer { color: #888; font-size: 13px; }
.badge {
  display: inline-block;
  background: #1d4ed8;
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.game-desc { font-size: 15px; margin-bottom: 14px; }
.game-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.game-shots img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}
.btn {
  display: inline-block;
  background: #1d4ed8;
  color: #fff;
  border-radius: 2px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
  text-align: center;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.game-card .btn { margin-top: auto; }

/* Subscribe */
.subscribe-wrap { max-width: 560px; margin: 0 auto; }
.subscribe-wrap .card { padding: 32px; }
.subscribe-wrap h2 { text-align: center; }
.subscribe-sub { text-align: center; color: #888; margin-bottom: 22px; }
.form-row { margin-bottom: 14px; }
label { display: block; font-size: 14px; margin-bottom: 6px; color: #333; }
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: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
input:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 2px #1d4ed820;
}
.btn-block { width: 100%; padding: 12px; font-weight: 500; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px;
  background: rgba(29,78,216,0.08);
  border-radius: 6px;
  color: #1d4ed8;
  text-align: center;
  font-size: 14px;
}
.form-success.show { display: block; }

/* Legal pages */
.page-content { max-width: 800px; margin: 0 auto; }
.page-content h2 { margin-top: 28px; }
.page-content p, .page-content li { margin-bottom: 12px; color: #333; }
.page-content ul { padding-left: 22px; margin-bottom: 14px; }

/* What we do list */
.wwd-item { margin-bottom: 22px; }

/* Footer */
.site-footer {
  text-align: center;
  color: #888;
  padding: 32px 0;
  font-size: 14px;
}
.site-footer a { color: #1d4ed8; }
.site-footer .copy { margin-top: 8px; }

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero { padding: 56px 0; }
  section { padding: 36px 0; }
  .subscribe-wrap .card { padding: 24px; }
  .nav-links { gap: 6px 16px; font-size: 14px; }
  .game-shots img { height: 130px; }
}
