:root {
  --primary-gold: #c8a355;
  --bg-dark: #0a1118;
  --card-glass: rgba(14, 25, 36, 0.7);
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(10, 17, 24, 0.6), rgba(10, 17, 24, 0.9)),
    url('assets/bg.png') no-repeat center center;
  background-size: cover;
  z-index: -1;
  transition: transform 1s ease-out;
}

.main-container {
  max-width: 800px;
  width: 90%;
  padding: 3rem;
  border-radius: 24px;
  background: var(--card-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo-container {
  margin-bottom: 2rem;
}

.logo-container img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(200, 163, 85, 0.3));
  animation: logoPulse 4s infinite ease-in-out;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(200, 163, 85, 0.3)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(200, 163, 85, 0.6)); }
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(200, 163, 85, 0.15);
  border: 1px solid var(--primary-gold);
  border-radius: 50px;
  color: var(--primary-gold);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

p.description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.app-stores {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  cursor: not-allowed;
  opacity: 0.5;
  filter: grayscale(1);
  transition: all var(--transition-speed);
  position: relative;
}

.store-btn::after {
  content: 'Soon';
  position: absolute;
  top: -10px;
  right: -5px;
  background: var(--primary-gold);
  color: #000;
  font-size: 0.6rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.store-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.store-content {
  text-align: left;
}

.store-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  margin-bottom: -2px;
}

.store-name {
  font-size: 1.125rem;
  font-weight: 600;
}

footer {
  margin-top: auto;
  padding: 2rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  h1 { font-size: 2.25rem; }
  .main-container { padding: 2rem; }
}
