@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@400;600;700&display=swap');

body {
    font-family: 'Oxanium', cursive;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    min-height: 100vh;
    padding: 1rem;
}

.streamer-card {
    box-shadow: 0 10px 30px rgba(113, 26, 217, 0.3);
    transition: transform 0.3s ease;
    margin-top: 3rem; /* Espacio para el botón de volver */
}

.streamer-card:hover {
    transform: translateY(-5px);
}

.live-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.platform-twitch { color: #9146FF; }
.platform-youtube { color: #FF0000; }
.platform-twitter { color: #1DA1F2; }
.platform-instagram { color: #E1306C; }
.platform-discord { color: #5865F2; }

/* Botón de volver - Diseño responsivo */
.back-button {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 50;
    background: rgba(55, 65, 81, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background: rgba(75, 85, 99, 0.9);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 0.5rem;
    }
    
    .streamer-card {
        margin-top: 2.5rem; /* Menos espacio en móviles */
    }
    
    .back-button {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .back-button {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .back-button i {
        margin-right: 0.25rem;
    }
}