/* Design System Variables from tokens.ts */
:root {
  --bg-base: #050508;
  --bg-glass: rgba(5, 5, 8, 0.7);
  
  --surface-1: #1A1510;
  --surface-2: #241B15;
  --surface-3: #3A2F28;
  
  --text-primary: #FFFFFF;
  --text-muted: #C0B0A0;
  --text-dim: rgba(192, 176, 160, 0.5);
  
  --accent-info: #E8D5B7;
  --accent-glow: #8C5A10;
  
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-active: rgba(255, 255, 255, 0.3);
  --border-glass: rgba(255, 255, 255, 0.1);

  --radius-m: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --spacing-m: 8px;
  --spacing-l: 12px;
  --spacing-xl: 16px;
  --spacing-xxl: 32px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  /* Subtle dark wood / casino gradient overlay */
  background-image: radial-gradient(circle at 50% 0%, var(--surface-1), var(--bg-base) 70%);
}

.container {
  width: 100%;
  max-width: 600px;
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xxl);
}

/* Glassmorphism Card */
.glass-card {
  width: 100%;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px var(--spacing-xxl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
}

header {
  text-align: center;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-info);
  margin-bottom: var(--spacing-m);
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(232, 213, 183, 0.2);
}

h2 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.description p {
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-l);
  background: rgba(0, 0, 0, 0.2);
  padding: var(--spacing-xl);
  border-radius: var(--radius-m);
  border: 1px solid var(--border-subtle);
}

.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
}

/* Play Store Button */
.actions {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-m);
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-1));
  color: var(--text-primary);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1.1rem;
  border: 1px solid var(--accent-glow);
  box-shadow: 0 4px 15px rgba(140, 90, 16, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(140, 90, 16, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, var(--surface-3), var(--surface-2));
  border-color: var(--accent-info);
}

.store-button:active {
  transform: translateY(1px);
}

.play-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-info);
}

/* Footer */
footer {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-info);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }
  
  .glass-card {
    padding: 30px 20px;
  }
  
  .store-button {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}
