* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #0f2027, #203a43, #2c5364);
    color: white;
    font-family: sans-serif;
}

.title {
    margin-bottom: 20px;
}

#scratch-container {
    width: 320px;
    height: 320px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

#reveal-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.emoji {
    font-size: 60px;
}

.msg {
    font-size: 22px;
    font-weight: bold;
}

.sub {
    font-size: 14px;
}

#copy-btn {
    margin-top: 10px;
    padding: 6px 15px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

#scratch-canvas {
    position: absolute;
    inset: 0;
}

#progress-bar-wrap {
    width: 320px;
    height: 10px;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

#progress-bar {
    height: 100%;
    width: 0%;
    border-radius: 50px;
    background: linear-gradient(90deg, #00ffcc, #00c6ff, #0072ff);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.7);
    transition: width 0.3s ease;
}

#hint {
    margin-top: 10px;
    font-size: 12px;
}

#reset-btn {
    margin-top: 10px;
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
}

#confetti-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
}