/* Estilo Único para a Página de Download - Prefixo dl-page- */

.dl-page-container {
    background: #ffffff !important;
    padding: 25px;
    border-radius: 10px;
    color: #333;
    border: 1px solid #ddd;
}

.dl-page-main-title {
    text-align: center; 
    color: #2c3e50; 
    font-size: 24px; 
    font-weight: bold; 
    margin-bottom: 10px;
}

.dl-page-description {
    text-align: center; 
    color: #666; 
    max-width: 800px; 
    margin: 0 auto 30px auto; 
    line-height: 1.6;
}

.dl-page-section-subtitle {
    margin: 30px 0 15px;
    border-left: 5px solid #34495e;
    padding-left: 12px;
    color: #2c3e50;
    font-size: 16px;
    font-weight: bold;
}

/* Tabela de Requisitos */
.dl-page-table-wrapper { 
    border: 1px solid #eee; 
    border-radius: 6px; 
    overflow: hidden; 
    background: #fff; 
    margin-bottom: 20px; 
}

.dl-page-auction-table { 
    width: 100%; 
    border-collapse: collapse; 
}

.dl-page-auction-table th { 
    background: #34495e; 
    color: #fff; 
    padding: 12px; 
    font-size: 11px; 
    text-transform: uppercase; 
}

.dl-page-auction-table td { 
    padding: 12px; 
    border-bottom: 1px solid #eee; 
    font-size: 13px; 
    color: #555; 
    text-align: left; 
}

.dl-page-auction-table tr:hover td { 
    background-color: #f0f7ff; 
}

/* Grid de Espelhos */
.dl-page-mirrors-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.dl-page-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    width: 30%; 
    min-width: 250px;
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 15px;
}

.dl-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.dl-page-disabled {
    opacity: 0.7;
}

.dl-page-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #3498db;
    color: #fff;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
}

.dl-page-badge-red {
    background: #e74c3c;
}

.dl-page-img-holder {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.12) 0%, rgba(255,255,255,0) 75%);
}

.dl-page-img-holder img {
    height: 80px;
    transition: transform 0.3s ease;
}

.dl-page-card:hover .dl-page-img-holder img {
    transform: scale(1.1);
}

.dl-page-mirror-name { font-size: 18px; color: #2c3e50; font-weight: bold; }
.dl-page-mirror-ver { font-size: 11px; color: #3498db; font-weight: bold; text-transform: uppercase; margin-bottom: 10px; }

.dl-page-stats {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.dl-page-stat-item {
    font-size: 10px;
    color: #888;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #eee;
    flex: 1;
}

.dl-page-stat-item strong { color: #333; font-size: 12px; display: block; }

.dl-page-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 10px;
}

/* Botões */
.dl-page-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: #455a64;
    color: #fff !important;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
}

.dl-page-btn-active { background: #3498db; }
.dl-page-btn-active:hover { background: #2980b9; }
.dl-page-btn:disabled { background: #95a5a6; cursor: not-allowed; }