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

body {
  background: linear-gradient(135deg, #ffe4e6, #fff1f2);
  background-attachment: fixed;
  font-family: 'DM Sans', sans-serif;
  color: #4a4a4a;
  line-height: 1.75;
  font-size: 17px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'DM Sans', sans-serif;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.15rem; margin-bottom: 10px; }

p { margin-bottom: 14px; }
ul, ol { margin: 0 0 14px 20px; }
li { margin-bottom: 6px; }

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

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

.muted { color: #808080; font-size: 14px; }

/* Cookie banner */
.cookie-banner {
  padding: 14px 0;
  font-size: 14px;
  color: #4a4a4a;
}
.cookie-banner .cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-banner button {
  background: #e11d48;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 8px 18px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  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;
  justify-content: space-between;
  gap: 20px;
}
.site-logo {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
}
.site-logo a { color: inherit; text-decoration: none; }
.nav-links { display: flex; gap: 24px; list-style: none; margin: 0; }
.nav-links a {
  text-transform: uppercase;
  font-size: 13px;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}
.nav-links a:hover { color: #e11d48; text-decoration: none; }

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

/* Hero */
.hero-content { max-width: 60%; text-align: left; }

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

/* Games catalog */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.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;
}
.card:hover { box-shadow: 0 6px 20px rgba(225, 29, 72, 0.08); }

.game-head {
  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 { min-width: 0; }
.game-title-block h3 { margin-bottom: 4px; word-wrap: break-word; }
.game-dev { font-size: 13px; color: #808080; }

.badge {
  display: inline-block;
  background: rgba(225, 29, 72, 0.1);
  color: #e11d48;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-weight: 500;
}

.game-desc { font-size: 15px; color: #4a4a4a; margin-bottom: 14px; }

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

.btn {
  display: inline-block;
  background: #e11d48;
  color: #fff;
  border-radius: 2px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  text-align: center;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.btn-block { display: block; width: 100%; }

/* Form */
.form-card { max-width: 560px; margin: 0 auto; padding: 32px; }
.form-card h2 { margin-bottom: 6px; }
.form-card .subtitle { color: #808080; margin-bottom: 20px; }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #4a4a4a;
}
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: inherit;
  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.13);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 18px;
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: #e11d48;
  cursor: pointer;
}
.form-consent label {
  margin: 0;
  font-size: 13px;
  cursor: pointer;
}
.form-consent a { color: #e11d48; }

.success-msg {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(225, 29, 72, 0.08);
  color: #e11d48;
  border-radius: 6px;
  font-size: 14px;
  display: none;
}
.success-msg.visible { display: block; }

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

/* Legal page content */
.page-content { max-width: 800px; margin: 0 auto; }
.page-content h2 { margin-top: 28px; }
.page-content p, .page-content li { font-size: 16px; }

/* Knowledge base */
.kb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.3rem; }
  .hero-content { max-width: 100%; }
  .nav-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav-links { flex-wrap: wrap; gap: 14px; }
  section { padding: 48px 0; }
  .form-card { padding: 24px; }
  .shots img { height: 110px; }
  .games-grid { grid-template-columns: 1fr; }
}
