/* Custom Overrides for PHP Version */

/* Tab Switching Animation */
.animate-tab {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tab Panel Hidden State */
.hidden {
    display: none !important;
}

/* Active Sidebar Navigation */
.tab-trigger.active {
    background-color: #DBEAFE !important; /* primary-light */
    color: #1E40AF !important; /* primary */
}

/* Glassmorphism Accents */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Tile highlighting for games */
.tile-active {
    background-color: #1E40AF !important; /* primary */
    transform: scale(0.95);
    box-shadow: 0 0 20px rgba(30, 64, 175, 0.4);
}