@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body { 
    background-color: #050505; 
    color: #ffffff; 
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
}

.netflix-green { color: #00ed64; }
.bg-netflix-green { background-color: #00ed64; }

/* Scrollbar personalizada */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { 
    background: #1a1a1a; 
    border-radius: 5px;
    border: 2px solid #050505;
}
::-webkit-scrollbar-thumb:hover { background: #00ed64; }

.glass-panel {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Section con espacio para el reproductor */
#hero-area {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center 20%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    transition: background-image 1.2s ease-in-out;
}

#hero-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #050505 10%, transparent 50%),
                linear-gradient(to right, #050505 0%, transparent 50%, #050505 100%);
    z-index: 1;
}

#hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Reproductor bajado significativamente */
#player-container {
    margin-top: 180px; /* Espacio extra desde el top */
    margin-bottom: 60px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

.admin-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 14px;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
    color: white;
}

.admin-input:focus { 
    border-color: #00ed64; 
    background: rgba(0, 237, 100, 0.05);
}

.anime-card { 
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.anime-card:hover { 
    transform: scale(1.05) translateY(-10px);
}

.neon-glow {
    border: 1px solid rgba(0, 237, 100, 0.3);
    box-shadow: 0 0 25px rgba(0, 237, 100, 0.15);
}

.category-row::-webkit-scrollbar { display: none; }

iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

details summary::-webkit-details-marker { display: none; }
