/* --- ANULACIÓN DEL CONTENEDOR DEL TEMPLATE --- */
.main-container, .content-container, .panel-default, .panel-body, #content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.rank-title {
    font-family: 'Cinzel', serif;
    color: #ff6600;
    font-size: 3rem;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
    margin-bottom: 10px;
}

/* --- ESTILOS DE LOS RECUADROS --- */
.dl-box-standalone {
    background: #0d0d0f !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.9);
    position: relative; /* CRITICO PARA LOS BADGES */
}

/* Brillos */
.border-purple-glow { border: 1px solid rgba(170, 102, 255, 0.25) !important; }
.border-orange-glow { border: 1px solid rgba(255, 102, 0, 0.25) !important; }

/* BADGES (NUEVO Y ESTANDAR) */
.badge-new-yellow { 
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffcc00; 
    color: #000; 
    font-size: 10px; 
    font-weight: 900; 
    padding: 4px 14px; 
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.2);
    text-transform: uppercase;
}

.badge-standard-gray { 
    position: absolute;
    top: -12px;
    left: 20px; /* Alineado a la izquierda según imagen */
    background: #2a2a32; 
    color: #fff; 
    font-size: 10px; 
    padding: 4px 12px; 
    border-radius: 4px; 
    border: 1px solid rgba(255,255,255,0.1);
}

/* Cabeceras e Iconos */
.icon-square {
    width: 42px; height: 42px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.bg-purple-soft { background: rgba(170, 102, 255, 0.15); color: #aa66ff; }
.bg-orange-soft { background: rgba(255, 102, 0, 0.15); color: #ff6600; }

/* Botones Gradientes */
.btn-dl-gradient {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 22px; border-radius: 10px; font-weight: bold; color: white !important;
    text-decoration: none !important; transition: 0.3s ease;
}
.btn-dl-gradient.purple { background: linear-gradient(180deg, #d6499a 0%, #8347e4 100%); }
.btn-dl-gradient.orange { background: linear-gradient(180deg, #ff9d4d 0%, #ff5d2d 100%); }
.btn-dl-gradient:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* Secciones de Texto */
.text-orange-title { font-family: 'Cinzel', serif; color: #ff6600; letter-spacing: 2px; font-weight: 700; }
.dl-features li { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; color: #ccc; font-size: 14px; }
.dl-features i { font-size: 18px; color: #ff6600; width: 25px; text-align: center; }

/* Requisitos */
.requirements-table .row { padding: 10px 0; }
.text-orange { color: #ff6600 !important; }