.download-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.download-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(8, 1, 34, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(205, 86, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: var(--font-medium);
    margin-bottom: 15px;
    color: var(--color-white);
}

.download-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 14px 30px;
    background: linear-gradient(45deg, #9932CC, #CD56FF);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: var(--font-medium);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(205, 86, 255, 0.4);
}

.download-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(205, 86, 255, 0.6);
}

.download-button i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .download-section {
        padding: 80px 20px;
    }

    .download-content h2 {
        font-size: 2rem;
    }

    .download-content p {
        font-size: 1rem;
    }

    .download-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .download-content {
        padding: 30px 20px;
    }
}