        :root {
            --primary: #3b82f6;
            --primary-dark: #2563eb;
            --bg-light: #f0f9ff;
            --bg-dark: #0f172a;
            --text-light: #1e293b;
            --text-dark: #f1f5f9;
            --glass-light: rgba(255, 255, 255, 0.7);
            --glass-dark: rgba(15, 23, 42, 0.6);
            --border-light: rgba(255, 255, 255, 0.5);
            --border-dark: rgba(255, 255, 255, 0.1);
            --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

        body {
            font-family: 'Be Vietnam Pro', sans-serif;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--bg-light);
            color: var(--text-light);
            position: relative;
            overflow: hidden;
            /* Fix view on large screens */
        }

        /* Allow scrolling on smaller screens where content might be cut off */
        @media (max-height: 900px),
        (max-width: 768px) {
            body {
                overflow-y: auto;
                padding: 40px 20px;
                /* Add padding for scrollable view */
                display: block;
                /* Switch to block to allow natural flow */
            }

            .card {
                margin: 0 auto;
                /* Center card in block layout */
                transform: none !important;
                /* Disable centering transform if any */
            }
        }

        body.dark-mode {
            background: var(--bg-dark);
            color: var(--text-dark);
        }

        /* Animated Background Blobs */
        .blob {
            position: absolute;
            filter: blur(80px);
            z-index: 0;
            opacity: 0.6;
            animation: float 10s infinite alternate;
        }

        .blob-1 {
            top: -10%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: #60a5fa;
            animation-delay: 0s;
        }

        .blob-2 {
            bottom: -10%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: #a78bfa;
            animation-delay: -5s;
        }

        .blob-3 {
            top: 40%;
            left: 40%;
            width: 300px;
            height: 300px;
            background: #34d399;
            animation-delay: -2s;
            opacity: 0.4;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }

            100% {
                transform: translate(30px, 50px) rotate(10deg);
            }
        }

        /* Glassmorphism Card */
        .card {
            position: relative;
            z-index: 10;
            background: var(--glass-light);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 1.5rem;
            width: 90%;
            max-width: 500px;
            box-shadow: var(--shadow);
            text-align: center;
            animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* ... (skip unchanged) ... */

        /* Content */
        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.2rem;
            text-align: center;
        }

        .logo-img {
            width: 50px;
            height: auto;
            margin-bottom: 5px;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
            animation: floatLogo 6s ease-in-out infinite;
        }

        /* ... (skip unchanged) ... */

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.1rem;
            display: inline-block;
            text-decoration: none;
            /* ... */
        }

        /* ... */

        .status-badge {
            display: block;
            width: fit-content;
            margin: 0 auto 1rem auto;
            padding: 6px 20px;
            background: rgba(37, 99, 235, 0.15);
            color: var(--primary);
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            border: 1px solid rgba(37, 99, 235, 0.3);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulseBadge 2s infinite;
        }

        /* ... */

        /* Stats Container - Compact */
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 1rem;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.6);
            padding: 6px 12px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* ... */

        h1 {
            font-size: 1.4rem;
            margin-bottom: 0.3rem;
            line-height: 1.2;
        }

        p.desc {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        /* Info Bar (Time & Location) */
        .info-bar {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            margin-bottom: 1rem;
        }

        #timeDisplay {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--primary), #9333ea);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.2rem;
            font-variant-numeric: tabular-nums;
        }

        .location-wrapper {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 2px;
            letter-spacing: 0.5px;
        }

        .date-display {
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1px;
            opacity: 0.9;
        }

        .lunar-date-display {
            font-size: 0.8rem;
            font-style: italic;
            opacity: 0.8;
            color: #ffd700;
        }

        .location-wrapper,
        .weather-wrapper {
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            border: 1px solid var(--border-light);
            backdrop-filter: blur(4px);
        }

        /* Ecosystem Links */
        .ecosystem {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .eco-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            text-decoration: none;
            color: var(--primary-dark);
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
        }

        .eco-icon {
            font-size: 1.5rem;
            margin-bottom: 0.3rem;
        }

        .eco-name {
            font-weight: 600;
            font-size: 0.8rem;
        }

        /* CTA Button */
        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, #2563eb, #4f46e5);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
            position: relative;
            overflow: hidden;
            font-size: 0.9rem;
        }

        /* Footer */
        .footer {
            margin-top: 1.5rem;
            font-size: 0.7rem;
            opacity: 0.5;
        }

        body.dark-mode .card {
            background: var(--glass-dark);
            border-color: var(--border-dark);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Header & Controls */
        .header-controls {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 20;
        }

        .icon-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            backdrop-filter: blur(4px);
        }

        .icon-btn:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
        }

        /* Content */
        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .logo-img {
            width: 80px;
            height: auto;
            margin-bottom: 10px;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
            animation: floatLogo 6s ease-in-out infinite;
        }

        @keyframes floatLogo {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.1rem;
            display: inline-block;
            text-decoration: none;

            /* Handle long text */
            max-width: 100%;
            word-wrap: break-word;
            word-break: break-word;
            line-height: 1.2;
        }

        .logo.long-text {
            font-size: 1.8rem;
        }

        .logo.very-long-text {
            font-size: 1.4rem;
        }

        .status-badge {
            display: block;
            /* Separate line */
            width: fit-content;
            margin: 0 auto 1rem auto;
            padding: 8px 24px;
            /* Bigger */
            background: rgba(37, 99, 235, 0.15);
            color: var(--primary);
            border-radius: 50px;
            font-size: 1.2rem;
            /* Much bigger */
            font-weight: 800;
            /* Boldest */
            border: 2px solid rgba(37, 99, 235, 0.3);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulseBadge 2s infinite;
        }

        @keyframes pulseBadge {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
            }

            70% {
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
            }
        }

        /* Stats Container - Enhanced */
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 1rem;
            font-size: 1rem;
            color: var(--text-light);
        }

        body.dark-mode .stats-container {
            color: var(--text-dark);
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.6);
            padding: 10px 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        body.dark-mode .stat-item {
            background: rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .stat-icon {
            font-size: 1.2rem;
        }

        .stat-value {
            font-weight: 700;
            font-variant-numeric: tabular-nums;
        }

        .stat-label {
            font-size: 0.8rem;
            opacity: 0.7;
            margin-left: 5px;
        }

        /* Notifications (Toast) */
        #notification-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .toast {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 15px;
            min-width: 300px;
            transform: translateX(120%);
            transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .toast.enter {
            border-left: 4px solid var(--primary);
        }

        .toast.leave {
            border-left: 4px solid #f97316;
            /* Orange */
        }

        body.dark-mode .toast {
            background: rgba(30, 41, 59, 0.9);
            color: white;
        }

        .toast.show {
            transform: translateX(0);
        }

        .toast-icon {
            font-size: 1.5rem;
        }

        .toast-content {
            display: flex;
            flex-direction: column;
        }

        .toast-title {
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 2px;
        }

        .toast-message {
            font-size: 0.8rem;
            opacity: 0.8;
        }

        h1 {
            font-size: 1.8rem;
            margin-bottom: 0.3rem;
            line-height: 1.2;
        }

        p.desc {
            font-size: 1rem;
            opacity: 0.8;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        /* Info Bar (Time & Location) */
        .info-bar {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            margin-bottom: 1rem;
        }

        #timeDisplay {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -2px;
            background: linear-gradient(135deg, var(--primary), #9333ea);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.3rem;
            font-variant-numeric: tabular-nums;
            /* Prevent jitter */
        }

        body.dark-mode #timeDisplay {
            background: linear-gradient(135deg, #60a5fa, #c084fc);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .location-wrapper {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .date-display {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 2px;
            opacity: 0.9;
        }

        .lunar-date-display {
            font-size: 0.9rem;
            font-style: italic;
            opacity: 0.8;
            color: #ffd700;
            /* Gold color for lunar date */
        }

        .location-wrapper,
        .weather-wrapper {
            padding: 6px 16px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            border: 1px solid var(--border-light);
            backdrop-filter: blur(4px);
        }

        .weather-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        body.dark-mode .location-wrapper {
            background: rgba(0, 0, 0, 0.2);
            border-color: var(--border-dark);
        }

        /* Ecosystem Links - Ultra Compact */
        .ecosystem {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(65px, 1fr));
            gap: 0.4rem;
            margin-bottom: 0.8rem;
        }

        .eco-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0.5rem 0.2rem;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 10px;
            text-decoration: none;
            color: var(--primary-dark);
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            position: relative;
            /* For tooltip positioning */
        }

        /* Custom Instant Tooltip */
        .eco-link::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 110%;
            left: 50%;
            transform: translateX(-50%) translateY(5px);
            background: rgba(15, 23, 42, 0.9);
            color: white;
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 0.7rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            visibility: hidden;
            z-index: 100;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            font-weight: 500;
        }

        .eco-link:hover::after {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-5px);
        }

        body.dark-mode .eco-link {
            background: rgba(255, 255, 255, 0.05);
            color: inherit;
            border-color: transparent;
            box-shadow: none;
        }

        .eco-link:hover {
            background: #ffffff;
            transform: translateY(-2px);
            border-color: var(--primary);
            box-shadow: 0 4px 10px -2px rgba(37, 99, 235, 0.2);
        }

        body.dark-mode .eco-link:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .eco-icon {
            width: 24px;
            height: 24px;
            margin-bottom: 0.2rem;
            stroke: var(--primary);
            /* Use primary color */
            stroke-width: 2px;
            fill: none;
            transition: stroke 0.3s ease;
        }

        .eco-link:hover .eco-icon {
            stroke: #2563eb;
            /* Darker blue on hover */
            transform: scale(1.1);
            /* Subtle zoom */
        }

        .eco-name {
            font-weight: 600;
            font-size: 0.7rem;
            white-space: nowrap;
            letter-spacing: -0.2px;
        }

        /* CTA Button */
        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, #2563eb, #4f46e5);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }

        .cta-btn:hover::after {
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            100% {
                transform: translateX(100%);
            }
        }

        /* Footer */
        .footer {
            margin-top: 1.5rem;
            font-size: 0.8rem;
            opacity: 0.5;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .card {
                padding: 2rem;
                width: 95%;
            }

            .ecosystem {
                grid-template-columns: 1fr;
            }

            .eco-link {
                flex-direction: row;
                padding: 0.8rem;
            }

            .eco-icon {
                margin-bottom: 0;
                margin-right: 1rem;
                font-size: 1.5rem;
            }

            #notification-container {
                left: 20px;
                right: 20px;
                bottom: 20px;
            }

            .toast {
                min-width: auto;
            }
        }

        #particleCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            /* Behind card (10) but above blobs (0) */
            pointer-events: none;
        }

        /* Sky Objects Container - NOW ON TOP */
        #sky-objects {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
            /* Lower than card (10) */
            pointer-events: none;
            /* Allow clicks to pass through */
            overflow: hidden;
        }

        /* SUN */
        #sun {
            position: absolute;
            top: 10%;
            left: 10%;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, #ffd700, #ff8c00);
            border-radius: 50%;
            box-shadow: 0 0 40px #ff8c00, 0 0 80px #ffd700;
            box-shadow: 0 0 40px #ff8c00, 0 0 80px #ffd700;
            opacity: 0;
            transition: left 1s ease, top 1s ease, opacity 1s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: auto;
            cursor: pointer;
            /* Transform is now handled by JS for precise positioning */
        }

        #sun:hover {
            transform: scale(1.3);
            z-index: 100;
        }

        #sun.visible {
            opacity: 0.9;
        }

        .rays {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            background: repeating-conic-gradient(from 0deg, rgba(255, 215, 0, 0.2) 0deg 10deg, transparent 10deg 20deg);
            border-radius: 50%;
            animation: rotateRays 20s linear infinite;
        }

        @keyframes rotateRays {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        /* MOON */
        #moon {
            position: absolute;
            top: 10%;
            left: 10%;
            width: 80px;
            height: 80px;
            background: #f4f6f0;
            border-radius: 50%;
            box-shadow: 0 0 20px #f4f6f0, 0 0 50px rgba(255, 255, 255, 0.2);
            opacity: 0;
            transition: left 1s ease, top 1s ease, opacity 1s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: auto;
            cursor: pointer;
        }

        #moon:hover {
            transform: scale(1.3);
            z-index: 100;
        }

        #moon.visible {
            opacity: 1;
        }

        .crater {
            position: absolute;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 50%;
        }

        .c1 {
            width: 20px;
            height: 20px;
            top: 20%;
            left: 20%;
        }

        .c2 {
            width: 10px;
            height: 10px;
            top: 60%;
            left: 50%;
        }

        .c3 {
            width: 15px;
            height: 15px;
            top: 40%;
            left: 70%;
        }

        /* CLOUDS */
        #clouds {
            opacity: 0;
            transition: opacity 1s ease;
            z-index: 21;
            /* Even higher */
        }

        #clouds.visible {
            opacity: 1;
        }

        .cloud {
            position: absolute;
            background: rgba(255, 255, 255, 0.8);
            /* More visible */
            border-radius: 50px;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
            animation: moveCloud linear infinite;
        }

        .cloud::after {
            content: '';
            position: absolute;
            background: inherit;
            border-radius: 50%;
            top: -20px;
            left: 15px;
            width: 40px;
            height: 40px;
        }

        .cloud.c1 {
            width: 120px;
            height: 40px;
            top: 15%;
            left: -150px;
            animation-duration: 40s;
        }

        .cloud.c2 {
            width: 100px;
            height: 35px;
            top: 25%;
            left: -120px;
            animation-duration: 35s;
            animation-delay: 5s;
        }

        .cloud.c3 {
            width: 140px;
            height: 50px;
            top: 10%;
            left: -180px;
            animation-duration: 45s;
            animation-delay: 10s;
        }

        /* Extra clouds for "floating everywhere" effect */
        .cloud.c4 {
            width: 90px;
            height: 30px;
            top: 60%;
            left: -100px;
            animation-duration: 50s;
            animation-delay: 2s;
        }

        .cloud.c5 {
            width: 110px;
            height: 45px;
            top: 80%;
            left: -200px;
            animation-duration: 42s;
            animation-delay: 15s;
        }

        @keyframes moveCloud {
            from {
                left: -200px;
            }

            to {
                left: 100%;
            }
        }

        /* RAIN OVERLAY */
        #rain-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 22;
            /* Highest */
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
            background-size: 100% 20px;
            opacity: 0;
            transition: opacity 1s ease;
        }

        #rain-overlay.visible {
            opacity: 0.4;
            animation: rainDrop 0.5s linear infinite;
        }

        @keyframes rainDrop {
            from {
                background-position: 0 0;
            }

            to {
                background-position: 0 100px;
            }
        }

        /* Hide default cursor only on interactive elements for a cleaner look */
        a,
        button,
        .icon-btn,
        .cta-btn,
        .eco-link {
            cursor: pointer;
        }

        /* Dynamic Backgrounds (Intensified) */
        body.morning {
            background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
        }

        body.noon {
            background: linear-gradient(135deg, #2980b9 0%, #6dd5fa 100%, #ffffff 100%);
        }

        body.afternoon {
            background: linear-gradient(135deg, #ff9966 0%, #ff5e62 100%);
        }

        body.night {
            background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
        }

        body.rain {
            background: linear-gradient(to bottom, #141E30, #243B55);
        }

        body.snow {
            background: linear-gradient(to bottom, #E6DADA, #274046);
        }

        /* Dark Mode Override */
        body.dark-mode .card {
            background: rgba(17, 25, 40, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.125);
        }