/* Download Page Styles - Exilium V3 */

/* Hero Section with Video */
.hero-download {
    height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-download-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.4) saturate(1.2);
}

.hero-download-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12, 10, 16, 0.4) 0%, rgba(12, 10, 16, 1) 100%);
    z-index: -1;
}

.download-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3.5rem;
    color: var(--gold-500);
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 0 0 40px rgba(201, 162, 39, 0.6);
    margin-bottom: 5px;
}

.download-subtitle {
    color: var(--gold-300);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Centralização do Conteúdo */
.grid-single {
    grid-template-columns: 1fr !important;
}

.grid-single .sidebar-column {
    display: none;
}

.grid-single .main-column {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Download Cards */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: -60px auto 80px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
}

.download-card {
    background: linear-gradient(145deg, rgba(20, 16, 26, 0.98) 0%, rgba(12, 10, 16, 0.98) 100%);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold-500);
    box-shadow: 0 25px 50px rgba(201, 162, 39, 0.2);
}

.download-icon-wrap {
    width: 90px;
    height: 90px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
    transform: rotate(5deg);
}

.download-card:hover .download-icon-wrap {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--gold-500);
    transform: scale(1.1) rotate(0deg);
}

.download-icon-wrap img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.4));
}

.service-name {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
}

.provider-name {
    color: var(--gold-500);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.btn-download-v3 {
    background: linear-gradient(135deg, #c9a227 0%, #8e6d1c 100%);
    color: #000;
    padding: 14px 35px;
    border-radius: 12px;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-download-v3:hover {
    background: linear-gradient(135deg, #e5bc3d 0%, #c9a227 100%);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
    transform: translateY(-2px);
    color: #000;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Information & Requirements */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 0 auto 100px;
    max-width: 1200px;
}

.info-card-v3 {
    background: rgba(20, 16, 26, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.info-card-v3 h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold-500);
    margin-bottom: 25px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-card-v3 h4 i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 12px 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 15px;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li strong {
    color: var(--gold-400);
    min-width: 100px;
}

@media (max-width: 768px) {
    .download-title {
        font-size: 2.5rem;
    }

    .info-section {
        grid-template-columns: 1fr;
    }
}

/* Background da página com Mapa de Silkroad */
body.theme-sro {
    background-image: linear-gradient(to bottom, rgba(12, 10, 16, 0.95) 0%, rgba(12, 10, 16, 0.8) 50%, rgba(12, 10, 16, 0.95) 100%), url('/static/img/backgrounds/silkroad-map_ch.jpg') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}