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

body {
  background: linear-gradient(160deg, #fce7f3, #fff1f2);
  background-attachment: fixed;
  font-family: 'Inter', sans-serif;
  color: #555;
  line-height: 1.75;
  font-size: 17px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'Sora', sans-serif;
  color: #0a0a0a;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }

p { margin-bottom: 14px; }

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

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

/* 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-banner .cookie-inner {
  position: relative;
  pointer-events: auto;
  background: #fff;
  border-top: 4px solid #be185d;
  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;
  justify-content: flex-start;
  flex-wrap: nowrap;
  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(190,24,93,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #be185d;
}
.cookie-body { flex: 1; min-width: 0; }
.cookie-body h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: #0a0a0a;
}
.cookie-body p {
  font-size: 14px;
  color: #555;
  margin: 0 0 14px;
  line-height: 1.55;
}
.cookie-body a { color: #be185d; text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #be185d;
  color: #fff;
  border: 2px solid #be185d;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: none;
  cursor: pointer;
  font-family: 'Inter', 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(190,24,93,0.25); opacity: 1; }
.cookie-banner button.cookie-reject {
  background: #fff;
  color: #be185d;
  border-color: #be185d;
}
.cookie-banner button.cookie-reject:hover { background: rgba(190,24,93,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(190,24,93,0.55), 0 0 0 4px rgba(190,24,93,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-banner .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;
}
.navbar .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.2rem;
  color: #0a0a0a;
}
.site-logo:hover { text-decoration: none; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  flex-wrap: wrap;
}
.nav-links a {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #0a0a0a;
}
.nav-links a:hover { color: #be185d; text-decoration: none; }

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

/* Hero */
.hero { text-align: center; }
.hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.hero-meta {
  font-size: 14px;
  color: #999;
  margin-top: 10px;
}

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

/* About */
.about-inner { max-width: 800px; margin: 0 auto; }

/* Catalog grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

/* Card */
.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 24px rgba(190,24,93,0.08); }

.game-head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.game-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}
.game-meta h3 { margin-bottom: 4px; }
.developer { font-size: 13px; color: #999; }
.badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #be185d;
  border: 1px solid #be185d;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.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: 160px;
  object-fit: cover;
  border-radius: 6px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #be185d;
  color: #fff;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: opacity 0.2s;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.btn-block { display: block; width: 100%; }

/* 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: #0a0a0a;
  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: #be185d;
  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: #be185d; }

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

form .field { margin-bottom: 14px; }
label { display: block; font-size: 14px; margin-bottom: 6px; color: #555; }
.optional { color: #999; font-weight: 400; }
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;
  transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
  color: #444;
}
input:focus {
  border-color: #be185d;
  box-shadow: 0 0 0 2px #be185d20;
}

.form-microcopy {
  font-size: 13px;
  color: #666;
  margin: 8px 0 16px;
  line-height: 1.5;
}
.form-microcopy a { color: #be185d; }

.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: #be185d;
  cursor: pointer;
}
.consent-label a { color: #be185d; }
.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: #444;
}
.btn-ghost {
  background: transparent;
  color: #be185d;
  border: 1px solid #be185d;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  padding: 8px 16px;
}
.btn-ghost:hover { background: rgba(190,24,93,0.08); color: #be185d; opacity: 1; }
.btn-ghost[disabled] { opacity: 0.6; cursor: default; }
.success-msg {
  display: none;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid #be185d;
  color: #0a0a0a;
  background: rgba(190,24,93,0.06);
  border-radius: 6px;
  font-size: 14px;
}
.success-msg.show { display: block; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid #be185d;
  color: #be185d;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
}
.form-success.visible { display: block; }

/* Footer */
.footer {
  text-align: center;
  color: #999;
  padding: 32px 0;
  font-size: 14px;
}
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-links a { color: #be185d; }
.footer-disclosure {
  font-size: 12px;
  color: #aaa;
  max-width: 720px;
  margin: 12px auto 0;
  line-height: 1.5;
}

/* Legal/extra pages */
.page-content { max-width: 800px; margin: 0 auto; }
.page-content h2 { margin-top: 28px; }
.page-content ul { padding-left: 22px; margin-bottom: 14px; }
.page-content li { margin-bottom: 8px; }
.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: 2rem; }
  .navbar .nav-inner { flex-direction: column; align-items: flex-start; }
  .nav-links { gap: 14px; }
  .subscribe-card { padding: 24px; }
  .shots img { height: 130px; }
  section { padding: 40px 0; }
}
