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

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

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

h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 16px; }
h2 { font-size: 1.75rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }

p { color: #333; margin-bottom: 12px; 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 {
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  color: #444;
}
.cookie-banner a { margin: 0 8px; }
.cookie-banner button {
  background: #e11d48;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 18px;
  margin-left: 10px;
  cursor: pointer;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  transition: opacity 0.2s;
}
.cookie-banner button:hover { opacity: 0.85; }

/* Header / Nav */
.site-header { padding: 16px 0; }
.site-logo {
  display: block;
  text-align: center;
  font-size: 1.75rem;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.site-logo:hover { text-decoration: none; }
.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.main-nav a {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
}
.main-nav a:hover { color: #e11d48; text-decoration: none; }

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

.hero, .about-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero p { color: #333; font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-block;
  background: #e11d48;
  color: #fff;
  border-radius: 20px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
  text-align: center;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }

/* Cards */
.card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(2px);
  border: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 14px rgba(0,0,0,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;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.game-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.game-meta { flex: 1; }
.game-title {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.game-dev { font-size: 13px; color: #888; }

.badge {
  display: inline-block;
  background: rgba(225, 29, 72, 0.1);
  color: #e11d48;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-family: 'Archivo', sans-serif;
  letter-spacing: 0.3px;
}

.game-desc { font-size: 14px; margin-bottom: 14px; flex: 1; }

.shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.shots img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}

.game-card .btn { align-self: stretch; }

/* About */
.about-block { padding: 48px 0; }
.about-block p { margin-bottom: 14px; }

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

form .field { margin-bottom: 14px; }
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;
  font-family: 'Karla', sans-serif;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus {
  border-color: #e11d48;
  box-shadow: 0 0 0 2px rgba(225,29,72,0.12);
}
.btn-block {
  width: 100%;
  padding: 12px;
  border-radius: 20px;
  font-weight: 500;
}
.success-msg {
  display: none;
  margin-top: 16px;
  padding: 12px;
  background: rgba(225,29,72,0.08);
  color: #e11d48;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
}
.success-msg.show { display: block; }

/* Generic page content */
.page-content { padding: 48px 0; }
.page-content .card { max-width: 900px; margin: 0 auto; padding: 36px; }
.page-content h1 { font-size: 2.25rem; margin-bottom: 20px; text-align: center; }
.page-content h2 { font-size: 1.4rem; margin-top: 24px; margin-bottom: 10px; }
.page-content p, .page-content li { margin-bottom: 10px; font-size: 15px; }
.page-content ul { padding-left: 22px; margin-bottom: 14px; }

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

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

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.45rem; }
  section { padding: 36px 0; }
  .subscribe-card { padding: 24px; }
  .page-content .card { padding: 24px; }
  .main-nav ul { gap: 6px 16px; }
  .main-nav a { font-size: 14px; }
}
