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

            body {
                font-family: "Segoe UI", sans-serif;
                background-color: #1e1e1e;
                color: white;
                text-align: center;
                padding: 10px;
            }

            h1 {
                margin-bottom: 0.5rem;
            }

            #description {
                margin-bottom: 20px;
                font-size: 1rem;
            }

            #box {
                width: 300px;
                height: 300px;
                margin: 10px auto;
                border-radius: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 2rem;
                font-weight: bold;
                background-color: #555;
                transition: background-color 0.2s;
                position: relative;
                flex-direction: column;
                cursor: pointer;
            }

            #word {
                font-size: 2rem;
                font-weight: bold;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            }

            #score,
            #message,
            #finalScore {
                font-size: 1.1rem;
                margin: 10px;
            }

            #controls {
                margin-top: 15px;
                display: none;
            }

            .btn {
                padding: 8px 16px;
                margin: 5px;
                border: solid;
                border-radius: 6px;
                border-color: white;
                background-color: rgba(0, 0, 0, 0.7);
                color: white;
                font-size: 1rem;
                cursor: pointer;
            }

            .btn:hover {
                background-color: #45a045;
            }