  /* Universal reset and font */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            transition: all 0.3s ease;
        }

        /* Overall body layout */
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            color: #fff;
            background: #0c0c0c; /* A darker shade of black */
            overflow: hidden;
            perspective: 1200px; /* Increased perspective for more pronounced 3D */
        }

        /* Background image container with blur effect */
        .background-blur {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(/assets/beautiful-woman-ai-3840x2160-12863.jpg) no-repeat center center/cover;
            filter: blur(20px); /* Slightly more blur */
            z-index: -1;
        }

        /* Container to center and handle perspective origin */
        .clock-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 30vh; /* Adjust height as needed */
        }

        /* Main clock element - The glass panel */
        .clock {
            display: flex;
            align-items: center;
            padding: 30px 40px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            box-shadow:
                0 8px 32px 0 rgba(31, 38, 135, 0.37), /* Outer shadow for depth */
                inset 0 -3px 0 rgba(0, 0, 0, 0.1), /* Bottom inner shadow for a 'ledge' */
                inset 0 3px 0 rgba(255, 255, 255, 0.15); /* Top inner highlight for gloss */
            backdrop-filter: blur(30px) saturate(150%);
            -webkit-backdrop-filter: blur(30px) saturate(150%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transform-style: preserve-3d; /* Enable 3D transformations on children */
            animation: floatGlossy 8s infinite ease-in-out;
            position: relative; /* Needed for header positioning */
        }

        /* Header for the author's name */
        .header {
            position: absolute;
            top: 20px;
            font-size: 1.2rem;
            font-weight: 500;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.7);
            transform: translateZ(50px);
        }

        /* Styling for hours, minutes, and seconds */
        #hours, #minutes, #seconds {
            font-size: 9rem;
            font-weight: bold;
            color: #fff; /* White font color */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
            transform: translateZ(20px); /* Push text forward for a subtle layer effect */
        }

        /* Separator between time elements */
        .separator {
            font-size: 6rem;
            font-weight: bold;
            color: #e50914; /* Netflix red */
            margin: 0 15px;
            transform: translateZ(20px);
        }

        /* Styling for AM/PM */
        #timeformat {
            font-size: 1.8rem;
            font-weight: bold;
            margin-left: 10px;
            text-transform: uppercase;
            transform: translateY(10px) translateZ(20px);
            color: rgba(255, 255, 255, 0.7);
        }

        /* --- 3D Animation --- */
        @keyframes floatGlossy {
            0%, 100% {
                transform: translateY(0) rotateX(0deg) rotateY(0deg);
            }
            50% {
                transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
            }
        }