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

body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.download-card {
    background-color: #151515;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.neon-text {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 10px #0ff,
                 0 0 20px #0ff,
                 0 0 30px #0ff;
    animation: glow 2s ease-in-out infinite alternate;
}

.download-icon {
    margin: 2rem 0;
}

.download-icon svg {
    fill: #0ff;
    animation: pulse 2s infinite;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.neon-button {
    background-color: transparent;
    color: #0ff;
    border: 2px solid #0ff;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.neon-button:hover {
    background-color: #0ff;
    color: #000;
    box-shadow: 0 0 20px #0ff;
    transform: scale(1.05);
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #0ff,
                     0 0 20px #0ff,
                     0 0 30px #0ff;
    }
    to {
        text-shadow: 0 0 20px #0ff,
                     0 0 30px #0ff,
                     0 0 40px #0ff;
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
