<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    background-color: #000;
}

#container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #120010;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-content {
    text-align: center;
    color: #fff;
}

.loading-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff00ff;
}

.progress-bar {
    width: 300px;
    height: 20px;
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #00ffff, #ff00ff);
}

/* UI Elements */
#ui-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
}

#water-meter {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: #00aaff;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
    border: 1px solid rgba(0, 170, 255, 0.5);
    z-index: 5000; /* Ensure it's above other elements */
}

.meter-label {
    font-weight: bold;
    margin-right: 10px;
}

.meter-bar {
    width: 150px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #0066ff, #00ffff);
    transition: width 0.5s;
}

.meter-value {
    margin-left: 10px;
    font-weight: bold;
}

#dj-mode-toggle button, #music-controls button {
    background-color: #ff7700;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
    margin-bottom: 10px;
}

#dj-mode-toggle button:hover, #music-controls button:hover {
    background-color: #ff9900;
    transform: scale(1.05);
}

#dj-mode-toggle button.active {
    background-color: #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.7);
    animation: pulse 2s infinite;
}

#music-controls button {
    background-color: #00aaff;
}

#music-controls button:hover {
    background-color: #33bbff;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.7);
}

#music-controls button.active {
    background-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 5px rgba(255, 0, 255, 0.7); }
    50% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.9); }
    100% { box-shadow: 0 0 5px rgba(255, 0, 255, 0.7); }
}

/* Reactions */
.reaction-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.reaction-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.2s;
}

.reaction-button:hover {
    transform: scale(1.2);
}

.like-button {
    background-color: #4080ff;
}

.love-button {
    background-color: #ff4040;
}

.wow-button {
    background-color: #ffaa00;
}

/* Info panels */
.info-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(34, 34, 51, 0.9);
    padding: 20px;
    border-radius: 10px;
    border: 3px solid #4477aa;
    max-width: 600px;
    z-index: 200;
    color: white;
    display: none;
}

.info-panel h2 {
    margin-bottom: 15px;
    text-align: center;
    color: #ffffff;
}

.info-panel p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-panel .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #aa4444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.info-panel .close-button:before,
.info-panel .close-button:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 3px;
    background-color: white;
}

.info-panel .close-button:before {
    transform: rotate(45deg);
}

.info-panel .close-button:after {
    transform: rotate(-45deg);
}

.logo {
    margin-bottom: 30px;
}

.logo h1 {
    font-size: 4rem;
    color: #ff00ff;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.7),
        0 0 20px rgba(255, 0, 255, 0.5),
        0 0 30px rgba(255, 0, 255, 0.3);
    animation: glowLogo 2s ease-in-out infinite alternate;
    letter-spacing: 5px;
    text-transform: uppercase;
}

@keyframes glowLogo {
    from {
        text-shadow: 
            0 0 10px rgba(255, 0, 255, 0.7),
            0 0 20px rgba(255, 0, 255, 0.5),
            0 0 30px rgba(255, 0, 255, 0.3);
    }
    to {
        text-shadow: 
            0 0 20px rgba(255, 0, 255, 0.9),
            0 0 30px rgba(255, 0, 255, 0.7),
            0 0 40px rgba(255, 0, 255, 0.5);
    }
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background-color: #000;
}

#container {
    position: absolute;
    width: 100%;
    height: 100%;
}

#loading-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-content {
    text-align: center;
    color: #fff;
}

.logo h1 {
    font-size: 3em;
    color: #ff4500;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.progress-bar {
    width: 300px;
    height: 20px;
    background-color: #333;
    border-radius: 10px;
    margin: 20px auto;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #ff4500;
    width: 0%;
    transition: width 0.3s;
}

#ui-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

#water-meter {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: white;
    display: flex;
    align-items: center;
}

.meter-label {
    margin-right: 10px;
    font-weight: bold;
}

.meter-bar {
    width: 100px;
    height: 15px;
    background-color: #333;
    border-radius: 7px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(to right, #0066ff, #00ffff);
    width: 0%;
    transition: width 0.5s ease-out;
    box-shadow: 0 0 8px rgba(0, 170, 255, 0.7);
    border-radius: 7px;
}

.meter-value {
    margin-left: 10px;
}

#dj-mode-toggle button {
    background-color: #ff4500;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

#dj-mode-toggle button:hover {
    background-color: #ff6a33;
}

.mars-survival-puzzle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #00ffff;
}

.puzzle-container {
    width: 90%;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(26, 10, 1, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

.puzzle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.puzzle-piece {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #00ffff;
}

.puzzle-piece:hover {
    transform: scale(1.05);
    background-color: rgba(0, 255, 255, 0.2);
}

.puzzle-piece.placed {
    background-color: rgba(0, 255, 0, 0.3);
    border-color: #00ff00;
}

.progress-bar {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.progress {
    width: 0%;
    height: 20px;
    background: linear-gradient(to right, #00ffff, #ff4500);
    transition: width 0.5s ease;
}


#music-player-container {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Adjust game container to account for bottom row */
#game-container {
    position: relative;
    width: 100vw;
    height: calc(100vh - 80px);
    padding-top: 80px;
    box-sizing: border-box;
    z-index: 1;
}

#game-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    z-index: 2;
}</pre></body></html>