/* Download Page Styles */
.download-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 60px;
    position: relative;
    z-index: 10;
}

.download-header {
    text-align: center;
    margin-bottom: 60px;
}

.download-title {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    line-height: 1.2;
}

.download-options {
    margin-bottom: 80px;
}

.download-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.download-card:hover::before {
    left: 100%;
}

.download-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.download-icon {
    margin-bottom: 20px;
}

.download-icon svg {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.download-card:hover .download-icon svg {
    transform: scale(1.1);
}

.download-service {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.download-provider {
    font-size: 1rem;
    color: #d4af37;
    margin-bottom: 25px;
    font-weight: 500;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(212, 175, 55, 0.4);
    color: #000;
}

.download-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #d4af37;
    border-radius: 10px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.info-card h4 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-card h4 i {
    margin-right: 8px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    color: #ffffff;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.info-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 0.8rem;
}

.info-card li strong {
    color: #d4af37;
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-container {
        padding: 60px 15px 40px;
    }
    
    .download-title {
        font-size: 2.2rem;
    }
    
    .download-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .download-service {
        font-size: 1.1rem;
    }
    
    .download-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .info-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .download-title {
        font-size: 1.8rem;
    }
    
    .download-card {
        padding: 20px 10px;
    }
    
    .download-service {
        font-size: 1rem;
    }
    
    .download-provider {
        font-size: 0.9rem;
    }
}

/* Video Background Styles (replicating from index.css) */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
} 