:root {
  --bg-color: #1a1a2e;
  --text-color: #ffffff;
  --primary-color: #0f3460;
  --accent-color: #e94560;
  --football-green: #00ff88;
  --football-dark-green: #00cc6a;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-color);
  background: linear-gradient(135deg, #111111 0%, #1a1a2e 100%);
  color: var(--text-color);
  font-family: var(--font-body);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  animation: fadeIn 1s ease-out;
}

.header {
  margin-bottom: 3rem;
}

.logo {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(to right, #00ff88, #00cc6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.tagline {
  font-size: 1.1rem;
  color: #a0a0b0;
  font-weight: 300;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 150px; /* Prevent layout shift */
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  width: 100%;
  max-width: 320px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--football-green);
  color: #000000;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
  background-color: var(--football-dark-green);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.btn-store {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.btn-store:hover {
  background-color: #f5f5f5;
}

.store-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.secondary-action {
  margin-top: 1.5rem;
}

.link-small {
  color: #888899;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.link-small:hover {
  color: var(--football-green);
  border-bottom-color: var(--football-green);
}

.btn-disabled {
  background-color: #e0e0e0;
  color: #a0a0a0;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  border: none;
}

.coming-soon-text {
  display: block;
  font-size: 0.8rem;
  color: #a0a0b0;
  margin-top: 0.5rem;
  font-weight: 300;
}

.footer {
  margin-top: 4rem;
  font-size: 0.8rem;
  color: #555566;
}

.hidden {
  display: none !important;
}

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

/* Icons for store button */
.btn-store:hover .store-icon {
  /* Slight animation on hover if desired */
  transform: scale(1.1);
  transition: transform 0.2s;
}
