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

body {
  background: linear-gradient(150deg, #fce7f3, #fff1f2);
  background-attachment: fixed;
  min-height: 100vh;
  font-family: 'Source Sans 3', sans-serif;
  color: #444;
  font-size: 15px;
  line-height: 1.65;
}

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

h1 {
  font-size: 2.25rem;
  line-height: 1.25;
}

h2 {
  font-size: 1.4rem;
}

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

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

a:hover {
  text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.95);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 14px;
  color: #555;
}

.hidden {
  display: none;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #be185d;
  color: #fff;
  border-radius: 20px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  transition: opacity 0.2s;
  text-decoration: none;
  line-height: 1.4;
}

.btn:hover {
  opacity: 0.85;
  text-decoration: none;
}

.btn-small {
  padding: 6px 18px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
  padding: 10px;
  font-weight: 500;
}

/* Navbar */
.navbar {
  padding: 16px 0;
  background: transparent;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
  text-decoration: none;
}

.site-logo:hover {
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}

.nav-links a:hover {
  color: #be185d;
}

/* Hero */
.hero {
  padding: 80px 0;
}

.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content p {
  margin-bottom: 28px;
  font-size: 16px;
  color: #555;
}

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

.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

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

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
}

.feature-list {
  margin-top: 20px;
  padding-left: 20px;
}

.feature-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.gallery-card {
  padding: 0;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Download */
.download-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.game-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.download-content h2 {
  margin-bottom: 12px;
}

.download-content p {
  margin-bottom: 24px;
  color: #555;
}

.store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  font-size: 14px;
}

/* Contact */
.contact-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
}

.contact-card h2 {
  margin-bottom: 6px;
}

.contact-subtitle {
  color: #777;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}

.form-group input:focus {
  border-color: #be185d;
  box-shadow: 0 0 0 2px rgba(190, 24, 93, 0.125);
}

.form-success {
  margin-top: 16px;
  color: #15803d;
  font-weight: 600;
  text-align: center;
}

/* Footer */
.footer {
  text-align: center;
  padding: 32px 0;
  color: #777;
}

.footer-address {
  font-size: 13px;
  margin-bottom: 4px;
}

.footer-email {
  font-size: 13px;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 13px;
  color: #777;
}

.footer-links a:hover {
  color: #be185d;
}

.footer-copy {
  font-size: 13px;
}

/* Legal pages */
.legal-page {
  padding: 64px 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 24px;
  font-size: 1.8rem;
}

.legal-page h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-page p {
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-page ul li {
  margin-bottom: 6px;
}

/* Q&A */
.qa-item {
  margin-bottom: 28px;
}

.qa-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* Mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }

  .nav-flex {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero {
    padding: 48px 0;
  }

  .section {
    padding: 40px 0;
  }

  .contact-card {
    padding: 24px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
}