body {
    margin: 0;
    padding: 0;
    background-color: #EBC791;
    font-family: sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}

.scene-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.scene-content {
    position: relative;
    width: 1100px; /* Wide enough to contain guitar (-262px) and odway (+262px) with margins */
    height: 800px;
    transform-origin: center center;
    pointer-events: auto;
}

.background-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(249, 239, 219, 1) 0%, rgba(242, 219, 182, 1) 20%, rgba(235, 199, 145, 1) 70%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    will-change: transform, opacity;
}

.asset {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    will-change: transform, opacity;
}

/* Desk - Centered exactly */
#desk {
    z-index: 10;
    width: 600px;
    margin-left: 0px;
    margin-top: 0px;
    transform: translate(-50%, -50%) scale(1);
}

/* Posters - Behind desk, higher up */
.poster-wrapper {
    opacity: 0;
    z-index: 5;
}

#nirvana-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    margin-left: -105px;
    margin-top: -292px;
    transform: translate(-50%, -50%) rotate(-5deg) scale(1);
    width: 150px;
    height: 225px;
}

.poster-mask {
    position: relative;
    width: 100%;
    height: 0%;
    overflow: hidden;
}

.poster-image {
    width: 100%;
    display: block;
}

.poster-roll {
    position: absolute;
    top: 0%;
    left: -5%;
    width: 110%;
    height: 15px;
    background: linear-gradient(to bottom, #dcdcdc, #f0f0f0, #bfbfbf);
    border-radius: 2px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.3);
    z-index: 10;
    margin-top: -8px;
}

#larry-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    margin-left: 105px;
    margin-top: -315px;
    transform: translate(-50%, -50%) rotate(3deg) scale(1);
    width: 150px;
    height: 225px;
}

/* Desk Items - On top of desk */
.desk-item {
    z-index: 20;
}

#pc-wrapper {
    margin-left: 48px;
    margin-top: -134px;
    width: 200px;
    transform: translate(-50%, -50%) scale(1);
}

.pc-image {
    width: 100%;
    display: block;
}

.pc-cursor {
    position: absolute;
    top: 20%;
    left: 35%;
    width: 8px;
    height: 14px;
    background-color: #00ff00;
    box-shadow: 0 0 4px #00ff00;
    opacity: 1;
    z-index: 21;
}

.pc-text {
    position: absolute;
    top: 20%;
    left: 35%;
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 14px;
    color: #00ff00;
    text-shadow: 0 0 2px #00ff00;
    white-space: pre;
    line-height: 1.4;
    transform-origin: top left;
    opacity: 0;
    z-index: 21;
}

.blinking {
    animation: blink 1s step-end infinite;
}

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

#cd {
    margin-left: -171px;
    margin-top: -83px;
    width: 80px;
    opacity: 0;
}

/* Burger Components - Final positions */
#bun-bottom {
    margin-left: -87px;
    margin-top: -100px;
    z-index: 20;
    opacity: 0;
}

#burger-patty {
    margin-left: -88px;
    margin-top: -107px;
    z-index: 21;
    opacity: 0;
}

#cheese {
    margin-left: -87px;
    margin-top: -108px;
    z-index: 22;
    opacity: 0;
}

#tomato {
    margin-left: -87px;
    margin-top: -114px;
    z-index: 23;
    opacity: 0;
}

#lettuce {
    margin-left: -88px;
    margin-top: -118px;
    z-index: 24;
    opacity: 0;
}

#bun-top {
    margin-left: -87px;
    margin-top: -128px;
    z-index: 25;
    opacity: 0;
}

#pizza {
    margin-left: 173px;
    margin-top: -76px;
    width: 120px;
    opacity: 0;
}

#odway-wrapper {
    z-index: 25;
    margin-left: 262px;
    margin-top: -294px;
    width: 120px;
    opacity: 0;
}

.odway-image {
    width: 100%;
    display: block;
}

/* Guitar - Leaning */
#guitar {
    z-index: 30;
    margin-left: -262px;
    margin-top: -6px;
    width: 150px;
    opacity: 0;
}

/* Basketball */
#basketball {
    z-index: 30;
    margin-left: 161px;
    margin-top: 99px;
    width: 375px;
    opacity: 0;
}

/* Content Area */
.content-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: 180px;
    width: 600px;
    max-width: 90%;
    font-family: 'Courier New', Courier, monospace;
    color: #333;
    z-index: 15;
    opacity: 0;
    text-align: center;
    pointer-events: auto;
}

.content-area h2 {
    font-size: 24px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-area .date {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.content-area p {
    font-size: 16px;
    line-height: 1.6;
}

/* Social Footer */
.social-footer {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 32px;
    height: 32px;
    opacity: 0;
}

.hidden {
    display: none !important;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #333;
    opacity: 1;
    transition: opacity 0.3s;
    z-index: 100;
}

.scroll-indicator p {
    margin: 0 0 5px 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arrow {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}
