:root {
  color-scheme: dark;
  --primary: #8b2252;
  --primary-light: #bc4875;
  --secondary: #d4af37;
  --secondary-dark: #a68b2b;
  --bg-dark: #1a1a1f;
  --bg-surface: #252529;
  --text-primary: #f5f5f5;
  --text-secondary: #b0b0b5;
  --text-muted: #707075;
}

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

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #2a2a32 0%, #1a1a1f 40%, #0f0f12 100%);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.logo-section {
  margin-bottom: 48px;
}

.logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.25);
}

.logo svg {
  width: 48px;
  height: 48px;
  fill: var(--bg-dark);
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.tagline {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.coming-soon {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(139, 34, 82, 0.15);
  border: 1px solid var(--primary);
  border-radius: 24px;
  color: var(--primary-light);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.stores-section {
  margin-top: 64px;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.store-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.store-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 48px rgba(139, 34, 82, 0.3);
}

.store-platform {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.store-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.qr-code {
  width: 200px;
  height: 200px;
  margin: 24px auto;
  padding: 12px;
  background: white;
  border-radius: 12px;
}

.qr-code img {
  width: 100%;
  height: 100%;
  display: block;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  gap: 8px;
}

.store-button:hover {
  background: var(--primary-light);
}

.qr-hint {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 16px;
}

.footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  .tagline {
    font-size: 18px;
  }

  .stores-grid {
    grid-template-columns: 1fr;
  }

  .qr-code {
    width: 160px;
    height: 160px;
  }
}
