@import url('https://fonts.googleapis.com/css2?family=Sansation:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@400;500;700&display=swap');

.downloads-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.downloads-section h1, p {
    font-family: "Sansation", sans-serif;
    margin-bottom: 10px;
}

.downloads-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 198, 255, 0.15), transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 200, 0.1), transparent 70%);
    animation: floatBG 25s linear infinite;
    z-index: 1;
}

.downloads-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.download-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    width: 220px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.download-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.download-item img {
    width: 80px;
    margin-bottom: 20px;
}

.download-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-family: "Sansation", sans-serif;
}

.download-item a {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border: 1px solid #0cf;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
    font-family: "Sansation", sans-serif;
}

.download-item a:hover {
    background: #0cf;
    color: #000;
}

@keyframes floatBG {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
