:root {
    --glaucous: #6382a3ff;
    --dark-cyan: #559997ff;
    --bar-start: #559989ff;
    --bar-middle: #1be07eff;
    --bar-end: #0b8e6bff;
    --aquamarine: #96f5c6ff;
    --white: #ffffffff;
    --pale-purple: #e8d9f0ff;
    --mauve: #d99affff;
    --lavender-floral: #bb66eeff;
    --dark-violet: #9526d2ff;
    --tekhelet: #601787ff;
    --gold-light: #ffd700ff;
    --gold-medium: #ffc700ff;
    --gold-dark: #ffb600ff;
}

body {
    margin: 0;
    padding: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.bg {
    position: absolute;
    inset: 0;
}

.wall {
    position: absolute;
    inset: 0;
    background: #f8f8f5;
}

.tv {
    position: absolute;
    left: 49.8%;
    top: 1%;
    transform: translateX(-50%);
}
.tvscreen {
    position: absolute;
    left: 33.5%;
    top: 3%;
    height: 314px;
    width: 554px;
    background-color: black;
}

.tvmenu {
    position: absolute;
    left: 0.9%;
    top: 0.6%;
    height: 314px;
    width: 554px;

    background: linear-gradient(
            to right,
            rgba(255, 105, 180, 0.3),
            rgba(0, 128, 255, 0.3)
        ),
        black;
    box-shadow: 0 0 25px 10px rgba(255, 255, 255, 0.6);
    display: none;
}

.kuromi2 {
    position: absolute;
    top: -20px;
    left: -18px;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
    z-index: 10;
    transform: scale(0.4);
}

.kuromi2 img {
    width: 101%;
    height: auto;
    transform-origin: top left;
}

.tvvideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desk {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    height: 40%;
    background: #ff8ccf;
}

.lightbar-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 88%;
    width: 40px;
}
.lightbar-bg {
    position: absolute;
    inset: 0;
    margin-right: 1px;
    background: #000;
}
.lightbar {
    position: absolute;
    width: 55%;
    height: 100%;
    background: red;
    box-shadow:
        0 0 25px red,
        0 0 60px red;
    opacity: 0.8;
}
.light-layer {
    position: absolute;
    inset: 0;
    background: red;
    opacity: 0.2;
    pointer-events: none;
    box-shadow: 0 0 30px red;
    animation: pulseGlow 2.5s ease-in-out infinite;
    z-index: 10;
}
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 20px red;
    }
    50% {
        box-shadow: 0 0 50px red;
    }
    100% {
        box-shadow: 0 0 20px red;
    }
}

.laptop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.laptop img {
    display: block;
    max-width: 930px;
    height: auto;
    position: relative;
    margin-bottom: 107px;
    z-index: 5;
}

.cups {
    position: absolute;
    top: 73%;
    left: -12%;
    transform: translateY(-50%);
    z-index: 12;
}
.cup {
    position: absolute;
    display: block;
    height: 431px;
    object-fit: contain;
}
.starbucks {
    left: 0;
    bottom: 0;
    z-index: 1;
}
.dubby {
    left: 85px;
    bottom: -63px;
    z-index: 2;
}
.dubby:hover {
    transform: translateY(-5px) rotate(-5deg);
}
.popup {
    position: absolute;
    top: -349px;
    left: 335px;
    padding: 5px 10px;
    background: rgba(255, 100, 200, 0.6);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 20;
}
.dubby-container:hover .popup {
    opacity: 1;
}

.hellokitty-container {
    position: absolute;
    top: 82%;
    right: 4%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 12;
}

.closed-crop {
    position: relative;
    width: 161px;
    height: 150px;
    overflow: hidden;
    display: block;
}

.open-crop {
    position: relative;
    top: -50px;
    left: 30px;
    width: 200px;
    height: 223px;
    overflow: hidden;
    display: none;
}


.hellokitty-img {
    position: absolute;
    top: -198px;
    left: -102px;
    width: auto;
    height: auto;
    transform: scale(0.9);
    transform-origin: top left;
}


.hellokitty-img.open {
    position: absolute;
    top: -198px;
    left: -120px;
    width: auto;
    height: auto;
    transform: scale(1);
    transform-origin: top left;
}


.hellokitty-container:hover .closed-crop {
    display: none;
}

.hellokitty-container:hover .open-crop {
    display: block;
}

.kuromi {
    display: none;
    position: absolute;
    top: 72%;
    right: 4.8%;
    transform: translateY(-96%) rotate(21deg);
    max-width: 72px;
    z-index: 11;
}
.kuromi img {
    max-width: 72px;
    height: auto;
}

.laptopscreen {
    position: absolute;
    top: 31.6%;
    left: 49.75%;
    transform: translate(-50%, -50%);
    width: 545px;
    height: 367px;
    overflow: hidden;
    z-index: 12;
}
.laptopscreen video {
    width: 102%;
    height: 84.9-%;
    object-fit: cover;
    display: block;
}

.icon-container {
    position: absolute;
    z-index: 80;
}
.icon-crop {
    position: relative;
    overflow: hidden;
}
.icon-crop img {
    position: absolute;
    transform: scale(0.8);
    transform-origin: top left;
}
.popup {
    position: absolute;
    pointer-events: none;
    padding: 5px 10px;
    background: rgba(255, 100, 200, 0.6);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}
.icon-container:hover .popup {
    opacity: 1;
}

.diamonds-icon {
    top: 3%;
    left: 12%;
}
.diamonds-crop {
    width: 57px;
    height: 67px;
}
.diamonds-crop img {
    top: -14px;
    left: -54px;
}
.popup-diamonds {
    top: -3px;
    left: 146%;
    transform: translateX(-50%);
}

.hearts-icon {
    top: 22%;
    left: 12%;
}
.hearts-crop {
    width: 57px;
    height: 67px;
}
.hearts-crop img {
    top: -83px;
    left: -54px;
}
.popup-hearts {
    top: -3px;
    left: 129%;
    transform: translateX(-50%);
}

.clubs-icon {
    top: 42%;
    left: 12%;
}
.clubs-crop {
    width: 57px;
    height: 67px;
}
.clubs-crop img {
    top: -153px;
    left: -52px;
}
.popup-clubs {
    top: -3px;
    left: 125%;
    transform: translateX(-50%);
}

.spades-icon {
    top: 63%;
    left: 12%;
}
.spades-crop {
    width: 57px;
    height: 67px;
}
.spades-crop img {
    top: -223px;
    left: -53px;
}
.popup-spades {
    top: -5px;
    left: 130%;
    transform: translateX(-50%);
}

.picklerick-icon {
    top: 53.5%;
    left: 50%;
    z-index: 21;
}
.picklerick-crop {
    width: 233px;
    height: 118px;
}
.picklerick-crop img {
    top: -183px;
    left: -250px;
}
.popup-picklerick {
    top: -11px;
    left: 56%;
    transform: translateX(-50%);
}

.plasma-icon {
    top: 63.1%;
    left: 90%;
    z-index: 21;
}
.plasma-crop {
    width: 66px;
    height: 82px;
}
.plasma-crop img {
    top: -217px;
    left: -476px;
}
.popup-plasma {
    top: -7px;
    left: 6%;
    transform: translateX(-50%);
}

.selfies-icon {
    top: 17%;
    left: 95%;
    z-index: 21;
}
.selfies-crop {
    width: 37px;
    height: 84px;
}
.selfies-crop img {
    top: -37px;
    left: -501px;
}
.popup-selfies {
    top: -2px;
    left: -59%;
    transform: translateX(-50%);
}

.blessed-icon {
    top: 6%;
    left: 24%;
    z-index: 21;
}
.blessed-crop {
    width: 74px;
    height: 79px;
}
.blessed-crop img {
    top: -14px;
    left: -117px;
}
.popup-blessed {
    top: 18px;
    left: 114%;
    transform: translateX(-50%);
}

.books-icon {
    top: 68.5%;
    left: -1%;
    z-index: 21;
}
.books-crop {
    width: 36px;
    height: 65px;
}
.books-crop img {
    top: -238px;
    left: 1px;
}
.popup-books {
    top: 4px;
    left: 123%;
    transform: translateX(-50%);
}

.cupcake-icon {
    top: 17.3%;
    left: -1%;
    z-index: 87;
}
.cupcake-crop {
    width: 38px;
    height: 135px;
}
.cupcake-crop img {
    top: -51px;
    left: 0px;
}
.popup-cupcake {
    top: 50px;
    left: 128%;
    transform: translateX(-50%);
}

.gallery-icon {
    top: 35.2%;
    left: 68%;
    z-index: 21;
}
.gallery-crop {
    width: 52px;
    height: 42px;
}
.gallery-crop img {
    top: -122px;
    left: -346px;
}
.popup-gallery {
    top: -8px;
    left: 128%;
    transform: translateX(-50%);
}

.graphic-icon {
    top: 31.7%;
    left: 23.5%;
    z-index: 21;
}
.graphic-crop {
    width: 72px;
    height: 128px;
}
.graphic-crop img {
    top: -104px;
    left: -115px;
}
.popup-graphic {
    top: -15px;
    left: 53%;
    transform: translateX(-50%);
}

.toys-icon {
    top: 29.8%;
    left: 77%;
    z-index: 14;
}
.toys-crop {
    width: 127px;
    height: 128px;
}
.toys-crop img {
    top: -106px;
    left: -407px;
}
.popup-toys {
    top: 3px;
    left: 28%;
    transform: translateX(-50%);
}

.calendar-icon {
    top: 5%;
    left: 72%;
    z-index: 11;
}
.calendar-crop {
    width: 92px;
    height: 99px;
}
.calendar-crop img {
    top: -9px;
    left: -368px;
}
.popup-calendar {
    top: 43px;
    left: 136%;
    transform: translateX(-50%);
}

.laptopscreen .heomc-crop {
    position: absolute;
    top: 57.9%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 154px;
    height: 205px;
    z-index: 69;
    overflow: hidden;
}
.laptopscreen .heomc {
    position: absolute;
    top: -12px;
    left: -115px;

    transform: scale(0.1);
    transform-origin: top left;

    width: auto;
    height: auto;

    z-index: 100;
}

.controller-container {
    position: absolute;
    top: 64%;
    left: 77%;
    transform: translate(-50%, -50%) scale(0.6);
    z-index: 41;
}

.controller-crop {
    position: relative;
    width: 258px;
    height: 151px;
    overflow: hidden;
}

.controller-crop img {
    position: relative;
    top: -259px;
    left: -83px;
    width: auto;
    height: auto;
}

.popup-controller {
    position: absolute;
    top: -38px;
    left: 76%;
    transform: translateX(-50%);
    pointer-events: none;
    padding: 9px 13px;
    background: rgba(255, 100, 200, 0.85);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    color: white;
    font-size: 27px;
    font-weight: bold;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 30;
}


.controller-container:hover .popup-controller {
    opacity: 1;
}

.controller-on {
    display: block;
    position: absolute;
    bottom: -19%;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 124;
}

.controller-on .controlleron-img {
    display: block;
    width: auto;
    height: auto;
}


.power-button-container {
    position: absolute;
    top: 24.2%;
    left: 44%;
    z-index: 369;
}


.power-button-crop {
    position: absolute;
    width: 56px;
    height: 49px;
    overflow: hidden;
}

.power-button-img {
    position: absolute;
    top: -121px;
    left: -220px;
    width: auto;
    height: auto;
}


.a-button-container {
    position: absolute;
    top: 43.9%;
    left: 74%;
    z-index: 369;
    display: inline-block;
}
.a-button-container:hover {
    transform: scale(0.97);
}
.a-button-crop {
    position: absolute;
    width: 43px;
    height: 41px;
    overflow: hidden;
}
.a-button-img {
    position: absolute;
    top: -220px;
    left: -369px;
    width: auto;
    height: auto;
}

.b-button-container {
    position: absolute;
    top: 36.5%;
    left: 81%;
    z-index: 369;
    display: inline-block;
}
.b-button-container:hover {
    transform: scale(0.97);
}
.b-button-crop {
    position: absolute;
    width: 43px;
    height: 41px;
    overflow: hidden;
}
.b-button-img {
    position: absolute;
    top: -183px;
    left: -408px;
    width: auto;
    height: auto;
}


.x-button-container {
    position: absolute;
    top: 36.5%;
    left: 66%;
    z-index: 369;
    display: inline-block;
}
.x-button-container:hover {
    transform: scale(0.97);
}
.x-button-crop {
    position: absolute;
    width: 43px;
    height: 41px;
    overflow: hidden;
}
.x-button-img {
    position: absolute;
    top: -183px;
    left: -330px;
    width: auto;
    height: auto;
}


.y-button-container {
    position: absolute;
    top: 28.7%;
    left: 74%;
    z-index: 369;
    display: inline-block;
}
.y-button-container:hover {
    transform: scale(0.97);
}
.y-button-crop {
    position: absolute;
    width: 43px;
    height: 41px;
    overflow: hidden;
}
.y-button-img {
    position: absolute;
    top: -144px;
    left: -368px;
    width: auto;
    height: auto;
}


.left-thumb-container {
    position: absolute;
    top: 34%;
    left: 14%;
    z-index: 369;
    display: inline-block;
}
.left-thumb-container:hover {
    transform: scale(0.97);
}
.left-thumb-crop {
    position: absolute;
    width: 65px;
    height: 67px;
    overflow: hidden;
}
.left-thumb-img {
    position: absolute;
    top: -166px;
    left: -64px;
    width: auto;
    height: auto;
}

.right-thumb-container {
    position: absolute;
    top: 51%;
    left: 58%;
    z-index: 369;
    display: inline-block;
}
.right-thumb-container:hover {
    transform: scale(0.97);
}
.right-thumb-crop {
    position: absolute;
    width: 62px;
    height: 67px;
    overflow: hidden;
}
.right-thumb-img {
    position: absolute;
    top: -257px;
    left: -292px;
    width: auto;
    height: auto;
}

.laptop-closed {
    position: absolute;
    top: 63%;
    left: 49.5%;
    transform: translate(-50%, -50%);
    cursor: default;
    z-index: 20;
}

.laptop-closed img {
    display: block;
    width: auto;
    height: auto;
    max-width: 111%;
}

.whiteboard {
    position: absolute;
    width: 30vw;
    height: 38vh;
    top: 20px;
    left: 8px;
    border: 25px ridge silver;
    box-sizing: border-box;
    background: white;
    z-index: 11;
}

.gloria-hallelujah-regular {
    font-family: "Gloria Hallelujah", cursive;
    font-weight: 400;
    font-style: normal;
}

.whiteboard-title {
    position: absolute;
    width: 132px;
    height: auto;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
}

.holder {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0.4);
    bottom: -55px;
    z-index: 10;
}

.marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0.4);
    bottom: -42px;
    z-index: 3;
}

.whynotnow {
    position: absolute;
    width: 75px;
    height: auto;
    bottom: -6px;
    right: -3px;
    transition: opacity 0.3s ease-in-out;
}

.whynotnow:hover {
    content: url("Whiteboard/whynotnow.png");
}

.note {
  position: absolute;
  top: 90px;
  left: 140px;

  width: 120px;
  padding: 10px;
}

.projectslist {
    position: absolute;
    width: 92px;
    top: 5px;
    left: 12px;
}
.fortune {
    position: absolute;
    width: 118px;
    top: 13px;
    right: 0px;
    z-index: 1;
}

.crystalball {
    position: absolute;
    width: 96px;
    top: 14px;
    right: 14px;
    z-index: 2;
}

.ScorpioMagnet {
    position: absolute;
    width: 52px;
    height: auto;
    top: 8px;
    left: 98px;
}
.StarMagnet {
    position: absolute;
    width: 52px;
    height: auto;
    top: 58px;
    left: 84px;
}
.HealthMagnet {
    position: absolute;
    width: 52px;
    height: auto;
    top: 52px;
    left: 134px;
}
.center {
    font-family: "Gloria Hallelujah", cursive;
    color: #a10dc5;
    position: absolute;
    width: 838px;
    height: auto;
    top: 355px;
    left: 126px;
    font-size: 20px;
}

.crystal-ball2 {
    position: fixed;
    bottom: 20px;
    left: calc(50% + 436px);
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #3b0078 0%, #190034 90%);
    box-shadow: 0 0 25px rgba(160, 16, 203, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 85;
}
.iris2 {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, #999 60%, #444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease-out;
    z-index: 2;
}
.pupil2 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1) inset;
}
.stand2 {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: linear-gradient(to bottom, #4b2a0a, #2e1806);
    border-radius: 10px 10px 4px 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

loading-screen {
    height: 100%;
    width: 100%;
    background: var(--dark-violet);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

.germania-one-regular {
    font-family: "Germania One", system-ui;
    font-weight: 400;
    font-style: normal;
}

.bahiana-regular {
    font-family: "Bahiana", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.gif-wrapper {
    position: relative;
    display: block;
    width: 120px;
    margin: 0 auto 81px;
}

.loading-gif {
    width: 120px;
    display: block;
    position: relative;
    z-index: 4;
    top: 90px;
    left: auto;
}

.gif-glow {
    position: absolute;
    top: 115%;
    left: 50%;
    width: 295px;
    height: 253px;
    transform: translate(-50%, -50%);
    border-radius: 87%;
    background: radial-gradient(circle, var(--aquamarine) 0%, rgba(150, 245, 198, 0) 70%);
    filter: blur(52px);
    z-index: 3;
    animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

.loading-title {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-family: "Germania One", system-ui;
    font-size: 47px;
    margin-bottom: 0;

    
    background: linear-gradient(145deg, #ffd700 0%, #ffc700 40%, #ffb600 60%, #ffd700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.2);

    
    background-size: 200% 100%;
    animation: goldShimmer 3s linear infinite;
}


@keyframes goldShimmer {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}


.loading-bar-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 300px;
    height: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 2;
}


.loading-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 15px;
    background: linear-gradient(90deg, var(--bar-start) 0%, var(--bar-middle) 40%, var(--bar-end) 100%);
    box-shadow:
        inset 0 0 10px rgba(255, 255, 255, 0.4),
        0 0 10px rgba(85, 153, 151, 0.6);
    position: absolute;
    top: 0;
    left: 0;
}

.loading-bar-percentage {
    position: absolute;
    width: 100%;
    text-align: center;
    color: var(--bar-middle);
    font-family: "Bahiana", sans-serif;
    font-weight: bold;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}


@keyframes fillBar {
    0% {
        width: 0%;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 0%;
    }
}

.loading-image-wrapper {
    margin-top: 280px;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.loading-image {
    width: 232px;
    height: auto;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.crystal-ball {
    position: fixed;
    bottom: 20px;
    left: calc(50% + 0px);
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #3b0078 0%, #190034 90%);
    box-shadow: 0 0 25px rgba(160, 16, 203, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}
.iris {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, #999 60%, #444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease-out;
    z-index: 2;
}
.pupil {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1) inset;
}
.stand {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: linear-gradient(to bottom, #4b2a0a, #2e1806);
    border-radius: 10px 10px 4px 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1;
}
