/* Futuristic Background */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #050a30, #091540);
    color: white;
    text-align: center;
    padding: 0;
    padding-top: 60px;
    margin: 0;
}

/* Hero Section */
.download-hero {
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid cyan;
    box-shadow: 0 4px 30px rgba(0, 255, 255, 0.2);
}

.download-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.download-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Download Items */
.download-list {
    padding: 50px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.download-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease-in-out;
}

.download-item:hover {
    transform: translateY(-5px);
}

.download-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: cyan;
    color: #091540;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #00ffff;
}
