/* ===================================================
   JUEGOS DESTACADOS - PÁGINA ESPECÍFICA
   =================================================== */

.destacados-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.destacado-card {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.destacado-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: #667eea;
}

.destacado-imagen {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    position: relative;
    border-radius: 15px 15px 0 0;
}

.destacado-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4757;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.destacado-consola {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.destacado-precio {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff4757;
}

.precio-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.precio-original {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.destacado-nombre {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.destacado-descripcion {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.btn-destacado {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-destacado:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.destacado-acciones {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.destacado-acciones .btn-outline-danger {
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.destacado-acciones .btn-outline-danger:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.sin-destacados {
    text-align: center;
    padding: 4rem 0;
    color: #999;
}

.sin-destacados i {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #555;
}

.floating-action {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.btn-floating {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    color: white;
}