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

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

h1, h2, h3, .site-logo {
  font-family: 'Lora', serif;
  color: #111;
  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: 12px; }

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

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

/* Cookie banner */
.cookie-banner {
  background: rgba(255,255,255,0.95);
  padding: 12px 0;
  font-size: 15px;
}
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #2563eb;
  color: #fff;
  border-radius: 20px;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  transition: opacity 0.2s;
}
.cookie-banner button:hover { opacity: 0.85; }

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

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

.hero-inner { max-width: 60%; text-align: left; }
.hero-inner p { font-size: 1.05rem; color: #444; }

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

.section-lede { color: #555; margin-bottom: 24px; }

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

/* Catalog */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.game-card { display: flex; flex-direction: column; }
.game-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.game-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}
.game-title-block h3 { margin-bottom: 4px; font-size: 1.15rem; }
.developer { color: #888; font-size: 14px; }
.badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.game-desc { font-size: 15px; color: #444; 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;
  display: block;
}
.btn {
  background: #2563eb;
  color: #fff;
  border-radius: 20px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  text-align: center;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }

/* Feature grid (value props) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 8px;
  padding: 22px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-card p { font-size: 15px; color: #555; margin-bottom: 0; }

/* Review process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.process-step {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 8px;
  padding: 20px;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}
.process-step h3 { font-size: 1rem; margin-bottom: 6px; }
.process-step p { font-size: 14px; color: #555; margin-bottom: 0; }

/* Tips list */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.tip {
  background: rgba(255,255,255,0.9);
  border-left: 3px solid #2563eb;
  border-radius: 6px;
  padding: 16px 20px;
}
.tip h3 { font-size: 1rem; margin-bottom: 6px; }
.tip p { font-size: 15px; color: #555; margin-bottom: 0; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.faq-item p { font-size: 15px; color: #555; margin-bottom: 0; }

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  display: block;
  line-height: 1.1;
}
.stat-item .stat-label {
  font-size: 14px;
  color: #555;
}

/* Subscribe form */
.subscribe-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
}
.subscribe-card h2, .subscribe-card .subtitle {
  text-align: center;
}
.subtitle { color: #555; margin-bottom: 20px; }

form .field { margin-bottom: 14px; }
form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  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;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Lato', sans-serif;
  background: #fff;
}
input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.13);
}
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.consent-field input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #2563eb;
  cursor: pointer;
}
.consent-field label {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  line-height: 1.45;
  margin-bottom: 0;
  cursor: pointer;
}
.consent-field a { color: #2563eb; }
.submit-btn {
  width: 100%;
  padding: 12px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  transition: opacity 0.2s;
}
.submit-btn:hover { opacity: 0.85; }
.success-msg {
  margin-top: 14px;
  padding: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: #1e40af;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  display: none;
}
.success-msg.show { display: block; }

/* Legal/content pages */
.content-page h1 { margin-bottom: 24px; }
.content-page h2 { margin-top: 28px; }
.content-page p, .content-page li { margin-bottom: 12px; }
.content-page ul { padding-left: 22px; margin-bottom: 16px; }

/* Guides */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

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

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .hero-inner { max-width: 100%; }
  nav.navbar .container { flex-direction: column; align-items: flex-start; }
  .nav-links { gap: 14px; }
  .subscribe-card { padding: 24px; }
  .shots img { height: 110px; }
  section { padding: 36px 0; }
  .catalog-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}
