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

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

h1, h2, h3, .site-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #0a0a0a;
}

h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 1.75rem; margin-bottom: 20px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }

p { margin-bottom: 14px; }

a { color: #0369a1; 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: 14px 20px;
  text-align: center;
  font-size: 14px;
}
.cookie-banner button {
  margin-left: 14px;
  background: #0369a1;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 18px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  transition: opacity 0.2s;
}
.cookie-banner button:hover { opacity: 0.85; }

/* Navbar */
.navbar {
  padding: 16px 0;
  background: transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-logo {
  font-size: 1.4rem;
  color: #0a0a0a;
}
.site-logo:hover { text-decoration: none; }
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  color: #0a0a0a;
  font-weight: 500;
  font-size: 15px;
}

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

/* Hero */
.hero-inner {
  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: 16px; }
.hero p { font-size: 17px; }

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

/* Games catalog */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.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(3,105,161,0.08); }

.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-title h3 { margin-bottom: 4px; }
.game-dev { font-size: 13px; color: #999; }
.badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-weight: 500;
}
.game-desc { font-size: 14px; 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;
}
.btn {
  display: inline-block;
  background: #0369a1;
  color: #fff;
  border-radius: 20px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  transition: opacity 0.2s;
  text-align: center;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.btn-block { display: block; width: 100%; }

/* Subscribe form */
.subscribe-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.subscribe-wrap .card { padding: 32px; }
.subscribe-wrap h2 { text-align: center; }
.subscribe-wrap .subtitle {
  text-align: center;
  color: #999;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #555;
}
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: inherit;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
input:focus {
  border-color: #0369a1;
  box-shadow: 0 0 0 2px #0369a120;
}
.form-success {
  margin-top: 16px;
  padding: 12px;
  background: #e0f2fe;
  color: #0369a1;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  display: none;
}
.form-success.show { display: block; }

/* Footer */
footer {
  text-align: center;
  color: #999;
  padding: 32px 0;
  font-size: 14px;
}
footer .foot-links {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
footer .foot-links a { color: #555; }

/* Legal pages */
.page-content { max-width: 800px; margin: 0 auto; }
.page-content h2 { margin-top: 28px; }
.page-content h3 { margin-top: 20px; }
.page-content ul { margin: 10px 0 16px 22px; }
.page-content li { margin-bottom: 8px; }

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.step-num {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #0369a1;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.5rem; }
  .hero-inner { flex-direction: column; }
  .hero-text, .hero-image { flex: 1 1 100%; }
  .nav-inner { flex-wrap: wrap; gap: 16px; }
  .nav-links { gap: 16px; flex-wrap: wrap; }
  .subscribe-wrap .card { padding: 24px; }
  section { padding: 40px 0; }
}
