:root {
  --primary-color: #1B5E20;
  --secondary-color: #2E7D32;
  --accent-color: #66BB6A;
  --dark-green: #0D3B0D;
  --white: #FFFFFF;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #0D3B0D 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  animation: float 20s infinite linear;
}

@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100px);
  }
}

.download-container {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
}

.content {
  max-width: 600px;
  margin: 0 auto;
}

.app-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8),
               0 0 40px rgba(0, 0, 0, 0.6),
               0 0 60px rgba(0, 0, 0, 0.4);
}

.app-subtitle {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 60px;
  opacity: 0.95;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8),
               0 0 30px rgba(0, 0, 0, 0.6);
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.download-btn {
  display: inline-block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.download-btn:hover {
  transform: scale(1.05);
}

.store-badge {
  height: 70px;
  width: auto;
}

.google-badge {
  height: 85px;
}

@media (max-width: 768px) {
  .app-title {
    font-size: 2.5rem;
  }
  
  .app-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  
  .store-badge {
    height: 60px;
  }
  
  .google-badge {
    height: 75px;
  }
}

@media (max-width: 480px) {
  .app-title {
    font-size: 2rem;
  }
  
  .app-subtitle {
    font-size: 1rem;
  }
  
  .store-badge {
    height: 50px;
  }
  
  .google-badge {
    height: 65px;
  }
}
