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

body {
  background: linear-gradient(200deg, #ffe4e6, #fff1f2);
  background-attachment: fixed;
  font-family: 'Karla', sans-serif;
  color: #444;
  line-height: 1.65;
  font-size: 17px;
  min-height: 100vh;
}

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

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

p { margin-bottom: 14px; line-height: 1.7; }

a { color: #e11d48; 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.9);
  padding: 12px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #e11d48;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 6px 18px;
  cursor: pointer;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
}
.cookie-banner.hidden { display: none; }

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

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

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

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

/* Card */
.card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}

/* Games grid */
.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: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}
.game-title-block { flex: 1; min-width: 0; }
.game-title-block h3 { margin-bottom: 4px; word-break: break-word; }
.game-developer { font-size: 13px; color: #777; }
.badge {
  display: inline-block;
  background: rgba(225, 29, 72, 0.1);
  color: #e11d48;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}
.game-desc { font-size: 15px; margin-bottom: 14px; }
.game-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.game-shots img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
}
.btn {
  background: #e11d48;
  color: #fff;
  border-radius: 2px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Karla', sans-serif;
  transition: opacity 0.2s;
  display: inline-block;
  text-align: center;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.btn-full { width: 100%; padding: 10px; font-weight: 500; }
.game-card .btn { margin-top: auto; }

/* Form */
.form-wrap { max-width: 560px; margin: 0 auto; }
.form-wrap .card { padding: 32px; }
.form-wrap p.subtitle { color: #777; margin-bottom: 20px; }
form .field { margin-bottom: 14px; }
label { display: block; font-size: 14px; margin-bottom: 6px; color: #444; }
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: 'Karla', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
input:focus {
  border-color: #e11d48;
  box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.125);
}
.success-msg {
  margin-top: 16px;
  padding: 12px;
  background: rgba(225, 29, 72, 0.08);
  color: #e11d48;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}
.success-msg.hidden { display: none; }

.consent-field { margin: 4px 0 14px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: normal;
}
.consent-label input[type="checkbox"] {
  margin: 3px 0 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #e11d48;
}
.consent-label a { color: #e11d48; }
.form-error {
  margin-top: 8px;
  padding: 10px 12px;
  background: #fef2f2;
  border-radius: 6px;
  color: #b91c1c;
  font-size: 13px;
}
.form-error.hidden { display: none; }

/* FAQ */
.faq-list { display: grid; gap: 10px; margin-top: 16px; }
.faq-list dt {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  color: #111;
  margin-top: 12px;
  font-size: 1rem;
}
.faq-list dd {
  margin: 4px 0 0;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

/* Footer */
footer {
  text-align: center;
  color: #777;
  padding: 32px 0;
  font-size: 14px;
}
footer a { color: #777; margin: 0 8px; }
footer a:hover { color: #e11d48; }

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

/* Steps */
.steps { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e11d48;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.step-body h3 { margin-bottom: 4px; }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .hero-content { max-width: 100%; }
  .navbar { flex-direction: column; align-items: flex-start; }
  .nav-links { gap: 14px; }
  .form-wrap .card { padding: 24px; }
  section { padding: 36px 0; }
  .games-grid { grid-template-columns: 1fr; }
}
