/* ==========================================================================
   Features Page
   ========================================================================== */

/* Features Page Specifics */
.features-main {
    background-color: var(--bg-body);
    min-height: 100vh;
    padding: 6rem 8%;
    text-align: center;
}

.features-header {
    max-width: 800px;
    margin: 0 auto 5rem;
}

.features-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto); 
    gap: 2rem;
}

.bento-item {
    background: var(--bg-body);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--button); 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 
                0 2px 4px -1px rgba(0, 0, 0, 0.03);
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--accent); 
}

.bento-item.large { 
    grid-column: span 2; 
}

.bento-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: var(--bg-card);
    padding: 4px 12px;
    border-radius: 20px;
}

.bento-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.bento-item p {
    color: var(--text-mutet);
    line-height: 1.6;
    font-size: 0.95rem;
}

.status-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: auto; 
    padding-top: 2rem;
}

.status-tag {
    padding: 6px 14px;
    border-radius: 8px; 
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.playing { background: var(--playing); } 
.completed { background: var(--complete); } 
.on-hold { background: var(--on-hold); } 
.dropped { background: var(--dropped); } 
.planned { background: var(--planned); } 

/* Rating Visual */
.rating-visual {
    font-size: 3.5rem;
    font-weight: 800;
    margin-top: auto;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(245, 158, 11, 0.3)); 
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-item.large {
        grid-column: span 1;
    }
}

/* Database Box Effect */

.search-simulation {
    margin-top: 1.5rem;
    background:var(--button) ;
    padding: 10px 15px;
    border-radius: 10px;
    font-family: monospace;
    color: var(--text-mutet);
    border: 1px solid var(--color-border);
}

.cursor {
    animation: blink 1s infinite;
    color: var(--accent);
    font-weight: bold;
}

@keyframes blink {
    50% { opacity: 0; }
}