 body {
            margin: 0;
            padding: 0;
            font-family: 'Space Mono', monospace; /* Technical font */
            overflow: hidden; /* Locked during load */
            background-color: #000;
        }

        /* --- LOADER CONTAINER --- */
        .loader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: #050505; /* Almost black */
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.8);
            /* Subtle vignette effect for viewfinder feel */
            box-shadow: inset 0 0 150px rgba(0,0,0,0.9);
        }

        /* --- VIEWFINDER UI ELEMENTS (Corners) --- */
        .vf-ui {
            position: absolute;
            pointer-events: none;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .vf-top-left { top: 30px; left: 30px; text-align: left; }
        .vf-top-right { top: 30px; right: 30px; text-align: right; display: flex; align-items: center;}
        .vf-bottom-left { bottom: 30px; left: 30px; }
        .vf-bottom-right { bottom: 30px; right: 30px; }
        .vf-center {
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2rem;
            opacity: 0.3;
            font-weight: 100;
        }

        /* The Blinking Red Dot */
        .rec-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: #ff0000;
            border-radius: 50%;
            margin-right: 8px;
            box-shadow: 0 0 8px #ff0000;
        }

        /* --- CENTER LOADING CONTENT --- */
        .loader-center-content {
            text-align: center;
            z-index: 2;
        }

        /* Timecode style counter */
        .timecode-wrap {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .loading-bar-container {
            width: 200px;
            height: 4px;
            background-color: rgba(255,255,255,0.2);
            margin: 0 auto;
            position: relative;
        }

        .loading-bar-fill {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0%;
            background-color: #ff0000; /* Red loading bar */
        }


        /* --- ACTUAL WEBSITE CONTENT --- */
        /* Using a high-quality production still */
 