        :root {
            --bg-color: #121214;
            --text-color: #ececec;
            --clock-bg: #1a1a1d;
            --clock-border: #242428;
            --hand-color: #ffffff;
            --accent-color: #00f0ff; /* Electric Cyber-Cyan */
            --shadow-outer: 10px 10px 30px rgba(0, 0, 0, 0.6), -10px -10px 30px rgba(255, 255, 255, 0.02);
            --shadow-inner: inset 5px 5px 15px rgba(0, 0, 0, 0.5), inset -5px -5px 15px rgba(255, 255, 255, 0.03);
            --digital-clock-color: #00f0ff;
        }


        html {
            overflow-x: hidden;            /* prevent horizontal scroll */
            overscroll-behavior: none;     /* disable pull-to-refresh */
            touch-action: pan-y pinch-zoom;/* control touch gestures */
            /* Optional: disable text selection and tap highlight */
            /* user-select: none; */
            /* -webkit-user-select: none; */
            /* -webkit-tap-highlight-color: transparent; */
        }

        body {
            margin: 0;
            padding: 20px 0 60px 0;
            min-height: 100vh;             /* full viewport height */
            color: var(--text-color);
            font-family: 'Segoe UI', Roboto, Helvetica, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: color 0.5s ease, background-image 0.8s ease-in-out;

            /* 1. STARTING STATE: Solid dark background */
            background-color: #000000; 
    
            position: relative; 
            -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
        }

        /* Light mode palette overrides */
        body.light-mode {
            --bg-color: #ceced48b;
            --text-color: #0e0f15;
            --clock-bg: #e6e7ee;
            --clock-border: #d1d9e6;
            --hand-color: #31344b;
            --accent-color: #005bb5; /* Deep Professional Blue */
            --shadow-outer: 8px 8px 16px #d1d9e6, -8px -8px 16px #ffffff;
            --shadow-inner: inset 5px 5px 10px #d1d9e6, inset -5px -5px 10px #ffffff;
        }

        .fixed-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -2; /* behind the overlay */
            transition: background-image 0.8s ease-in-out;
        }

        /* THE OVERLAY: This sits between your wallpaper and your clock/text */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            /* 3. THE MASK: 0.75 opacity for that deep, dark premium look */
            background-color: rgba(0, 0, 0, 0.75); 
            
            /* 4. THE FROST: Blur is subtle (1px) as you requested 
            backdrop-filter: blur(1px); /* 15px for that sleek look 
            -webkit-backdrop-filter: blur(1px); /* for safari */
            
            z-index: -1; 
            transition: background-color 0.5s ease;
        }

        /* Light mode overlay adjustment */
        body.light-mode::before {
            background-color: rgba(255, 255, 255, 0.255); 
        }

        /* Zen mode for your clock (makes background transparent) */
        .clock.zen-mode {
            background: transparent !important;
            box-shadow: none !important;
        }

        /* Optional: make numbers glow more in Zen mode */
        .clock.zen-mode .number {
            text-shadow: 0 0 15px rgba(255, 0, 255, 0.7);
        }

        /* Optional: also make hands a bit more subtle */
        .clock.zen-mode .hand {
            opacity: 0.8;
        }


        /* Position the switch wrapper at top-right */
        .theme-switch-wrapper {
        position: absolute;
        top: 20px;
        right: 20px;
        padding-top: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 1000;
        }

        /* The actual switch */
        .switch {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 28px;
        }

        .switch input {
        opacity: 0;
        width: 0;
        height: 0;
        }

        .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #565353;
        transition: .4s;
        border-radius: 34px;
        }

        .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 4px;
        background-color: rgb(255, 217, 0);
        transition: .4s;
        border-radius: 50%;
        }

        input:checked + .slider {
        background-color: #2196F3;
        }

        input:checked + .slider:before {
        transform: translateX(16px);
        }

        /* Optional text beside the switch 
        .switch-label {
        font-size: 0.9rem;
        color: #333;
        }*/
        

        /* Premium Clock Face */
        .clock {
            width: 520px; /* was 320*/
            height: 520px; /* was 320*/
            background-color: var(--clock-bg);
            border-radius: 50%;
            position: relative;
            /*box-shadow: var(--shadow-outer);*/
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.5s ease;
            margin-top: 60px;
            margin-bottom: 40px;
        }

        /* Inner Ring */
        .clock::before {
            content: '';
            position: absolute;
            width: 490px; /* was 290*/
            height: 490px; /* was 290*/
            border-radius: 50%;
            box-shadow: var(--shadow-inner);
        }

        /* Clock Numbers */
        .number {
            position: absolute;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-color);
            opacity: 0.8;
        }
        .num-12 { top: 25px; }
        .num-3 { right: 25px; }
        .num-6 { bottom: 25px; }
        .num-9 { left: 25px; }

        /* Clock Hands */
        .hand {
            position: absolute;
            bottom: 50%;
            left: 50%;
            transform-origin: bottom;
            background-color: var(--hand-color);
            border-radius: 10px;
            transform: translateX(-50%) rotate(0deg); 
            transition: background-color 0.5s ease;
        }

        .hour { width: 6px; height: 115px; z-index: 1; border-radius: 6px 6px 0 0; }
        .minute { width: 4px; height: 150px; z-index: 2; border-radius: 4px 4px 0 0; }
        
        .second { 
            width: 2px; 
            height: 240px; 
            background-color: var(--accent-color); 
            z-index: 3; 
            box-shadow: 0 0 10px var(--accent-color); /* Glowing effect */
        }

        /* Center Pin */
        .center-dot {
            width: 32px;
            height: 32px;
            background-color: var(--bg-color);
            border: 3px solid var(--accent-color);
            border-radius: 50%;
            position: absolute;
            z-index: 4;
            box-shadow: 0 0 10px var(--accent-color);
        }

        /* Typography */
        /*.name-plate {
            text-align: center;
            font-size: 1.5rem;
            letter-spacing: 4px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }*/
        /* Main title bigger */
        .name-plate.main-title {
            text-align: center;
            font-size: 1.7rem; /* Adjust as you like */
            letter-spacing: 2px; /* Optional: a bit more spacing for impact */
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 10px;
            padding-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        /* Author info (inside #info-section) larger */
        #info-section .name-plate {
            text-align: center;
            font-size: 1.0rem; /* Adjust as you like */
            letter-spacing: 1px; /* Optional: a bit more spacing for impact */
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 5px;
            padding-bottom: 5px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .name-accent {
            color: #ffad16;
        }
        .title-accent { 
            color: #4af600;               /* Bright green */ 
            text-shadow: 0 0 4px #ff0000, 0 0 8px #4dff00; /* Glow */
        }



        /* Container for the slideshow */
        .content-blocks {
            text-align: center;
            width: 100%;
            max-width: 800px;
            min-height: 500px;  /* Adjust based on your tallest image/text combo */
            position: relative;
            margin: 20px auto; /* 40px before */
            padding: 0 20px 100px 20px; /* Top, Right, Bottom (Large for footer space), Left */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;    /* Ensures padding is included in width */
        }

        /* Individual block: Stacked on top of each other */
        .block {
            text-align: center;
            position: absolute;
            top: 0;
            width: 100%;
            display: none;             /* Hidden by default */
            flex-direction: column;
            align-items: center;       /* Centers inline content (images and text) */
            opacity: 0;
            transition: opacity 1s ease-in-out; /* Smooth 1-second fade */
        }

        /* The active block will be shown and faded in */
        .block.active {
            display: flex;
            opacity: 1;
        }

        
        /* Unified Controls
        /* 1. Main Container: Using Flexbox to stack rows */
        .controls {
            display: flex;
            flex-direction: column; 
            align-items: center;    
            gap: 20px;              /* Vertical space between Buttons and Slider */
            margin-top: 5px;
            margin-bottom: 5px;
            z-index: 100;
        }

        /* --- New row layout --- */
        .button-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;          /* space between items in the row */
            width: 100%;
        }

        /* Make sure buttons feel like real hardware */
        button {
            touch-action: manipulation;
        }
        
        /* Freeze Button: Electric Cyan Theme */
        #freeze-btn {
            background: transparent;
            color: #00fffb; 
            border: 2px solid var(--clock-border);
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            opacity: 0.7;
        }

        #freeze-btn:hover {
            opacity: 1;
            box-shadow: 0 0 15px rgba(0, 255, 251, 0.6);
            background: rgba(0, 255, 251, 0.05);
        }

        #freeze-btn.frozen {
            background: transparent; /* Your specific magenta-tint background */
            color: #ffff00;        /* Yellow text for high contrast */
            font-weight: bold;
            opacity: 1;
            border-color:#1a1a1d;
        }

        /* Background Toggle Button: Standard to Magenta Theme */
        #bg-toggle-btn {
            background: transparent;
            color: var(--text-color);
            border: 2px solid var(--clock-border);
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            opacity: 0.7;
        }

        #bg-toggle-btn:hover {
            opacity: 1;
            border-color: #ff00ff;
            box-shadow: 0 0 15px rgba(255, 0, 225, 0.682);
            color: #ff00ff;
        }

        #zen-toggle-btn {
            background: transparent;
            color: var(--text-color);
            border: 2px solid var(--clock-border);
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            opacity: 0.7;
            min-width: 140px;   /* gives them a consistent width (adjust if needed) */
        }

        
        #zen-toggle-btn:hover {
            color: #ffb835;
            border-color: #ffb835;
            box-shadow: 0 0 15px rgb(255, 200, 0);
        }

        /* Zen button active state (matches your 'frozen' style) */
        #zen-toggle-btn.zen-active {
            background: transparent;
            color: #272627;
            border-color: #272627;
            opacity: 1;
        }


        /* 3. Volume Row: Centered below buttons */
        .volume-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;            /* space between icon and slider */
            width: 100%;
            margin-top: 5px;
        }

        .vol-icon {
            font-size: 1.2rem;
            margin-right: 12px;
            opacity: 0.7;
            color: var(--text-color);
        }

        /* The Slider Track */
        #volume-slider {
            -webkit-appearance: none;
            appearance: none;
            width: 100px;        /* was 150px – makes room for the icon */
            height: 4px;
            background: var(--clock-border);
            border-radius: 5px;
            outline: none;
            cursor: pointer;
        }

        /* Slider Thumb: Electric Cyan Glow */
        #volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 14px;
            height: 14px;
            background: #00fffb;
            border-radius: 50%;
            box-shadow: 0 0 10px #00fffb;
            transition: transform 0.2s ease;
        }

        #volume-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
        }

        #volume-slider::-moz-range-thumb {
            width: 14px;
            height: 14px;
            background: #00fffb;
            border-radius: 50%;
            border: none;
            box-shadow: 0 0 10px #00fffb;
        }

        #mute-btn:hover {
            opacity: 1 !important;
            transform: scale(1.2);
            transition: transform 0.2s ease;
        }

        #mute-btn:active {
            transform: scale(0.9); /* Click "shrink" effect */
        }

        


        /* Typewriter Cursor Animation */
        .cursor {
        color: var(--accent-color);
        font-weight: bold;
        animation: blink 0.7s infinite;
        }

        @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
        }

        /* Typewriter Text Color & Glow */
        #typewriter {
        color: #f6ff00; /* ff00ff Solid Magenta/ Solid Yellow */
        text-shadow: 0 0 5px rgba(255, 0, 255, 0.236);
        font-weight: bold;
        }

        /* Matching Cursor */
        .cursor {
        color: #ff00ff; /*ff00ff Solid Magenta */
        font-weight: bold;
        animation: blink 0.7s infinite;
        }
                

        /* Image Block */
        .image-block {
            width: 370px;/*180px*/
            height: 250px;/*180px*/
            border-radius: 16px; /* Slightly rounded corners look better than sharp squares */
            overflow: hidden;
            /*box-shadow: var(--shadow-outer);*/
            margin: 0 auto 20px;
            transition: all 0.5s ease;
        }

        .image-block img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the image fills the square without stretching */
            display: block;
        }


        /* Optional: style the paragraph text */
        .block-text {
            text-align: center;
            font-size: small;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto 20px;            /* Centers text block */
            padding: 0 10px;
        }


        #ghost-indicator {
            position: fixed;
            top: 20px;
            left: 20px;
            font-size: 1.5rem;
            color: #ff00ff; /* Magenta to match your theme */
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
            opacity: 0;
            pointer-events: none; /* User can't accidentally click it */
            transition: opacity 0.3s ease;
            z-index: 1000;
        }

        #ghost-indicator.show {
            opacity: 0.8;
        }



        /* Updated Digital Clock As on Android Flagship Look */
        /* #digital-clock {
            font-size: 7rem;               /* Much bigger, like a home screen */
            /*font-weight: 300;               /* 200 Thin/Light weight is the "Elite" look */
            /*letter-spacing: -2px;           /* Tighter spacing for modern feel */
            /*color: #00fffb;                 /* Electric Cyan (match your theme) */
            /*text-shadow: 0 0 30px rgba(0, 255, 251, 0.504);
            
            /* Using system fonts mimics the Android/Motorola OS font */
            /*font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            
            margin: 10px 0;
            line-height: 1;
        }
        /* Stacked Digital Look - Perfectly Centered */
        #digital-clock {
            display: none; /* Controlled by JS */
            flex-direction: column;
            align-items: center;    /* Centers items horizontally */
            justify-content: center; /* Centers items vertically in the wrapper */
            line-height: 0.85;       /* Tighter stack for that S25 Ultra look */
            width: 100%;
            margin: 0 auto;
            padding-top: 60px;
        }

        #digital-clock #digi-hours, 
        #digital-clock #digi-minutes {
            font-size: 8rem; 
            font-weight: 200;
            /* Using system fonts mimics the Android/Motorola OS font */
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            text-align: center;
            letter-spacing: -2px;
        }

        /* Container for Colon + Minutes to keep them centered together */
        #digital-clock .minutes-row {
            color: var(--digital-clock-color);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .digi-colon {
            animation: pulse-colon 2s infinite ease-in-out;
            font-size: 0.5rem; /*4rem
            margin-right: 15px;*/
            position: relative;
            margin-top: -10px; /* Optical alignment */
            color: var(--text-color);
        }
        @keyframes pulse-colon {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.2; }
        }

    

        /* Cistercian clock centering fix */
        #cistercian-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            width: 100%;
            padding-top: 60px;
            /*min-height: 520px;   /* matches analog clock height */
            margin: 0 auto; /* Ensures the container itself stays centered */
            overflow: hidden; /* Prevents internal SVG overflow from shifting alignment */
        }

        #cist-clock {
            /* Force horizontal alignment */
            display: flex !important;
            flex-direction: row !important;
            justify-content: center !important;
            align-items: center !important;
            flex-wrap: nowrap !important; /* Prevents stacking on smaller screens */
            margin: 0 auto; /* Standard horizontal centering */
            font-size: 20rem; /* Massive, matching your digital font */
            /* Colourful lines – same as your date row */
            --cistercian-color-0: #ffffff;   /* centre line – white */
            --cistercian-color-1: #ff5733;   /* top line – orange-red */
            --cistercian-color-2: #33ff57;   /* NW‑SE diagonal – green */
            --cistercian-color-3: #3357ff;   /* bottom line – blue */
            --cistercian-color-4: #f033ff;   /* NE‑SW diagonal – purple */
            --cistercian-color-5: #ffd733;   /* right line – yellow */
            --cistercian-width: 4px;          /* thicker, bolder lines */
            /*color: var(--accent-color); /* Cyber-Cyan */
            /*filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.5)); /* Glow effect */
        }


        /* Optional: Light mode override: Light mode adjustment for Cistercian */
        body.light-mode #cist-clock {
            color: var(--text-color);
            filter: drop-shadow(0 0 5px rgba(0,0,0,0.2));
        }


        /* Horizontal row for year/month/day */
        .cistercian-date-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;                /* reduced gap for smaller look */
            margin: 10px 0 15px 0;
        }

        /* Adjust size of each Cistercian numeral */
        .cistercian-date-row cistercian-number {
            font-size: 2rem;         /* was 2.8rem – smaller */
            --cistercian-width: 2px;
            /* Keep your colours or change them */
            --cistercian-color-0: #ffffff;
            --cistercian-color-1: #ff5733;
            --cistercian-color-2: #33ff57;
            --cistercian-color-3: #3357ff;
            --cistercian-color-4: #f033ff;
            --cistercian-color-5: #ffd733;
            filter: drop-shadow(0 0 4px rgba(0,240,255,0.4));
        }

        /* Dot separators – smaller and vertically centered */
        .cist-sep {
            font-size: 1.2rem;       /* smaller than before */
            font-weight: bold;
            color: var(--accent-color);
            margin: 0;
            line-height: 1;
        }

        /* Light mode adjustments */
        body.light-mode .cistercian-date-row cistercian-number {
            filter: drop-shadow(0 0 2px rgba(0,0,0,0.2));
        }
        body.light-mode .cist-sep {
            color: var(--text-color);
        }

        .small-cist-date cistercian-number {
            font-size: 1.8rem;
            --cistercian-color-0: #ffffff;
            --cistercian-color-1: #ff5733;
            --cistercian-color-2: #04ff00;
            --cistercian-color-3: #e5ff00;
            --cistercian-color-4: #ff00ff;
            --cistercian-color-5: #00ccff;
        }


        #hide-info-btn {
            background: transparent;
            color: #f6ff00;
            border: 2px solid var(--clock-border);
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.8rem;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }

        #hide-info-btn:hover {
            box-shadow: 0 0 15px rgb(53, 255, 56);
            background: rgba(0, 255, 17, 0.072);
        }
    
        .text-wrapper {
            height: 220px;               
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            transition: opacity 0.3s ease;
            text-align: center;
        }

        /* When clean view is ON, hide the text but keep the space */
        .clean-view .text-wrapper {
            opacity: 0;
            pointer-events: none;         /* So user can't accidentally click invisible text */
        }

        .site-footer {
            width: 100%;
            padding: 20px 0 120px 0;
            text-align: center;
            font-family: inherit;
            opacity: 0.6;
            font-size: 0.8rem;
            transition: all 0.5s ease;
        }

        .footer-line {
            width: 50px;
            height: 1px;
            background: var(--accent-color); /* Matches your Cyber-Cyan or Magenta */
            margin: 0 auto 20px;
            border-radius: 2px;
        }

        .footer-subtext {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 10px;
            color:#00d5ff;
        }

        /* Light mode override to ensure visibility */
        body.light-mode .site-footer {
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
    
        /* Top-left toggle button */
        .hide-controls-toggle-wrapper {
            position:absolute;
            top:40px;
            left: 20px;
            z-index: 1000;
        }

        .hide-controls-btn {
            background: transparent;
            color: var(--accent-color);
            border: 2px solid var(--clock-border);
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 0.8rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.7;
            backdrop-filter: blur(4px);
        }

        .hide-controls-btn:hover {
            opacity: 1;
            box-shadow: 0 0 10px var(--accent-color);
        }

        /* When active, the button changes appearance */
        .hide-controls-btn.active {
            color: #ffb835;
            border-color: #ffb835;
            box-shadow: 0 0 10px #ffb835;
        }

        /* ---- HIDE CONTROLS MODE (keeps space) ---- */
        body.hide-controls .controls .button-row,
        body.hide-controls .controls .volume-container {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        /* --- CYBER-FETCH TERMINAL --- */
        #cyber-fetch-terminal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.95);
            width: 85%;
            max-width: 800px;
            background: rgba(10, 10, 15, 0.504);
            backdrop-filter: blur(2px);
            border: 1px solid var(--accent-color);
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
            border-radius: 12px;
            z-index: 10000;
            color: #ececec;
            font-family: 'Courier New', Courier, monospace;
            opacity: 0;
            pointer-events: none;
            transition: all 0.2s ease;
            overflow: hidden;
        }

        #cyber-fetch-terminal.active {
            opacity: 1;
            pointer-events: auto;
            transform: translate(-50%, -50%) scale(1);
        }

        .terminal-header {
            background: rgba(0, 240, 255, 0.1);
            color:orange !important;
            border-bottom: 1px solid var(--accent-color);
            padding: 8px 15px;
            font-size: 1.2rem;
            display: flex;
            justify-content: space-between;
            color: var(--accent-color);
        }

        #fetch-content {
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 12px;                   /* 30 original spacious gap */
            font-size: 0.9rem;
            line-height: 1.2;
            white-space: pre-wrap;
            word-break: break-word;
        }

        .fetch-logo {
            color: #ff00ff;
            text-shadow: 0 0 8px #ff00ff;
            font-weight: bold;
            white-space: pre;
        }

        /* --- Fastfetch panel – smaller gap --- */
        #cyber-fetch-terminal.fastfetch-mode #fetch-content {
            gap: 10px;  
        }

        .fetch-key {
            color: var(--accent-color);
            font-weight: bold;
        }

        .fetch-value {
            color: #ececec;
        }


        /* Fastfetch button style */
        .action-btn {
            background: transparent;
            color:#0dff00 ; /* var(--accent-color)*/
            border: 2px solid var(--clock-border);
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 0.8rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.7;
            backdrop-filter: blur(4px);
        }
        .action-btn:hover {
            opacity: 1;
            box-shadow: 0 0 10px var(--accent-color);
        }

        #system-info span[style*="color: var(--accent-color)"] {
            color: #73ff00 !important;   /* your desired label color */
        }

        

        /* --- CYBER THEME SELECTOR --- */
        .theme-selector-wrapper {
            position: absolute;
            top: 20px;
            z-index: 1000;
            transition: opacity 0.4s ease-in-out;
        }

        .cyber-select {
            background: rgba(10, 10, 15, 0.6);
            color: var(--accent-color);
            border: 1px solid var(--clock-border);
            padding: 4px 10px;
            border-radius: 4px;
            font-family: 'Courier New', Courier, monospace;
            font-size: 0.8rem;
            cursor: pointer;
            outline: none;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .cyber-select:hover, .cyber-select:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 10px rgba(var(--accent-color), 0.3);
        }

        /* Style the dropdown options */
        .cyber-select option {
            background: #121214;
            color: #ececec;
            font-family: monospace;
        }

        /* Hide during Stealth Mode / Clean View */
        body.stealth-mode .theme-selector-wrapper,
        .clean-view .theme-selector-wrapper {
            opacity: 0;
            pointer-events: none;
        }

        /* Magic Mirror specific styles */
        body.mirror-mode .timepiece-wrapper {
            margin-bottom: 300px;   /* creates big free space under the clock */
        }

        body.mirror-mode #tao-quote-container {
            display: block !important;   /* ensure it's visible */
            margin-top: 0;               /* optional – adjust spacing */
        }

        .mirror-mode-btn {
            background: transparent;
            color: #0dff00;
            border: 2px solid var(--clock-border);
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 0.8rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.7;
            backdrop-filter: blur(4px);
        }
        .mirror-mode-btn:hover {
            opacity: 1;
            box-shadow: 0 0 10px var(--accent-color);
        }

        /* Magic Mirror exit button – fixed at bottom-right */
        #exit-mirror-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999999;
            display: none;
        }
        #exit-mirror-btn .mirror-mode-btn {
            background: rgba(0,0,0,0.8);
            color: #ffaa00;
            border: 2px solid #ffaa00;
            padding: 12px 24px;
            font-size: 1rem;
        }

        /* Command Runner Terminal Styling */
        #command-runner {
            position: relative;
            display: flex;                
            flex-direction: column;       
            box-sizing: border-box;
            background: rgba(0, 0, 0, 0.555);
            backdrop-filter: blur(2px);
            border: 1px solid var(--accent-color);
            border-radius: 48px;
            /*height: 80dvh;*/
            padding: 16px 20px;
            margin: 20px auto;
            width: 90%;
            max-width: 650px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
        }

        #cmd-output {
            flex: 1;
            height: 250px;                /* 180 increased for better visibility */
            overflow-y: auto;
            overflow-x: hidden;
            font-family: 'Courier New', Courier, monospace;
            font-size: 13px;
            color: #0f0;
            background: #0a0a0a7a;
            border: 1px solid var(--clock-border);
            border-radius: 8px;
            padding: 10px;
            margin-bottom: 12px;
            white-space: pre-wrap;
            word-break: break-word;
            scrollbar-width: thin;
            scrollbar-color: var(--accent-color) #222;
        }

        #cmd-output::-webkit-scrollbar {
            width: 6px;
        }
        #cmd-output::-webkit-scrollbar-track {
            background: #222;
            border-radius: 4px;
        }
        #cmd-output::-webkit-scrollbar-thumb {
            background: var(--accent-color);
            border-radius: 4px;
        }

        #cmd-input {
            background: rgba(10, 10, 10, 0.8);
            border: 1px solid var(--clock-border);
            border-radius: 48px;
            color: #0f0;
            font-family: 'Courier New', Courier, monospace;
            font-size: 13px;
            padding: 8px 10px;
            flex: 1;
            outline: none;
            transition: all 0.2s ease;
        }

        #cmd-input:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 7px var(--accent-color);
            background: #0a0a0a;
        }

        #close-cmd-runner {
            width: 30%;
            margin-top: 12px;
            padding: 7px;
            align-self: center;
        }

        #command-runner .hide-controls-btn {
            margin-top: 10px;
            background: transparent;
            border: 1px solid var(--clock-border);
            border-radius: 20px;
            padding: 5px 12px;
            font-size: 0.75rem;
            cursor: pointer;
            transition: 0.2s;
        }

        #command-runner .hide-controls-btn:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
            box-shadow: 0 0 5px var(--accent-color);
        }

        #command-runner:fullscreen {
            width: 100vw !important;
            max-width: 100vw !important;
            height: 100vh !important;
            margin: 0 !important;
            border-radius: 0 !important;
            background: rgba(0, 0, 0, 0.9) !important;
            backdrop-filter: blur(8px) !important;
            padding: 30px !important;
            display: flex !important;
            flex-direction: column !important;
        }

        #command-runner:fullscreen #cmd-output {
            flex: 1 !important;
            height: auto !important;
            max-height: none !important;
        }

        /* Safari compatibility */
        #command-runner:-webkit-full-screen {
            width: 100vw !important;
            max-width: 100vw !important;
            height: 100vh !important;
            margin: 0 !important;
            border-radius: 0 !important;
            background: rgba(0, 0, 0, 0.9) !important;
            backdrop-filter: blur(8px) !important;
            padding: 30px !important;
            display: flex !important;
            flex-direction: column !important;
        }


        .matrix-glitch {
            animation: glitch 0.2s infinite;
        }
        @keyframes glitch {
            0% { text-shadow: -2px 0 red, 2px 0 blue; }
            50% { text-shadow: 2px 0 red, -2px 0 blue; }
            100% { text-shadow: -2px 0 blue, 2px 0 red; }
        }
        
        #intersect-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;    /* Better for scrollbar handling */
            height: 100vh;  /* Guarantees full vertical coverage regardless of parent height */
            z-index: 999999;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden; /* Prevents any internal images from triggering scrollbars */
        }

        .intersect-text {
            color: #00ff00;
            font-size: 2rem;
            font-family: 'Courier New', monospace;
            padding: 40px;
            text-align: center;
            text-transform: uppercase;
            text-shadow: 0 0 20px #00ff00;
            line-height: 1.4;
        }

        #command-runner > div:first-child span[style*="color"] {
            text-shadow: 0 0 5px currentColor;
        }

        @keyframes scanline {
            0% { background: rgba(0, 255, 255, 0.02); }
            50% { background: rgba(0, 255, 255, 0.08); }
            100% { background: rgba(0, 255, 255, 0.02); }
        }

        .active-transmission {
            animation: scanline 2s infinite ease-in-out;
            border-left: 3px solid #00ffff !important;
            padding-left: 10px;
        }

        video {
            outline: none;
            background: #000;
            border-radius: 6px;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
        }

        /* Cyberpunk neon controls */
        video::-webkit-media-controls-panel {
            background-color: rgba(0, 0, 0, 0.7) !important;
            filter: hue-rotate(180deg) invert(1);
            border-radius: 0 0 6px 6px;
        }

        video::-webkit-media-controls-play-button,
        video::-webkit-media-controls-volume-slider,
        video::-webkit-media-controls-timeline {
            filter: drop-shadow(0 0 5px #00ffff);
        }

        /* Desktop default login ascii splash */
        .login-art {
            font-size: 12px;
            line-height: 1.2;
        }
        .login-status-text {
            font-size: 11px;
        }

        .fastfetch-panel {
            font-size: 9px;
            gap: 10px; 
        }

        .gem-info {
            font-size: 14px;
            line-height: 1.5;
        }
        .fastfetch-info {
            font-size: 18px;   
            line-height: 1.5;
        }



        /* Floating controls for fullscreen mode */
        .term-controls {
            position: fixed;
            top: 40px;
            right: 40px;
            display: flex;
            gap: 10px;
            z-index: 9999;
            opacity: 0.6;
            transition: opacity 0.3s;
        }
        .term-controls:hover { opacity: 1; }

        .zoom-btn {
            background: rgba(0,0,0,0.7);
            color: rgb(255, 200, 0);
            border: 1px solid #0f0;
            padding: 5px;
            cursor: pointer;
            font-family: 'Courier New', monospace;
            font-weight: bold;
            border-radius: 4px;
        }
        .mini-zoom {
            font-size: 10px !important;
            padding: 2px 6px !important;
            min-width: 10px !important;
            line-height: 1;
            border-radius: 3px;
        }
        #cmd-output,
        #cmd-output * {
            font-size: var(--term-font-size, 8px) !important;
        }

        /* Flipper Zero orange theme */
        .flipper-theme #cmd-output {
            background-color: #ff8200 !important;
            text-shadow: none !important;
            font-family: 'VT323', 'Courier New', monospace !important;
            background-image: 
                linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
            background-size: 4px 4px;
        }
        .flipper-theme #cmd-output * {
            color: #000 !important;
            text-shadow: none !important;
        }
        .flipper-theme #cmd-input {
            color: #fff !important;          /* white text */
            background-color: #cc6600 !important; /* darker orange for contrast */
        }
        /* ===== TERMINAL MODE THEMES ===== */

        /* Flipper Orange */
        #command-runner.mode-flipper {
            --mode-accent: #ff8200;
            --mode-bg: #1a0f00;
            --mode-border: #ff8200;
        }
        #command-runner.mode-flipper #cmd-input {
            color: #fff !important;
            background: #331900 !important;
        }

        /* Midnight Blue */
        #command-runner.mode-midnight {
            --mode-accent: #1e3a8a;
            --mode-bg: #0a1128;
            --mode-border: #1e3a8a;
        }
        #command-runner.mode-midnight #cmd-input {
            color: #fff !important;
            background: #0a1628 !important;
        }

        /* Matrix Green */
        #command-runner.mode-matrix {
            --mode-accent: #00ff00;
            --mode-bg: #0a0f0a;
            --mode-border: #00ff00;
        }
        #command-runner.mode-matrix #cmd-input {
            color: #fff !important;
            background: #0a1a0a !important;
        }

        /* Crimson Red */
        #command-runner.mode-crimson {
            --mode-accent: #dc143c;
            --mode-bg: #1a0a0a;
            --mode-border: #dc143c;
        }
        #command-runner.mode-crimson #cmd-input {
            color: #fff !important;
            background: #2a0a0a !important;
        }

        /* Cyber Purple */
        #command-runner.mode-cyber {
            --mode-accent: #ff00ff;
            --mode-bg: #0f0a1a;
            --mode-border: #ff00ff;
        }
        #command-runner.mode-cyber #cmd-input {
            color: #fff !important;
            background: #1a0a2a !important;
        }

        /* Hologram Blueprint */
        #command-runner.mode-hologram {
            --mode-accent: #00ffff;
            --mode-bg: rgba(0, 10, 20, 0.85);
            --mode-border: #00ffff;
        }
        #command-runner.mode-hologram #cmd-input {
            color: #fff !important;
            background: rgba(0, 255, 255, 0.08) !important;
            border-color: #00ffff !important;
        }
        /* Subtle blur + projecting light feel */
        #command-runner.mode-hologram {
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.3), inset 0 0 30px rgba(0, 255, 255, 0.05);
            backdrop-filter: blur(2px);
        }

        /* Stealth Ops */
        #command-runner.mode-stealth {
            --mode-accent: #444;
            --mode-bg: #080808;
            --mode-border: #222;
        }
        #command-runner.mode-stealth #cmd-input {
            color: #ccc !important;
            background: #111 !important;
            border-color: #333 !important;
        }
        #command-runner.mode-stealth {
            box-shadow: none;
            border-width: 1px;
        }
        /* Apply the variables when ANY mode class is present */
        #command-runner[class*="mode-"] {
            background: var(--mode-bg) !important;
            border-color: var(--mode-border) !important;
            box-shadow: 0 0 15px var(--mode-accent) !important;
        }

        /* Change the title colour to the mode accent */
        #command-runner[class*="mode-"] .terminal-title span {
            color: var(--mode-accent) !important;
        }
        /* Make the separator and smaller words slightly dimmed */
        #command-runner[class*="mode-"] .terminal-title span:nth-child(2),
        #command-runner[class*="mode-"] .terminal-title span:nth-child(4),
        #command-runner[class*="mode-"] .terminal-title span:nth-child(5),
        #command-runner[class*="mode-"] .terminal-title span:nth-child(6) {
            opacity: 0.8;
        }

        /* Virtual Gamepad */
        .cyber-gamepad {
            display: flex;
            justify-content: center;
            gap: 20px;
            max-width: 300px;
            margin: 15px auto;
            user-select: none;
            -webkit-user-select: none;
        }

        .d-pad {
            display: grid;
            grid-template-columns: repeat(3, 48px);   /* was 40px */
            grid-template-rows: repeat(3, 48px);
            gap: 5px;
        }

        .pad-btn {
            background: rgba(0, 255, 0, 0.1);
            border: 1px solid #0f0;
            color: #0f0;
            font-weight: bold;
            font-family: monospace;
            font-size: 13px;                        /* slightly bigger */
            cursor: pointer;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            touch-action: manipulation;
        }
        .pad-btn:active {
            background: #0f0;
            color: #000;
        }

        .btn-up    { grid-column: 2; grid-row: 1; }
        .btn-left  { grid-column: 1; grid-row: 2; }
        .btn-right { grid-column: 3; grid-row: 2; }
        .btn-down  { grid-column: 2; grid-row: 3; }

        .action-pad {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
        }

        .game-action-btn {
            width: 65px;          /* was 60px */
            height: 65px;
            border-radius: 50%;
            background: rgba(0, 255, 0, 0.1);
            border: 1px solid #0f0;
            color: #0f0;
            font-weight: bold;
            font-family: monospace;
            font-size: 15px;
            cursor: pointer;
        }
        .game-action-btn:active {
            background: #0f0;
            color: #000;
        }


        /* ---------- IPTV / VIDEO PLAYER – totally dark, no white overlay ---------- */

        /* Base style for all IPTV video elements */
        .iptv-video {
            -webkit-tap-highlight-color: transparent !important;   /* mobile tap flash */
            outline: none !important;                              /* focus ring */
            filter: brightness(1) !important;                      /* never wash out */
            background: #000 !important;
            transition: none !important;                           /* remove any fade delay */
        }

        /* Focus & active – prevent any glow */
        .iptv-video:focus,
        .iptv-video:active {
            box-shadow: none !important;
            background: #000 !important;
        }

        /* Controls bar – keep it dark */
        .iptv-video::-webkit-media-controls-panel {
            background-color: rgba(0, 0, 0, 0.85) !important;
            border-radius: 0 0 6px 6px;
        }

        /* Controls icons / sliders – subtle accent glow */
        .iptv-video::-webkit-media-controls-play-button,
        .iptv-video::-webkit-media-controls-volume-slider,
        .iptv-video::-webkit-media-controls-timeline {
            filter: drop-shadow(0 0 4px var(--accent-color));
        }

        /* Remove the default white enclosure overlay */
        .iptv-video::-webkit-media-controls-enclosure {
            background: none !important;
        }

        /* Fullscreen – force black background */
        .iptv-video:fullscreen {
            background: #000 !important;
        }
        .iptv-video:-webkit-full-screen {
            background: #000 !important;
        }

        /* Fullscreen backdrop (the letterboxing layer) – black */
        .iptv-video::backdrop {
            background: #000 !important;
        }


        
        /* MOBILE-FRIENDLY TWEAKS */
        @media (max-width: 600px) {
            /* Theme toggle (right side) */
            .theme-switch-wrapper {
                top: 20px;
                right: 20px;
            }
            .switch {
                width: 36px;
                height: 24px;
            }
            .slider:before {
                height: 16px;
                width: 16px;
                left: 4px;
                bottom: 4px;
            }
            input:checked + .slider:before {
                transform: translateX(12px);
            }

            /* Hide Controls toggle (left side) */
            .hide-controls-toggle-wrapper {
                top: 40px;
                left: 20px;
            }
            .hide-controls-btn {
                padding: 6px 12px;
                font-size: 0.7rem;
            }
        

            /* Give the clock some extra top margin to clear the button */
            .clock {
                margin-top: 10px;   /* – more space below button */
                margin-bottom: 10px;
                width: 280px;       /* slightly smaller on narrow screens */
                height: 280px;
            }

            /* Ensure the inner ring scales nicely */
            .clock::before {
                width: 250px;
                height: 250px;
            }

            /* Adjust hand lengths for smaller clock */
            .hour { height: 70px; }
            .minute { height: 95px; }
            .second { height: 115px; }

            .center-dot {
            width: 16px;
            height: 16px;
            }

        
            .name-plate.main-title {
                padding: 0 20px 10px 20px; /* prevents text touching screen edges */
                text-align: center;   /* keeps it neat */
                font-size: 0.9rem;    /* slightly smaller on mobile if needed */
                margin-bottom: 10px;  /* less bottom margin */
                letter-spacing: 2px;
            }
            #info-section .name-plate {
                padding: 0 20px 20px 20px; /* Top, Right, Bottom, Left */
                text-align: center;   /* keeps it neat */
                font-size: 0.5rem;    /* slightly smaller if needed */
                margin-bottom: 5px;  /* less bottom margin */
            }

            

            .block {
                text-align: center;
                margin-bottom: 60px; /* was 10*/
            }
            .block-text {
                text-align: center;
                font-size: small;
            }

            /* Optional: make the image block a bit smaller if it's too wide */
            .image-block {
                width: 300px;
                height: 200px;
            }

            #ghost-indicator {
                position: fixed;
                top: 20px;
                left: 20px;
                font-size: 1.0rem;
            }

            .timepiece-wrapper {
                margin-top: 60px; /* 20 Tighter gap for mobile */
            }
            
            #digital-clock #digi-hours, 
            #digital-clock #digi-minutes {
                font-size: 6.5rem; /* Slightly smaller so it doesn't wrap on thin phones */
            }


            #cist-clock {
                font-size: 10rem;   
            }

            .cistercian-date-row cistercian-number {
                font-size: 1.5rem;
            }
            .cist-sep {
                font-size: 1rem;
            }
            .cistercian-date-row {
                gap: 4px;
            }

             /* --- Fastfetch panel – tight spacing, readable font (8px) --- */
            #cyber-fetch-terminal.fastfetch-mode #fetch-content {
                gap: 4px;               /* logo and info stay close together */
            }
            #cyber-fetch-terminal.fastfetch-mode #fetch-content pre {
                font-size: 8px !important;
            }
            #cyber-fetch-terminal.fastfetch-mode #fetch-content > div {
                font-size: 8px !important;
                line-height: 1.1 !important;
                margin-left: 4px !important;   /* tiny left margin to not stick */
            }

            /* --- Original gem panel – slightly more breathable (10px) --- */
            #cyber-fetch-terminal:not(.fastfetch-mode) #fetch-content {
                gap: 10px;
            }
            #cyber-fetch-terminal:not(.fastfetch-mode) #fetch-content pre {
                font-size: 8px !important;
            }
            #cyber-fetch-terminal:not(.fastfetch-mode) #fetch-content > div {
                font-size: 10px !important;
                line-height: 1.2 !important;
                margin-left: 10px !important;
            }


            /* Mobile adjustments for the neofetch container */
            #neofetch-container {
                flex-wrap: nowrap !important;
                padding: 8px;
                gap: 10px;
            }

            /* Shrink the ASCII art */
            #neofetch-container pre {
                font-size: 4px !important;   /* very small, but still readable */
                line-height: 1.1;
                margin: 0;
                white-space: pre;            /* keep ASCII shape, no wrapping */
            }

            /* Shrink the system info text */
            #system-info {
                font-size: 6px !important;
                padding-left: 6px !important;
                line-height: 1.3;
            }

            #command-runner {
                width: 95% !important;
                padding: 12px !important;
                margin: 10px auto !important;
                border-radius: 24px !important;
                display: flex;
                flex-direction: column !important;
                height: 90dvh !important;  /* Use dynamic viewport, not 100% to leave some space */
            }

            /* Force the header to wrap cleanly */
            #command-runner > div:first-child {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 8px !important;
            }

            /* Make the long title wrap gracefully */
            #command-runner > div:first-child > div {
                flex-wrap: wrap !important;
                font-size: 0.7rem !important;
                line-height: 1.4 !important;
            }

            /* Fullscreen button stays on its own line if needed */
            #terminal-fullscreen-btn {
                align-self: flex-end !important;
                margin-top: 4px !important;
            }

            /* Ensure the input line doesn't overflow */
            #command-runner > div:last-of-type {
                flex-wrap: nowrap !important;
                overflow-x: visible !important;
                margin-bottom: 2px;              /* space before close button */
            }
            /* The $ prompt */
            #command-runner > div:last-of-type > span {
                font-size: 16px !important;
            }

            #open-cmd-runner {
            margin: 15px !important;
            padding: 8px 20px;
            }

            /* Shrink the prompt and input */
            #cmd-input {
                font-size: 16px !important;
                min-width: 0 !important;
                padding: 6px 8px !important;
            }

            /* Output area uses available space */
            #cmd-output {
                flex: 1 !important;
                min-height: 0 !important;
                font-size: 11px !important;
                word-break: break-word !important;
                overflow-x: hidden !important;
                overflow-y: auto;
            }

            /* Make the close button full width for easier tapping */
            #close-cmd-runner {
                width: 100% !important;
                margin-top: 12px !important;
                padding: 6px !important;
                align-self: center !important;
            }

            /* Prevent preformatted ASCII art from breaking layout */
            #cmd-output pre {
                white-space: pre-wrap !important;     /* keep exact spacing – no wrapping */
                /*word-break: break-word !important;*/
                font-size: 8px;                      /* default small size – override in specific commands if needed */
                line-height: 1.2;
                margin: 0;
            }        

            /*login ascii size*/
            .login-art {
                font-size: 9px; 
            }
            .login-status-text {
                font-size: 7px !important;
            }
            .ascii-art {
                font-size: 8px !important;
            }

            /*.gem-info {
                font-size: 10px;     still readable 
                line-height: 1.3;
            }
            .fastfetch-info {
                font-size: 8px;      ultra‑compact 
                line-height: 1.2;
            }*/

            .terminal-title span {
                font-size: inherit; /* reset the inline sizes so we can use the new ones below */
            }
            .terminal-title :nth-child(1) { /* AKASHIC */
                font-size: 0.5rem !important;
            }
            .terminal-title :nth-child(2) { /* // */
                font-size: 1rem !important;
            }
            .terminal-title :nth-child(3) { /* J_OS */
                font-size: 1.3rem !important;
            }
            .terminal-title :nth-child(4),
            .terminal-title :nth-child(5),
            .terminal-title :nth-child(6) { /* ZERO-POINT, KRYPTOS, NEURAL CENTER */
                font-size: 0.5rem !important;
            }

            .site-footer {
            width: 100%;
            padding: 40px 0 120px 0; 
            text-align: center;
            position: relative;
            z-index: 1;
        }
    }