/* --- Dashboard Specifics --- */
.card-dashboard {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 204, 0.1);
}

.card-dashboard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 168, 204, 0.15);
    border-color: var(--ice-blue);
}

.card-page {
    border: 1px solid rgba(0, 168, 204, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    background: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-deep);
    line-height: 1;
    background: linear-gradient(135deg, var(--ice-blue), var(--ice-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Login Page --- */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    justify-content: center;
    /* Blend the gradient with the winter pattern from body, or re-apply */
    background: radial-gradient(circle at top right, rgba(227, 242, 253, 0.9), rgba(240, 248, 255, 0.9)), url('../img/bg_winter.png');
    background-blend-mode: overlay;
    background-repeat: repeat;
    background-size: 400px;
}

.login-card {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 168, 204, 0.15);
    /* Soft shadow */
    backdrop-filter: blur(10px);
}

.mascot-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.2);
    /* Placeholder background if image missing */
    background: var(--ice-blue-light);
}