        .cake {
            position: fixed;
            width: 120px;
            height: auto;
            left: 50px;
            top: 50px;
            cursor: pointer;
            z-index: 999;

            display: none;

            -webkit-user-drag: none;

        }


        .splash {
            position: absolute;
            top: 15px;
            right: -100px;
            width: 350px;
            height: auto;
            text-align: center;
            line-height: 1.2;
            color: yellow;
            font-size: 22px;
            font-family: "Minecraft";
            text-shadow: 3px 2px #3f3f00;
            user-select: none;
            -webkit-user-select: none;
            pointer-events: none;
            z-index: 998;
            white-space: pre-line;

        }


        #splash {
            display: inline-block;
            white-space: pre-line;
            transform-origin: center;
            animation: bounce 0.3s infinite alternate;

        }


        @keyframes bounce {

            from {
                transform: rotate(-15deg) scale(1);
            }

            to {
                transform: rotate(-15deg) scale(1.1);

            }

        }

        @font-face {
            font-family: "Fairfax Pona HD";
            src: url("../Main-Assets/FairfaxPonaHD.ttf")

        }

        @font-face {
            font-family: "Minecraft";
            src: url("Minecraft.ttf");

        }

        html {
            overflow-x: hidden;
            overflow-y: scroll;
            scrollbar-width: none;

        }

        html::-webkit-scrollbar {
            display: none;

        }

        body {
            margin: 0;
            font-family: "Comic Sans MS", sans-serif;
            background-color: black;
            color: red;
            text-align: center;
            overflow-x: hidden;
            overflow-y: visible;
            min-width: 1000px;
            width: 100%;
            user-select: none;

        }

        h1 {
            color: red;
            margin-top: 20px;
        }

        .banner {
            position: relative;
            width: 100%;
            height: 80px;
            margin-top: -15px; 
            margin-bottom: 0;
            overflow: hidden;
            border: 2px solid #666;
            border-bottom: none;
            box-sizing: border-box;
        }

        .banner img {
            position: absolute;
            width: 1000px;
            height: 200px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            display: block;
        }

        .banner h1 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            margin: 0;
            width: 100%;

            color: red;
            font-size: 32px;
            text-shadow: 2px 2px black;
            z-index: 2;
        }

        #pet-easter-egg {
            pointer-events: auto;
            cursor: pointer;
            color: inherit;
        }

        .wrapper {
            width: 1000px;
            margin: 20px auto;
            position: relative;
            overflow: visible;

        }

        .navbar {
            background: #333;
            border: 2px solid #777;
            padding: 10px;
            color: white;
            margin-bottom: 10px;
        }

        .navbar a {
            color: white;
            text-decoration: none;
        }

        .navbar a:hover {
            color: red;
        }

        .top-grid {
            display: grid;
            grid-template-columns: 250px 1fr 250px;
            gap: 10px;
        }

        .box {
            background: #111;
            border: 2px solid #666;
            padding: 10px;
        }

        .box h3 {
            margin-top: 0;
            color: white;
        }


        .bottom-box {
            margin-top: 10px;
        }


        .middle-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
        }

        .main-media {
            max-width: 200px;
            width: auto;
            height: 218px;
            object-fit: contain;

            user-select: none;
            -webkit-user-select: none;
            -webkit-user-drag: none;
        }

        #weekly-media {
            width: 200px;
            height: 218px;
            flex-shrink: 0;
        }

        .bottom-image {
            position: fixed;
            bottom: 0;
            left: 50%;
            width: 200px;
            transform: translateX(-50%);
            pointer-events: none;
            z-index: 998;

            user-select: none;
            -webkit-user-select: none;
            -webkit-user-drag: none;
            pointer-events: none;

        }



        .S-P-button {
            position: fixed;
            bottom: 10px;
            left: 10px;
            width: 80px;
            height: auto;
            opacity: 0.1;
            cursor: pointer;
            z-index: 999;
            user-select: none;
            -webkit-user-select: none;
            -webkit-user-drag: none;
        }


        .S-P-popup-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition:
                opacity 0.2s ease,
                visibility 0s linear 0.2s;
            z-index: 10000;
        }

        .S-P-popup-overlay.show {
            opacity: 1;
            visibility: visible;
            transition-delay: 0s;
        }

       .S-P-popup {
            width: 400px;
            background: #111;
            border: 2px solid #666;
            padding: 20px;
            text-align: center;
            color: white;
            box-shadow: 0 0 20px black;
            transform: scale(0.9);
            transition: transform 0.2s ease;
        }

        .S-P-popup-overlay.show .S-P-popup {
            transform: scale(1);
        }

        .S-P-popup h2 {
             margin-top: 0;
             color: red;
        }


        .S-P-popup p {
            margin: 20px 0;
        }


        .S-P-popup button {
            background: #333;
            color: white;
            border: 2px solid #666;
            padding: 8px 20px;
            margin: 0 10px;
            cursor: pointer;
            font-family: inherit;
            font-size: 16px;
        }


        .S-P-popup button:hover {
            background: #500;
            border-color: red;
        }



        .version {
           position: fixed;
           bottom: 10px;
           right: 10px;
           color: #777;
           font-size: 12px;
           font-family: Arial, sans-serif;
           opacity: 0.9;
           pointer-events: none;
        }