* {
                box-sizing: border-box;
            }

            body {
                margin: 0;
                font-family: "Quicksand", sans-serif;
                background: linear-gradient(to bottom right, #fef6e4, #e0f2f1);
                color: #333;
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 0rem;
            }

            h1 {
                font-size: 2.2rem;
                margin-bottom: 1rem;
                margin-top: 1rem;
                color: #6c63ff;
                text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
            }

            #flag {
                width: 280px;
                height: 180px;
                object-fit: contain;
                border: 4px solid #fff;
                border-radius: 16px;
                background: #fff;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
                margin: 1.6rem 0;
            }

            .options {
                display: flex;
                flex-direction: column;
                justify-content: center;
                margin-bottom: 0.5rem;
                gap: 1rem;
            }

            button {
                background: #ffd6e0;
                color: #333;
                padding: 0.75rem 1.5rem;
                font-size: 1rem;
                border: none;
                border-radius: 12px;
                box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
                font-weight: 600;
                transition: all 0.25s ease;
                cursor: pointer;
            }

            button:hover {
                background: #ffcad4;
                transform: scale(1.05);
            }

            #feedback {
                font-weight: 700;
                font-size: 1.1rem;
                color: #222;
                min-height: 1.5rem;
            }

            #score {
                font-size: 1.1rem;
                margin-top: 1rem;
            }

            #gameover {
                display: none;
                flex-direction: column;
                gap: 1rem;
                margin-top: 0rem;
                align-items: center;
            }

            #finalMessage {
                font-size: 1.3rem;
                font-weight: bold;
                color: #6c63ff;
            }

            .result {
                display: flex;
                gap: 1rem;
                justify-content: center;
                margin-top: 1rem;
            }

            .result button {
                background: #bae6fd;
            }

            .result button:hover {
                background: #7dd3fc;
            }