/*
Theme Name: DoroPress v7.1 Modular
Author: Doronime
Version: 7.1
*/

:root { 
    --primary: #f97316; 
    --bg: #0b0f1a; 
    --card: #161c2d; 
}

body { 
    font-family: 'Inter', sans-serif; 
    background: var(--bg); 
    color: #e2e8f0; 
    margin: 0;
}

.glass { 
    background: rgba(22, 28, 45, 0.8); 
    backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}

/* Anime Card & Tooltip */
.anime-card { 
    position: relative; 
    border-radius: 1.25rem; 
    overflow: hidden; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    background: var(--card); 
    cursor: pointer; 
}

.anime-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5); 
}

/* Modal System */
.modal { 
    display: none; 
    position: fixed; 
    inset: 0; 
    z-index: 100; 
    background: rgba(5, 8, 15, 0.95); 
    align-items: center; 
    justify-content: center; 
    padding: 20px; 
}

.modal.active { display: flex; }

.custom-scroll::-webkit-scrollbar { width: 5px; }
.custom-scroll::-webkit-scrollbar-thumb { background: #334155; border-radius: 10px; }