/**
 * NEWZEEFY AGE CALCULATOR STYLESHEET (age-calculator.css)
 * Glassmorphism Input Cards, Live Age Ticker, Zodiac Badges & Dark/Light Mode
 */

.age-ticker-card {
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.25);
}

.age-number-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    transition: transform 0.25s ease;
}

.age-number-box:hover {
    transform: translateY(-4px);
}

.age-num-val {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.age-num-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

.zodiac-badge-pill {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    padding: 4px 12px;
    font-weight: 700;
    font-size: 0.8rem;
}

/* ==========================================================================
   DARK MODE OVERRIDES (body.dark-mode & [data-bs-theme="dark"])
   ========================================================================== */
body.dark-mode .zodiac-badge-pill,
[data-bs-theme="dark"] .zodiac-badge-pill {
    background: rgba(16, 185, 129, 0.2) !important;
    color: #34d399 !important;
    border-color: rgba(52, 211, 153, 0.3) !important;
}
