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

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

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

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

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

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 {
  padding: 14px 0;
  font-size: 14px;
}
.cookie-banner .cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}
.cookie-banner p { margin: 0; }
.cookie-banner button {
  background: #e11d48;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 8px 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.cookie-banner button:hover { opacity: 0.85; }

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

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

/* Hero */
.hero .hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-text { flex: 0 0 60%; }
.hero-image { flex: 0 0 40%; display: flex; justify-content: center; }
.hero-image img { max-width: 100%; height: auto; border-radius: 16px; }
.hero h1 { margin-bottom: 18px; }

/* About */
.about-block { max-width: 800px; }
.about-block p { margin-bottom: 14px; }

/* Cards */
.card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 6px 22px rgba(225, 29, 72, 0.08); }

/* 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; gap: 14px; align-items: center; margin-bottom: 14px; }
.game-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}
.game-meta h3 { margin-bottom: 6px; }
.developer { font-size: 13px; color: #888; }
.badge {
  display: inline-block;
  background: rgba(225, 29, 72, 0.1);
  color: #e11d48;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.game-desc { font-size: 15px; margin-bottom: 14px; }
.shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.shots img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.btn {
  display: inline-block;
  background: #e11d48;
  color: #fff;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  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%; }
.game-card .btn { margin-top: auto; }

/* Forms */
.form-wrap { max-width: 560px; margin: 0 auto; }
.form-wrap .subtitle { color: #888; margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}
input, textarea {
  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: 'Outfit', sans-serif;
  background: #fff;
}
input:focus, textarea:focus {
  border-color: #e11d48;
  box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.125);
}
.success-msg {
  margin-top: 14px;
  padding: 12px;
  background: rgba(225, 29, 72, 0.08);
  color: #e11d48;
  border-radius: 6px;
  font-size: 14px;
  display: none;
}
.success-msg.show { display: block; }

/* Footer */
footer {
  text-align: center;
  color: #888;
  padding: 32px 0;
  font-size: 14px;
}
footer .foot-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  list-style: none;
}
footer a { color: #888; }
footer a:hover { color: #e11d48; }

/* Legal/QA pages */
.page-content { max-width: 800px; }
.page-content h2 { margin-top: 28px; }
.page-content h3 { margin-top: 22px; }
.page-content p, .page-content li { margin-bottom: 10px; }
.page-content ul, .page-content ol { padding-left: 22px; margin-bottom: 14px; }
.qa-item { margin-bottom: 22px; }
.qa-item h3 { margin-bottom: 6px; }

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .hero .hero-inner { flex-direction: column; }
  .hero-text, .hero-image { flex: 1 1 100%; width: 100%; }
  .nav-links { gap: 14px; }
  .card { padding: 24px; }
  section { padding: 36px 0; }
  .navbar .nav-inner { justify-content: center; flex-direction: column; }
}
