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

body {
  background: linear-gradient(160deg, #e0f2fe, #eff6ff);
  background-attachment: fixed;
  font-family: 'Nunito', sans-serif;
  color: #333;
  line-height: 1.7;
  font-size: 17px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #111;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.75rem; margin-bottom: 16px; }
h2 { font-size: 1.6rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; }

p { margin-bottom: 14px; }

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

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

/* Cookie banner */
.cookie-banner {
  padding: 14px 0;
  font-size: 15px;
  color: #444;
}
.cookie-banner .cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: 'Nunito', sans-serif;
}
.cookie-banner button:hover { opacity: 0.85; }

/* Navbar */
.navbar {
  padding: 16px 0;
  background: transparent;
}
.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-logo {
  font-size: 1.5rem;
  color: #111;
}
.site-logo a { color: #111; text-decoration: none; }
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px;
}
.nav-links a:hover { color: #2563eb; text-decoration: none; }

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

/* Hero */
.hero-text {
  max-width: 60%;
  text-align: left;
}
.hero-text p { color: #444; font-size: 18px; }

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

/* 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(37,99,235,0.08); }

/* 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-head img {
  width: 64px; height: 64px;
  border-radius: 12px;
  object-fit: cover;
}
.game-meta { display: flex; flex-direction: column; }
.game-title { font-size: 1.1rem; margin: 0 0 4px 0; }
.developer { font-size: 13px; color: #888; }
.badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 10px;
  width: fit-content;
}
.game-desc { color: #444; font-size: 15px; margin-bottom: 14px; }
.shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.shots img {
  width: 100%; height: 140px;
  object-fit: cover;
  border-radius: 6px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: opacity 0.2s;
  font-family: 'Nunito', sans-serif;
  text-align: center;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.btn-full { width: 100%; font-weight: 500; padding: 12px; }

/* Catalog gallery rule fallback */
.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-card .subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
  font-weight: 600;
}
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;
  font-family: 'Nunito', sans-serif;
}
input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37,99,235,0.13);
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px;
  background: #dcfce7;
  color: #14532d;
  border-radius: 6px;
  font-size: 15px;
  text-align: center;
}
.form-success.show { display: block; }

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

/* What we do list */
.wwd-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }

/* Footer */
.footer {
  text-align: center;
  color: #888;
  padding: 32px 0;
  font-size: 14px;
}
.footer a { color: #2563eb; margin: 0 6px; }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  body { font-size: 16px; }
  .hero-text { max-width: 100%; }
  .nav-links { gap: 14px; width: 100%; justify-content: flex-start; }
  .subscribe-card { padding: 24px; }
  section { padding: 48px 0; }
  .shots img { height: 110px; }
  .games-grid { grid-template-columns: 1fr; }
}

/* Consent checkbox */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 16px;
  font-size: 14px;
  color: #444;
  line-height: 1.45;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #2563eb;
  cursor: pointer;
}
.form-consent label {
  cursor: pointer;
  user-select: none;
}
.form-consent a { color: #2563eb; text-decoration: underline; }
