<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(45deg, #87CEEB, #FFB6C1);
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
    overflow: hidden;
    touch-action: manipulation;
}

.game-container-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

#gameContainer {
    position: relative;
    width: 400px;
    height: 600px;
    background: linear-gradient(180deg, #87CEEB 50%, #f7d08a 50%); /* Fixed orientation: sky on top, sand on bottom */
    border: 5px solid #ff69b4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

/* Sidebar styles */
.sidebar {
    width: 300px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 600px;
    overflow-y: auto;
}

.menu-link {
    margin-bottom: 10px;
}

.back-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #ff69b4;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.back-button:hover {
    background-color: #ff4da6;
    transform: scale(1.05);
}

.game-description {
    color: #333;
}

.game-description h2 {
    color: #ff69b4;
    margin-top: 0;
}

.social-sharing {
    text-align: center;
    margin: 0;
    padding-top: 2px;
}

.social-sharing h3 {
    color: #ff69b4;
    margin: 0 0 4px 0;
    font-size: 0.9em;
}

.social-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-button:hover {
    transform: scale(1.1);
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.whatsapp {
    background-color: #25d366;
}

.messenger {
    background-color: #0084ff;
}

/* Sun in the sky */
#gameContainer::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 60px;
    height: 60px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 30px #FFD700;
    z-index: 1;
}

/* Clouds in the sky */
#gameContainer::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 40px;
    width: 80px;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    box-shadow: 
        100px -20px 0 -10px rgba(255, 255, 255, 0.6),
        200px 10px 0 -5px rgba(255, 255, 255, 0.7);
    z-index: 1;
}

/* Sand texture */
.sand-texture {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: radial-gradient(circle at center, #f7d08a 0%, #f7d08a 30%, #e6c079 40%, #f7d08a 50%);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

#player {
    position: absolute;
    width: 110px;
    bottom: 200px;
    left: 50px;
    image-rendering: crisp-edges;
    z-index: 2;
    transition: bottom 0.3s ease-out;
}

/* Invincibility effect */
#player.invincible {
    animation: invincible-glow 0.5s infinite alternate;
}

@keyframes invincible-glow {
    from {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
    }
    to {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
    }
}

/* Magnet power-up effect */
#player.magnet-active {
    animation: magnet-pulse 1s infinite alternate;
}

@keyframes magnet-pulse {
    from { 
        filter: drop-shadow(0 0 5px rgba(0, 0, 255, 0.8));
    }
    to { 
        filter: drop-shadow(0 0 15px rgba(0, 0, 255, 0.8));
    }
}

.obstacle {
    position: absolute;
    right: -100px;
    image-rendering: crisp-edges;
    z-index: 2;
}

/* Power-ups and collectibles */
.powerup, .collectible {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 2;
    image-rendering: crisp-edges;
}

.powerup {
    animation: float 2s infinite alternate ease-in-out;
}

.collectible {
    animation: spin 3s infinite linear;
}

/* Special animation for whiskey collectible */
.collectible-whiskey {
    animation: wobble 2s infinite ease-in-out;
}

@keyframes wobble {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

/* Power-up indicator */
#powerupIndicator {
    position: absolute;
    top: 80px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
}

.powerup-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    position: relative;
}

/* Flashing animation for expiring power-ups */
.powerup-icon.flashing {
    animation: flash 0.5s infinite alternate;
}

@keyframes flash {
    from { opacity: 1; background-color: rgba(255, 255, 255, 0.7); }
    to { opacity: 0.5; background-color: rgba(255, 105, 180, 0.7); }
}

.timer-bar {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.timer-progress {
    height: 100%;
    background: #ff69b4;
    transition: width 0.1s linear;
}

/* Floating text for points */
.floating-text {
    position: absolute;
    color: #ffff00;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    animation: float-up 1s forwards;
    z-index: 10;
}

@keyframes float-up {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-50px);
    }
}

/* Updated obstacle sizes - restored to original sizes */
.obstacle-one { 
    width: 100px; 
    bottom: 200px;
}

.obstacle-two {
    width: 100px;
    bottom: 200px;
}

.obstacle-three {
    width: 100px;
    bottom: 200px;
}

.obstacle-four {
    width: 100px;
    bottom: 200px;
}


#score {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 3;
}

#levelDisplay {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: bold;
    z-index: 3;
}

#timerDisplay {
    position: absolute;
    top: 50px;
    right: 20px;
    font-size: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 3;
}

#soundButton {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: rgba(128, 128, 128, 0.6); /* Semi-transparent grey */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

#soundButton:hover {
    background: rgba(128, 128, 128, 0.8); /* Slightly more opaque on hover */
    transform: translateX(-50%) scale(1.1);
}

.sound-toggle {
    font-size: 24px;
    color: #ffffff; /* White icon for better contrast against grey */
}

#startScreen {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,105,180,0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 4;
}

button {
    padding: 15px 30px;
    font-size: 24px;
    background: white;
    border: none;
    border-radius: 30px;
    color: #ff69b4;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

button:hover { transform: scale(1.1); }

/* Responsive design */
@media (max-width: 768px) {
    .game-container-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .sidebar {
        width: 400px;
        max-width: 90%;
        margin-top: 20px;
    }
    
    #gameContainer {
        width: 400px;
        max-width: 90%;
    }
}

/* Power-ups toggle button */
.powerups-toggle {
    cursor: pointer;
    background-color: rgba(255, 105, 180, 0.2);
    border-radius: 10px;
    padding: 8px 12px;
    margin: 15px 0 0 0;
    transition: background-color 0.3s ease;
}

.powerups-toggle:hover {
    background-color: rgba(255, 105, 180, 0.3);
}

.powerups-toggle h3 {
    color: #ff69b4;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.powerups-toggle i {
    transition: transform 0.3s ease;
}

.powerups-toggle.active i {
    transform: rotate(180deg);
}

/* Power-ups info in sidebar */
.powerups-info {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0 0 10px 10px;
    padding: 0 10px;
    transition: all 0.3s ease;
    opacity: 0;
}

.powerups-info.active {
    max-height: 300px;
    padding: 10px;
    margin-bottom: 15px;
    opacity: 1;
}

.powerup-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.powerup-item:last-child {
    margin-bottom: 0;
}

.powerup-item img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 3px;
}

.powerup-item span {
    font-size: 14px;
    line-height: 1.3;
}

/* Feedback section styles */
.feedback-section {
    text-align: center;
    margin-bottom: 0;
    padding: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
}

.feedback-section h3 {
    color: #ff69b4;
    margin: 0 0 4px 0;
    font-size: 0.9em;
}

.feedback-buttons {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 2px;
}

.feedback-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.feedback-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: 2px solid #ff69b4;
    border-radius: 10px;
    padding: 4px 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
}

.feedback-emoji {
    font-size: 20px;
    margin-bottom: 2px;
}

.feedback-text {
    font-size: 11px;
    color: #ff69b4;
    font-weight: bold;
    transition: color 0.2s ease;
}

.feedback-score {
    font-size: 11px;
    color: #666;
    font-weight: bold;
}

.feedback-message {
    height: 14px;
    font-size: 11px;
    margin: 0;
}

.feedback-message.show {
    opacity: 1;
}

/* Lives display */
#livesDisplay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 24px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 3;
}

/* Speech bubble styling */
.speech-bubble {
    position: absolute;
    background-color: white;
    border-radius: 10px;
    padding: 10px 15px;
    max-width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-size: 14px;
    line-height: 1.3;
    z-index: 10;
    text-align: center;
}

.speech-bubble:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: white transparent transparent;
}

/* Tap counter styling */
.tap-counter {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 105, 180, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 18px;
    z-index: 10;
    animation: pulse 0.5s infinite alternate;
}

@keyframes pulse {
    from { transform: translateX(-50%) scale(1); }
    to { transform: translateX(-50%) scale(1.1); }
}

/* Player shake animation for trapped state */
.trapped-shake {
    animation: shake 0.05s infinite alternate ease-in-out;
    --shake-intensity: 3px;
}

@keyframes shake {
    from { transform: translateX(calc(-1 * var(--shake-intensity, 3px))); }
    to { transform: translateX(var(--shake-intensity, 3px)); }
}</pre></body></html>