        /* 1. BASE STYLES */
        body { 
            background-color: #242423; 
            color: #ffffff; 
            font-family: 'Courier New', Courier, monospace; 
            font-size: 1.6vh;
            margin: 0; 
            height: 100vh;
            overflow: hidden;
            background-image: url('../img/background.jpg'); 
            background-size: cover;
            background-position: left center;
        }

        h1 {
            font-size: 1.6vh;
            font-weight: 700;
            margin-bottom: 20px;
            margin-top: 0;
        }

        body p {
            margin: 0;
            padding: 0;
        }       

        body p:not(:last-child) {
            margin-bottom: 20px;
        }

       /* 2. THE TOP LAYER (Vertical Stack) */
        #top-layer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh; /* Ensure it takes the full screen */
            display: none; /* Controlled by JS fadeIn */
            flex-direction: column;
            align-items: center;    /* Horizontal centering */
            justify-content: center; /* Vertical centering */
            background: rgba(10, 10, 10, 0.85);
            z-index: 10000;
        }

        #top-layer.visible {
            display: flex;
        }

        /* The Wrapper ensures the player and image stay the same width */
        .content-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0; /* Remove any accidental auto margins */
            max-height: 90vh; /* Prevent it from touching the very top/bottom */
        }

        #top-layer img {
            max-height: 45vh; /* Half height or less */
            width: auto;
            display: block;
            margin-bottom: 15px; /* Space between img and player */
            border: 1px solid #333;
        }

        #player-target {
            width: 100%; /* Spans the width of the image above it */
            max-width: 400px; /* Limits player from getting too wide */
            min-height: 0;
        }

        .close-overlay {
            position: absolute;
            top: 30px;
            right: 30px;
            font-family: 'Courier New', monospace;
            color: #fff;
            cursor: pointer;
        }

        /* 3. THE 20% SLIDER COMPONENT */
        .slider-wrapper {
            width: 100%;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: absolute;
            left: 0px;
            bottom: 0px;
        }

        .main-slider {
            width: 100%;
            padding-left: 30px;
            padding-bottom: 30px;
        }

        /* Slick item must fit within the 20vh parent */
        .slide-item {
            height: 20vh; /* Leaves a little room for padding/nav */
            margin-right: 30px;
            outline: none;
            cursor: pointer;
            opacity: 1;
            transition: opacity 0.3s;
        }

        .slide-item:hover { opacity: 0.8; }

        /* Make images square based on the 15vh height */
        .slide-item img {
            height: 100%; 
            width: auto; 
            object-fit: cover;
            display: block;
        }

        /* 4. NAVIGATION BUTTONS (Floating above slider) */
        .nav-container {
            position: absolute;
            right: 30px;
            bottom: calc(20vh + 60px); /* Sits just above the 20% mark */
            display: flex;
            gap: 10px;
        }

        .nav-btn {
            background: none;
            border: 1px solid #fff;
            color: #fff;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.2s;
        }

        .nav-btn:hover {
            background: #fff;
            color: #242423;
        }

        /* When at the very beginning or very end */
        .nav-btn.slick-disabled {
            opacity: 0.2;
            cursor: not-allowed;
            border-color: #444;
        }

        /* 5. LOGO & LATEST */
        #logo-latest {
            position: absolute;
            height: 100%;
            max-height: 20vh;
            top: calc(50% - 30px);
            left: 30px;
            transform: translateY(-50%);
            display: flex;
            gap: 100px;
        }

        #logo-latest img {
            height: 100%;
            width: auto;
            display: inline-block;
            animation: glitch 5s infinite;
        }

        /* GLITCH EFFECT */
        @keyframes glitch {
            0% { transform: translate(0); }
            /* Only glitch between 90% and 100% to make it "occasional" */
            90% { transform: translate(0); }
            92% { transform: translate(-2px, 1px); }
            94% { transform: translate(1px, -2px); }
            100% { transform: translate(0); }
        }

        #logo-latest div {
            display: flex;
            flex-direction: column;
            gap: 30px;
            justify-content: flex-end;
        }

        #logo-latest p {
            margin: 0;
        }

        #logo-latest ul {
            list-style: none;
            display: flex;
            gap: 30px;
            color: #fff;
            padding-left: 0;
            margin: 0;
        }

        #logo-latest ul a {
            color: inherit;
            font-size: 5vh;
        }

        /* 6. BIO */
        #bio {
            position: absolute;
            height: 100%;
            max-height: 25vh;
            top: 30px;
            left: calc(25vh * 555/230 + 30px);
            display: flex;
            align-items: flex-start;
            gap: 50px;
            max-width: 1000px;
            padding-right: 30px;
        }

        #bio div {
            flex: 1;
        }

@media (max-aspect-ratio: 1.3) {

    body {

            overflow-y: auto;
            height: auto;
            font-size: 16px;
    }

    h1 {
        font-size: 16px;
    }

    #bio {
            position: relative;
            height: auto;
            max-height: 100%;
            top: auto;
            left: auto;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 30px;
            max-width: auto;
            padding: 30px;

        }

        #logo-latest {
            position: relative;
            height: auto;
            max-height: 100%;
            top: auto;
            left: auto;
            transform: none;
            display: flex;
            flex-direction: column;
            gap: 50px;
            padding: 30px;
        }

        #logo-latest img {
            width: 100%;
            height: auto;
            display: inline-block;
            animation: glitch 5s infinite;
        }

        #logo-latest ul {
            flex-wrap: wrap;
            gap: 20px;
        }

        #logo-latest ul a {
            font-size: 30px;
        }

        .nav-container {
            position: relative;
            right: auto;
            bottom: auto;
            padding: 30px;
        }

        .slider-wrapper {
            position: relative;
            left: 0px;
            bottom: auto;
        }

        .slide-item {
            height: 150px;
        }

}