.download-hero {
    text-align: center;
    padding: 100px 20px;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.download-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.download-hero-content {
    position: relative;
    z-index: 1;
}

.download-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-hero p {
    font-size: 20px;
    color: var(--text-secondary);
    opacity: 0.9;
}

.download-platforms {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.platform-download-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.platform-download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.platform-download-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
}

.platform-download-card:hover::before {
    transform: scaleX(1);
}

.platform-download-card .platform-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.3));
}

.platform-download-card h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.platform-download-card .version {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 8px 0;
    font-weight: 500;
}

.platform-download-card .size {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 5px 0;
}

.platform-download-card .requirements {
    color: #64748b;
    font-size: 13px;
    margin: 5px 0 25px;
}

.platform-download-card .download-btn {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    position: relative;
    overflow: hidden;
}

.platform-download-card .download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.platform-download-card .download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.5);
}

.platform-download-card .download-btn:hover::before {
    left: 100%;
}

.download-info {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px 100px;
}

.download-info h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.info-item {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
}

.info-item:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 172, 254, 0.3);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.2);
}

.info-item .info-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(79, 172, 254, 0.3));
}

.info-item h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.info-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

@media (max-width: 768px) {
    .download-hero h1 {
        font-size: 42px;
    }

    .download-hero {
        padding: 80px 20px;
    }

    .download-hero p {
        font-size: 17px;
    }

    .download-platforms {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 60px auto;
    }

    .platform-download-card {
        padding: 30px 20px;
    }

    .platform-download-card .platform-icon {
        font-size: 48px;
    }

    .platform-download-card h2 {
        font-size: 24px;
    }

    .platform-download-card .download-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .download-info h2 {
        font-size: 32px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-item {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .download-hero h1 {
        font-size: 36px;
    }

    .download-platforms {
        padding: 0 20px;
    }

    .platform-download-card {
        padding: 25px 15px;
    }
}
