

        #clock-container {

            position: fixed;
            bottom: 30px;
            right: 30px;
            background: rgba(16, 22, 32, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 12px 24px;
            border-radius: 16px;
            border: 1px solid rgba(0, 210, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); 
            inset 0 0 10px rgba(0, 210, 255, 0.05);
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            transition: all 0.3s ease;
        }

        #clock-container:hover {
            border-color: rgba(0, 210, 255, 0.5);
            transform: translateY(-2px);
        }

        .time-wrapper {
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        #time-display {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
            letter-spacing: -0.5px;
            margin: 0;
        }

        #seconds-display {
            font-size: 1rem;
            color: #00d2ff;
            font-weight: 500;
            opacity: 0.8;
            width: 25px;
        }

        .details-wrapper {
            font-size: 0.65rem;
            font-weight: 600;
            color: #00d2ff;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 2px;
            display: flex;
            gap: 10px;
        }

        .status-dot {
            height: 6px;
            width: 6px;
            background-color: #00d2ff;
            border-radius: 50%;
            display: inline-block;
            margin-right: 4px;
            box-shadow: 0 0 8px #00d2ff;
        }
