/* Download page specific styles */

.download-section {
    text-align: center;
    padding: 80px 20px;
}

.download-section h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-pink);
}

.platform-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    min-width: 300px;
    background-color: rgba(22, 33, 62, 0.7);
    border: 1px solid var(--primary-pink);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
}

.platform-btn i {
    font-size: 2rem;
}

@media (min-width: 768px) {
    .platform-links {
        flex-direction: row; /* Side-by-side on larger screens */
        justify-content: center;
    }
}
