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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg,
        #4338CA 0%,
        #8B5CF6 35%,
        #14B8A6 70%,
        #F97316 100%);
    background-size: 200% 200%;
    animation: auroraGradient 15s ease infinite;
    min-height: 100vh;
    padding: 40px 20px;
}

@keyframes auroraGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

h1 {
    font-size: 36px;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.downloads {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h2 {
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.download-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    margin: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    color: #4338CA;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.download-link:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.download-link:nth-child(2) {
    color: #4338CA;
}

.download-link:nth-child(3) {
    color: #14B8A6;
}

.download-link:nth-child(4) {
    color: #8B5CF6;
}

.download-link svg {
    width: 24px;
    height: 24px;
}

footer {
    margin-top: 40px;
    color: white;
    text-align: center;
}

footer p {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

footer .legal {
    font-size: 12px;
    opacity: 0.75;
}

@media (max-width: 600px) {
    h1 {
        font-size: 28px;
    }

    .downloads {
        padding: 20px;
    }
}
