<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ì&nbsp;„ì²´ íŽ˜ì´ì§€ ìŠ¤íƒ€ì¼ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.game-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 20px 80px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#gameCanvas {
    border: 3px solid #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    background: #87CEEB;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.upper-link {
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.upper-link a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.upper-link a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.upper-link__game {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
}

.upper-link__ach {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.upper-link__rank {
    background: linear-gradient(45deg, #ffe66d, #ffa500);
}

/* ë°˜ì‘í˜• ë””ìžì¸ */
@media (max-width: 768px) {
    .game-container {
        padding: 0;
        margin: auto;
        border-radius: 0;
        background: none;
        box-shadow: none;
        border: none;
    }
    
    #gameCanvas {
        max-width: 100%;
        height: auto;
        border: none;
        border-radius: 0;
    }
    
    .upper-link {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .upper-link a {
        text-align: center;
        padding: 15px;
        width: 100%;
    }
}

/* ê²Œìž„ UI ìš”ì†Œë“¤ */
.game-info {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    font-size: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-size: 24px;
    color: white;
}

/* ê²Œìž„ ì˜¤ë²„ ìŠ¤íƒ€ì¼ */
.game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.jump-button-container {
    width: 100%;
    padding: 20px;
}

/* ëª¨ë°”ì¼ìš© ì&nbsp;í”„ ë²„íŠ¼ */
.jump-button {
    display: none; /* ê¸°ë³¸ì&nbsp;ìœ¼ë¡œ ìˆ¨ê¹€ */
    width: 100%;
    max-width: 400px;
    height: 80px;
    margin: 30px auto;
    font-size: 24px;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    touch-action: manipulation; /* ë”ë¸”íƒ­ ì¤Œ ë°©ì§€ */
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}


/* ëª¨ë°”ì¼ì—ì„œë§Œ ë²„íŠ¼ í‘œì‹œ */
@media (max-width: 768px) {
    .jump-button-container,
    .jump-button {
        display: block;
    }
} </pre></body></html>