/* Styles specific ONLY to the QuizTime showcase page */

/* A generic card background for this page */
.tech-card-bg {
    background-color: #ffffff;
    border: 1px solid #e2e8f0; /* slate-200 */
}

/* Interactive architecture diagram boxes */
.architecture-box {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.architecture-box:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-color: #059669; /* emerald-600 */
}

/* Lines connecting the architecture diagram */
.connector {
    position: absolute;
    background-color: #cbd5e1; /* slate-300 */
    z-index: -10;
}

/* Active state for tabs in the tech stack section */
.tab.active {
    background-color: #059669; /* emerald-600 */
    color: white;
}

/* --- Dark Mode Overrides for this page --- */

.dark .tech-card-bg {
    background-color: #1e293b; /* slate-800 */
    border-color: #334155; /* slate-700 */
}

.dark .architecture-box:hover {
    border-color: #34d399; /* emerald-400 */
}

.dark .tab.active {
    background-color: #34d399; /* emerald-400 */
    color: #1e293b; /* slate-800 */
}

.dark .info-box-text {
    color: #6ee7b7; /* emerald-300 */
}
