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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0A2F64;
  position: relative;
  overflow: hidden;
}

body::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 80%;
  height: 80%;
  background: #ffffff10;
  border-radius: 50%;
  z-index: 0;
}

.logo-container {
  width: 100%;
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.logo {
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.download-container {
  text-align: center;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  width: 400px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem auto;
}

.download-icon {
  color: #D4AF37;
  margin-bottom: 1.5rem;
  animation: bounce 2s infinite;
  width: 64px;
  height: 64px;
}

h1 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.download-link {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.download-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.home-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #D4AF37;
  color: #0A2F64;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.home-button:hover {
  background-color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.home-button svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}