        * {
            margin: 0;
            padding: 0;
        }

        body {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: Arial, Helvetica, sans-serif;
            background-color: #2b7589;
        }

        .seletorIdioma {
            position: relative;
            background-color: #205066;
            padding: 10px 20px;
            border-radius: 15px;
            border: 4px solid #0e2b3f;
            color: #f3e4cd;
            cursor: pointer;
            user-select: none;
            margin-top: 5px;
        }

        .seletorIdioma::after {
            content: "▼";
            margin-left: 10px;
            font-size: 12px;
        }

        .opcoesIdioma {
            position: absolute;
            top: 110%;
            left: 0;
            width: 100%;
            background-color: #1a3a4d;
            border-radius: 10px;
            border: 2px solid #0e2b3f;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 999;
        }

        .seletorIdioma:hover .opcoesIdioma {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .opcao {
            padding: 10px;
            color: #f3e4cd;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s;
        }

        .opcao:hover {
            background-color: #294f5e;
            cursor: pointer;
        }

        .bandeira {
            width: 24px;
            height: 16px;
            border-radius: 3px;
            border: 1px solid #ccc;
        }


        .content {
            color: #f3e4cd;
            background-color: #205066;
            padding-left: 13px;
            padding-right: 13px;
            display: flex;
            flex-direction: column;
            align-items: center;
            border-radius: 20px;
            border: 6px solid #0e2b3f;
        }

        .content h1 {
            font-size: 40px;
            text-align: center;
            padding-top: 20px;
            padding-bottom: 20px;
        }

        main {
            width: 320px;
            height: 320px;
            background-color: #162b40;
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 5px;
            border-radius: 10px;
        }

        .linha1 {
            width: 100%;
            height: 33.333%;
            display: flex;
            gap: 6px;
        }

        .linha2 {
            width: 100%;
            height: 33.333%;
            display: flex;
            gap: 6px;
        }

        .linha3 {
            width: 100%;
            height: 33.333%;
            display: flex;
            gap: 6px;
        }

        .area {
            flex: 1;
            height: 100%;
            font-size: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f3e4cd;
            line-height: 1;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: clip;
        }

        .area:hover {
            background-color: #b6ac9b;
            cursor: pointer;
        }

        #area1 {
            border-top-left-radius: 10px;
        }

        #area3 {
            border-top-right-radius: 10px;
        }

        #area7 {
            border-bottom-left-radius: 10px;
        }

        #area9 {
            border-bottom-right-radius: 10px;
        }

        #divPlacar {
            width: 100%;
            background-color: #10293e;
            border-radius: 15px;
            height: 60px;
            margin-top: 7px;
            display: flex;
            gap: 5px;
            padding: 5px;
        }

        #placarX,
        #placarMeio,
        #placarO {
            background-color: #1f4c65;
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 40px;
            font-weight: bold;

        }

        #placarX {
            border-bottom-left-radius: 10px;
            border-top-left-radius: 10px;
            color: #177597;
        }

        #placarO {
            border-bottom-right-radius: 10px;
            border-top-right-radius: 10px;
            color: #d35344;
        }

        #btResetarPlacar {
            width: 70%;
            height: 50px;
            background-color: #f7b647;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 10px;
            border-radius: 35px;
            border: 6px solid #0e2b3f;
            margin-bottom: 15px;
            font-weight: bolder;
            font-size: 25px;
            color: white;
        }

        #btResetarPlacar:hover {
            cursor: pointer;
            background-color: #d39d40;
        }

        section {
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.377);
            display: flex;
            align-items: center;
            justify-content: center;
            display: none;
            position: absolute;
        }

        #caixaVencedor {
            background-color: white;
            border-radius: 30px;
            text-align: center;
            padding: 15px;
            height: 200px;
            width: 250px;
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            display: none;
        }

        #caixaVencedor p {
            font-size: 20px;
        }

        #caixaVencedor #vencedor {
            font-size: 60px;
            font-weight: bold;
        }

        #caixaEmpate {
            background-color: white;
            border-radius: 30px;
            text-align: center;
            padding: 15px;
            height: 200px;
            display: flex;
            justify-content: center;
            flex-direction: column;
            width: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            display: none;
        }

        #caixaEmpate p {
            font-weight: bold;
            font-size: 30px;
            color: #0051ff;
        }

        .btOk {
            background-color: green;
            color: white;
            border: none;
            border-radius: 20px;
            width: 60%;
            height: 40px;
            font-size: 25px;
            font-weight: bold;
            margin-top: 15px;
        }

        .btOk:hover {
            background-color: rgb(5, 73, 5);
            cursor: pointer;
        }

        #caixaConfirmacao {
            background-color: white;
            padding: 9px;
            display: flex;
            flex-direction: column;
            display: none;
            height: 200px;
            width: 250px;
            justify-content: space-evenly;
            text-align: center;
            border-radius: 15px;
        }

        #confirmText {
            font-size: 20px;
        }

        .botoes {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .botoes button {
            width: 70%;
            border-radius: 30px;
            border: none;
            height: 40px;
            font-size: 19px;
            color: white;
            font-weight: bold;
        }

        .botoes button {
            cursor: pointer;
        }

        .btSim {
            background-color: green;
        }

        .btSim:hover {
            background-color: rgb(2, 65, 2);
        }

        .btNao {
            background-color: red;
        }

        .btNao:hover {
            background-color: rgb(179, 3, 3);
        }