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

body {
  background: linear-gradient(170deg, #ffe4e6, #fff1f2);
  background-attachment: fixed;
  font-family: 'Space Grotesk', sans-serif;
  color: #3a3a3a;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'Instrument Serif', serif;
  color: #1f1f1f;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3rem; margin-bottom: 16px; }
h2 { font-size: 1.75rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }

p { margin-bottom: 12px; }

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

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

/* Cookie banner: high-visibility bottom sheet */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.cookie-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: cookieFadeIn 0.35s ease forwards;
  pointer-events: none;
}
.cookie-inner {
  position: relative;
  pointer-events: auto;
  background: #fff;
  border-top: 4px solid #e11d48;
  border-radius: 16px 16px 0 0;
  padding: 24px 28px 22px;
  max-width: 720px;
  width: calc(100% - 16px);
  margin: 0 8px;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.22);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  animation: cookieSlideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.cookie-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(225,29,72,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e11d48;
}
.cookie-body { flex: 1; min-width: 0; }
.cookie-body h3 {
  font-size: 1.15rem;
  margin: 0 0 6px;
  color: #1f1f1f;
}
.cookie-body p {
  font-size: 14px;
  color: #3a3a3a;
  margin: 0 0 14px;
  line-height: 1.55;
}
.cookie-body a { color: #e11d48; text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #e11d48;
  color: #fff;
  border: 2px solid #e11d48;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  min-width: 140px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.cookie-banner button:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(225,29,72,0.25); }
.cookie-banner button.cookie-reject {
  background: #fff;
  color: #e11d48;
  border-color: #e11d48;
}
.cookie-banner button.cookie-reject:hover { background: rgba(225,29,72,0.06); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

/* Pulse animation when ignored */
.cookie-banner.pulse .cookie-inner {
  animation: cookieSlideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards, cookiePulse 1.1s ease-in-out 0.5s 2;
}
.cookie-banner.pulse .cookie-icon {
  animation: cookieIconShake 0.6s ease-in-out 0.5s 2;
}

@keyframes cookieFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes cookiePulse {
  0%, 100% { box-shadow: 0 -12px 48px rgba(0,0,0,0.22); }
  50% { box-shadow: 0 -12px 60px rgba(225,29,72,0.55), 0 0 0 4px rgba(225,29,72,0.15); }
}
@keyframes cookieIconShake {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
  60% { transform: rotate(-4deg); }
  80% { transform: rotate(4deg); }
}

@media (max-width: 640px) {
  .cookie-inner {
    flex-direction: column;
    gap: 14px;
    padding: 20px 18px 18px;
    width: 100%;
    margin: 0;
    border-radius: 16px 16px 0 0;
  }
  .cookie-icon { width: 40px; height: 40px; }
  .cookie-actions { width: 100%; }
  .cookie-banner button { flex: 1; min-width: 0; }
}

/* Navbar */
.navbar {
  padding: 16px 0;
  background: transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-logo {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.6rem;
  color: #1f1f1f;
}
.site-logo a { color: inherit; text-decoration: none; }
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  text-transform: uppercase;
  font-size: 13px;
  color: #3a3a3a;
  letter-spacing: 0.5px;
}
.nav-links a:hover { color: #e11d48; text-decoration: none; }

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

.hero {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero p { color: #3a3a3a; }
.hero-meta {
  font-size: 14px;
  color: #7a7a7a;
  margin-top: 8px;
}

.about {
  max-width: 800px;
  margin: 0 auto;
}

/* Disclosure strip above catalog */
.disclosure-strip {
  background: rgba(255,255,255,0.7);
  border-left: 3px solid #e11d48;
  padding: 12px 16px;
  font-size: 14px;
  color: #555;
  margin: 20px 0 24px;
  border-radius: 4px;
}
.disclosure-strip strong { color: #1f1f1f; }

/* FAQ */
.faq-content { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 12px;
}
.faq-item summary {
  font-weight: 500;
  cursor: pointer;
  color: #1f1f1f;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: -2px;
  font-size: 22px;
  color: #e11d48;
  font-weight: 400;
  line-height: 1;
}
.faq-item[open] summary::after { content: '\2013'; }
.faq-item p { margin: 12px 0 0; color: #555; }
.faq-item a { color: #e11d48; }

/* Footer disclosure */
.footer-disclosure {
  font-size: 12px;
  color: #888;
  max-width: 720px;
  margin: 12px auto 0;
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 6px 20px 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: 32px;
}
.game-card { display: flex; flex-direction: column; }
.game-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.game-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.game-title-block { flex: 1; min-width: 0; }
.game-title-block h3 { margin-bottom: 4px; font-size: 1.15rem; }
.game-dev { font-size: 13px; color: #7a7a7a; }
.badge {
  display: inline-block;
  background: #ffe4e6;
  color: #e11d48;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.game-desc { font-size: 15px; color: #3a3a3a; margin-bottom: 14px; flex: 1; }
.game-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.game-shots img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}
.btn {
  background: #e11d48;
  color: #fff;
  border-radius: 6px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  transition: opacity 0.2s;
  display: inline-block;
  text-align: center;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.btn-block { width: 100%; display: block; }
.btn-full { width: 100%; padding: 12px; font-weight: 500; }

/* Catalog header */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 12px; }
.section-head p { color: #7a7a7a; }

/* Contact / Subscribe form */
.contact-wrap { max-width: 560px; margin: 0 auto; }
.contact-wrap .card { padding: 32px; }
.contact-wrap h2 { text-align: center; }
.contact-wrap .subtitle { text-align: center; color: #7a7a7a; margin-bottom: 20px; }

.form-card {
  max-width: 560px;
  margin: 24px auto 0;
  padding: 32px;
}
.form-card h2 { margin-bottom: 8px; text-align: center; }
.form-subtitle { color: #7a7a7a; margin-bottom: 20px; text-align: center; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #3a3a3a;
  margin-bottom: 6px;
}
.form-group label .optional {
  color: #999;
  font-weight: 400;
}
.form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  background: #fff;
}
.form-group input:focus {
  border-color: #e11d48;
  box-shadow: 0 0 0 2px rgba(225,29,72,0.12);
}
.form-microcopy {
  font-size: 13px;
  color: #666;
  margin: 8px 0 16px;
  line-height: 1.5;
}
.form-microcopy a { color: #e11d48; }

.form-consent { margin: 8px 0 16px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #e11d48;
  cursor: pointer;
}
.consent-label a { color: #e11d48; }
.consent-error {
  display: none;
  margin: 6px 0 0 26px;
  font-size: 12px;
  color: #b91c1c;
}
.consent-error.show { display: block; }
.push-optin {
  font-size: 14px;
  margin: 12px 0 8px;
  color: #3a3a3a;
}
.btn-ghost {
  background: transparent;
  color: #e11d48;
  border: 1px solid #e11d48;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  padding: 8px 16px;
}
.btn-ghost:hover { background: rgba(225,29,72,0.08); color: #e11d48; opacity: 1; }
.btn-ghost[disabled] { opacity: 0.6; cursor: default; }

form .field { margin-bottom: 14px; }
label { display: block; font-size: 14px; margin-bottom: 6px; color: #3a3a3a; }
input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fff;
}
input:focus {
  border-color: #e11d48;
  box-shadow: 0 0 0 2px #e11d4820;
}
.success-msg {
  margin-top: 14px;
  padding: 12px;
  background: #ffe4e6;
  color: #1f1f1f;
  border-radius: 6px;
  font-size: 14px;
  display: none;
}
.success-msg.show { display: block; }

/* Footer */
footer {
  text-align: center;
  color: #7a7a7a;
  padding: 32px 0;
  font-size: 14px;
}
footer .footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
footer .footer-links a { color: #3a3a3a; font-size: 14px; }
footer .footer-links a:hover { color: #e11d48; }
footer .address { font-size: 13px; color: #7a7a7a; margin-top: 6px; }

/* Legal / content pages */
.legal {
  max-width: 800px;
  margin: 0 auto;
}
.legal h1 { font-size: 2.25rem; margin-bottom: 24px; }
.legal h2 { margin-top: 28px; }
.legal p, .legal li { color: #3a3a3a; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }

.page-content {
  max-width: 800px;
  margin: 0 auto;
}
.page-content h2 { margin-top: 28px; }
.page-content ul { margin: 12px 0 16px 22px; }
.page-content li { margin-bottom: 6px; }
.page-updated {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 13px;
  color: #888;
  font-style: italic;
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.5rem; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; }
  .contact-wrap .card { padding: 24px; }
  .form-card { padding: 24px; }
  section { padding: 40px 0; }
  .games-grid { grid-template-columns: 1fr; }
  .game-shots img { height: 110px; }
}
