.download-section {
    min-height: 100vh;
    position: relative;
    padding: 100px 0 50px;
    display: flex;
    align-items: center;
}

.download-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.download-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    min-height: 75vh;
    margin: 0 auto;
    max-width: 1200px;
}

.download-launcher-column {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: rgba(25, 15, 10, 0.5);
    border: 1px solid rgba(200, 119, 67, 0.2);
}

.launcher-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.launcher-profile-image {
    width: 90%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%);
    transition: left 0.6s ease-out;
    pointer-events: none;
    z-index: 2;
}

.download-options-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.download-title {
    font-size: 2.8rem;
    color: var(--color-beige-light);
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--color-beige), var(--color-rose-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-subtitle {
    color: var(--color-light-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.platform-card {
    background: rgba(30, 20, 15, 0.7);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 119, 67, 0.2);
}

.platform-card.available:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(40, 25, 20, 0.8);
}

.platform-card.unavailable {
    opacity: 0.7;
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.platform-card.client-zip {
    border: 1px solid rgba(168, 146, 78, 0.3);
    background: rgba(40, 30, 15, 0.8);
}

.platform-card.client-zip:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-marron), var(--color-rose));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 28px;
    color: white;
}

.platform-icon.game-icon {
    background: linear-gradient(135deg, var(--color-vert), var(--color-vert-light));
}

.platform-icon.disabled {
    background: rgba(100, 100, 100, 0.2);
    color: rgba(200, 200, 200, 0.5);
}

.platform-info {
    margin-bottom: 15px;
}

.platform-info h3 {
    font-size: 1.3rem;
    color: var(--color-beige-light);
    margin-bottom: 5px;
}

.platform-status {
    font-size: 0.8rem;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
}

.platform-status.available {
    background: rgba(76, 175, 80, 0.2);
    color: #81c784;
}

.platform-status.unavailable {
    background: rgba(255, 152, 0, 0.2);
    color: #ffb74d;
}

.platform-status.client {
    background: rgba(168, 146, 78, 0.2);
    color: #d6bd74;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(45deg, var(--color-marron), var(--color-rose));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 100%;
}

.platform-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.platform-btn.disabled {
    background: rgba(100, 100, 100, 0.2);
    color: rgba(200, 200, 200, 0.7);
    cursor: not-allowed;
    pointer-events: none;
}

.platform-btn.client-btn {
    background: linear-gradient(45deg, var(--color-vert), var(--color-vert-light));
}

.download-support {
    background: linear-gradient(135deg, #5865F2 0%, #404EED 100%);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.2);
    position: relative;
    overflow: hidden;
}

.download-support::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBjbGlwLXBhdGg9InVybCgjY2xpcDApIj48cGF0aCBkPSJNMjMuNjg1IDBIMy4zMTVDMS40ODggMCAwIDEuNjE1IDAgMy42MDh2MTIuMzA1YzAgMS45OTQgMS40ODggMy42MDggMy4zMTUgMy42MDhoMjAuMzdDMjUuNTEzIDE5LjUyMSAyNyAxNy45MDcgMjcgMTUuOTEzVjMuNjA4QzI3IDEuNjE1IDI1LjUxMiAwIDIzLjY4NSAwek0xNy41ODggMTYuMTQ4Yy0uODQyIDAtMS41MjYtLjgzLTEuNTI2LTEuODNzLjY4NC0xLjgzIDEuNTI2LTEuODNjLjg0MiAwIDEuNTI2LjgzIDEuNTI2IDEuODNzLS42ODQgMS44My0xLjUyNiAxLjgzem0wLTYuMjhjLS44NDIgMC0xLjUyNi0uODMtMS41MjYtMS44M3MuNjg0LTEuODMgMS41MjYtMS44M2MuODQyIDAgMS41MjYuODMgMS41MjYgMS44M3MtLjY4NCAxLjgzLTEuNTI2IDEuODN6bS03LjM2OCA2LjI4Yy0uODQyIDAtMS41MjYtLjgzLTEuNTI2LTEuODNzLjY4NC0xLjgzIDEuNTI2LTEuODNjLjg0MiAwIDEuNTI2LjgzIDEuNTI2IDEuODNzLS42ODQgMS44My0xLjUyNiAxLjgzem0wLTYuMjhjLS44NDIgMC0xLjUyNi0uODMtMS41MjYtMS44M3MuNjg0LTEuODMgMS41MjYtMS44M2MuODQyIDAgMS41MjYuODMgMS41MjYgMS44M3MtLjY4NCAxLjgzLTEuNTI2IDEuODN6Ij48L3BhdGg+PC9nPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHdpZHRoPSIyNyIgaGVpZ2h0PSIxOS41MjEiIGZpbGw9IndoaXRlIj48L3JlY3Q+PC9jbGlwUGF0aD48L2RlZnM+PC9zdmc+');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80px;
    opacity: 0.1;
    z-index: 0;
}

.support-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.support-icon i {
    font-size: 25px;
    color: white;
}

.support-info {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-info p {
    color: white;
    margin: 0;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #5865F2;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #404EED;
}

.support-btn i {
    font-size: 1.1rem;
}

.legal-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

.legal-note i {
    color: var(--color-rose-light);
    font-size: 1.1rem;
}

.legal-link {
    color: var(--color-beige);
    text-decoration: none;
    border-bottom: 1px dotted var(--color-beige);
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: var(--color-rose-light);
    border-bottom-color: var(--color-rose-light);
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.platform-card.highlight {
    animation: highlight-platform 1.2s ease;
}

@keyframes highlight-platform {
    0% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 10px 25px rgba(200, 119, 67, 0.4);
        transform: translateY(-5px);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .download-layout {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .download-launcher-column {
        width: 90%;
        max-width: 600px;
    }
    
    .download-options-column {
        width: 100%;
        text-align: center;
    }
    
    .download-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .download-title {
        font-size: 2.2rem;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .support-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .legal-note {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .download-layout {
        padding: 0 15px;
    }
    
    .download-launcher-column {
        width: 100%;
    }
    
    .download-support {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .support-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .download-subtitle {
        font-size: 1rem;
    }
}