/* Design tokens */
:root {
  --color-background:       #181515;
  --color-surface:          #2B2625;
  --color-surface-raised:   #362F2E;
  --color-primary:          #B54134;
  --color-primary-dark:     #943126;
  --color-gold:             #D6B564;
  --color-blue:             #5E7E90;
  --color-green:            #4A9B68;
  --color-text-primary:     #F4EEE6;
  --color-text-secondary:   #C6BDB3;
  --color-text-muted:       #8B7F77;
  --color-border:           #413836;
  --color-border-light:     #544A47;

  --font-family: 'Nunito', sans-serif;

  --radius-sm:  12px;
  --radius-md:  18px;
  --radius-lg:  20px;
}

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

/* Base */
body {
  background-color: var(--color-background);
  color: var(--color-text-primary);
  font-family: var(--font-family);
  min-height: 100vh;
}

/* Coming soon page */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 2rem;
  gap: 0.75rem;
}

.coming-soon .icon {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  filter: drop-shadow(0 8px 32px rgba(213, 181, 100, 0.2));
  margin-bottom: 0.5rem;
}

.coming-soon .app-name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.coming-soon .headline {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--color-text-primary);
}

.coming-soon .tagline {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-top: 0.25rem;
}

@media (max-width: 480px) {
  .coming-soon .headline {
    font-size: 2.4rem;
  }

  .coming-soon .icon {
    width: 110px;
    height: 110px;
  }
}
