@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    background-color: #ffe6f2; /* Soft pastel pink */
    color: #4a4a4a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Memberikan efek polkadot imut */
    background-image: radial-gradient(#ffb3cc 2.5px, transparent 2.5px);
    background-size: 30px 30px;
}

.container {
    width: 90%;
    max-width: 550px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
    padding: 30px;
    text-align: center;
    border: 4px solid #ff99c2; /* Pinggiran pink khas HK */
}

h1 {
    color: #ff4d94;
    font-size: 2.5em;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(255, 77, 148, 0.2);
}

.card {
    background-color: #fff0f5;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 2px dashed #ffb3cc;
}

h2 {
    color: #ff66a3;
    margin-top: 0;
}

.folder-info {
    background-color: #ffcce0;
    padding: 10px 20px;
    border-radius: 15px;
    display: inline-block;
    margin-top: 15px;
    color: #d81b60;
    font-size: 0.95em;
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.8);
}

.game-container {
    background-color: #ffffff;
    border: 2px solid #ffb3cc;
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
}

.score-board {
    font-weight: bold;
    color: #ff4d94;
    font-size: 1.1em;
}

#game-area {
    width: 100%;
    height: 200px;
    background-color: #ffe6f2;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
    border: 2px solid #ffcce0;
    cursor: crosshair;
}

#target {
    font-size: 2.5em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    user-select: none;
    transition: transform 0.1s ease;
}

#target:active {
    transform: translate(-50%, -50%) scale(0.8);
}

footer {
    margin-top: 25px;
    font-size: 0.9em;
    color: #ff99c2;
    font-weight: bold;
}