* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow: hidden;
            height: 100vh;
        }

        #sky {
            width: 100%;
            height: 100vh;
            position: relative;
            transition: background 2s ease;
        }

        .celestial-body {
            position: absolute;
            border-radius: 50%;
            transition: all 1s ease;
        }

        #sun {
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, #FFD700, #FFA500);
            box-shadow: 0 0 60px #FFD700, 0 0 100px #FFA500;
        }

        #moon {
            width: 70px;
            height: 70px;
            background: radial-gradient(circle, #F0F0F0, #C0C0C0);
            box-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
        }

        #moon::before {
            content: '';
            position: absolute;
            width: 15px;
            height: 15px;
            background: rgba(169, 169, 169, 0.5);
            border-radius: 50%;
            top: 15px;
            left: 20px;
        }

        #moon::after {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(169, 169, 169, 0.3);
            border-radius: 50%;
            top: 35px;
            left: 45px;
        }

        #time-display {
            position: absolute;
            text-align: center;
            top: 20px;
            left: 50%;
            top: 40%;
            transform: translateX(-50%);
            font-size: 48px;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            z-index: 10;
        }

        #date-display {
            position: absolute;
            text-align: center;
            top: 80px;
            left: 50%;
            top: 50%;
            transform: translateX(-50%);
            font-size: 24px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            z-index: 10;
        }

        #location-controls {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 10;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        #location-display {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 10px 15px;
            border-radius: 25px;
            font-size: 14px;
            backdrop-filter: blur(10px);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        #location-display:hover {
            background: rgba(0, 0, 0, 0.7);
        }

        #location-search-container {
            display: none;
            background: rgba(0, 0, 0, 0.8);
            padding: 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            min-width: 300px;
        }

        #location-search-container.active {
            display: block;
        }

        #location-input {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            margin-bottom: 10px;
            background: rgba(255, 255, 255, 0.9);
        }

        #location-input:focus {
            outline: 2px solid #4A90E2;
        }

        #search-button {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 8px;
            background: #4A90E2;
            color: white;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        #search-button:hover {
            background: #357ABD;
        }

        #use-current-location {
            width: 100%;
            padding: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: transparent;
            color: white;
            font-size: 12px;
            cursor: pointer;
            margin-top: 10px;
            transition: background 0.3s ease;
        }

        #use-current-location:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        #location-error {
            color: #FF6B6B;
            font-size: 12px;
            margin-top: 10px;
            display: none;
        }

        #location-suggestions {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 8px;
            margin-top: 5px;
            max-height: 200px;
            overflow-y: auto;
            display: none;
        }

        #location-suggestions.active {
            display: block;
        }

        .location-suggestion {
            padding: 10px;
            cursor: pointer;
            color: #333;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transition: background 0.2s ease;
        }

        .location-suggestion:last-child {
            border-bottom: none;
        }

        .location-suggestion:hover {
            background: rgba(74, 144, 226, 0.1);
        }

        .suggestion-name {
            font-weight: bold;
            font-size: 14px;
        }

        .suggestion-details {
            font-size: 12px;
            color: #666;
            margin-top: 2px;
        }

        #location-suggestions::-webkit-scrollbar {
            width: 6px;
        }

        #location-suggestions::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.1);
            border-radius: 3px;
        }

        #location-suggestions::-webkit-scrollbar-thumb {
            background: rgba(74, 144, 226, 0.5);
            border-radius: 3px;
        }

        #location-suggestions::-webkit-scrollbar-thumb:hover {
            background: rgba(74, 144, 226, 0.7);
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            opacity: 0;
            transition: opacity 2s ease;
            box-shadow: 0 0 3px white;
        }

        .cloud {
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 100px;
            opacity: 0.7;
        }

        .cloud::before,
        .cloud::after {
            content: '';
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 100px;
        }

        .cloud1 {
            width: 100px;
            height: 40px;
            top: 20%;
            left: 10%;
            animation: float 60s infinite ease-in-out;
        }

        .cloud1::before {
            width: 50px;
            height: 50px;
            top: -25px;
            left: 10px;
        }

        .cloud1::after {
            width: 60px;
            height: 40px;
            top: -15px;
            right: 10px;
        }

        .cloud2 {
            width: 120px;
            height: 50px;
            top: 40%;
            right: 15%;
            animation: float 80s infinite ease-in-out reverse;
        }

        .cloud2::before {
            width: 60px;
            height: 60px;
            top: -30px;
            left: 15px;
        }

        .cloud2::after {
            width: 70px;
            height: 50px;
            top: -20px;
            right: 15px;
        }

        @keyframes float {
            0%, 100% {
                transform: translateX(0) translateY(0);
            }
            50% {
                transform: translateX(100px) translateY(-20px);
            }
        }

        .rain-drop {
            position: absolute;
            width: 2px;
            height: 15px;
            background: linear-gradient(to bottom, transparent, rgba(174, 194, 224, 0.8));
            animation: fall linear infinite;
            opacity: 0;
        }

        @keyframes fall {
            to {
                transform: translateY(100vh);
            }
        }

        .snow-flake {
            position: absolute;
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            animation: snow-fall linear infinite;
            opacity: 0;
            box-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
        }

        @keyframes snow-fall {
            to {
                transform: translateY(100vh) translateX(50px);
            }
        }