    #christmas-game {
        margin: 0;
        font-family: "Maven Pro", sans-serif;
        background: radial-gradient(circle at center, #111 0%, #000 100%);
        overflow: hidden;
        color: #fff;
        user-select: none;
        touch-action: none;
    }

    #game {
        position: relative;
        width: 100%;
        height: 600px;
        cursor: none;
        background: radial-gradient(circle at center, #111 0%, #000 100%);
        color: white;
        overflow: hidden;
    }
	
	 #startScreen {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        z-index: 20;
        transition: opacity 0.5s ease;
        text-align: center;
        padding: 20px;
		cursor: pointer;
    }

    #startScreen.hidden {
        opacity: 0;
        pointer-events: none;
    }

    #startButton {
        font-family: "Maven Pro", sans-serif;
        font-size: 22px;
        padding: 14px 32px;
        background: #C67D19;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        margin-top: 20px;
        color: #000;
    }

    #player {
        width: 50px;
        height: 50px;
        position: absolute;
        pointer-events: none;
    }

    .spark {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: #ffe7a3;
        position: absolute;
        box-shadow: 0 0 10px #ffd86b;
    }

    #score, #timer {
        position: absolute;
        top: 20px;
        font-size: 22px;
		color: white;
    }

    #score { left: 20px; }
    #timer { right: 20px; }

    #endScreen {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.88);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.7s ease;
        text-align: center;
        padding: 20px;
		cursor: auto;
    }

    #endScreen.visible {
        opacity: 1;
        pointer-events: auto;
    }

    #restart {
		font-family: "Maven Pro", sans-serif;
		font-weight: 400;
        margin-top: 20px;
        padding: 12px 24px;
        font-size: 18px;
        background: #C67D19;
        color: #000;
        border: none;
        cursor: pointer;
        border-radius: 6px;
    }
