.entry-content p {
        margin: 1em;
    }

    /* --- MODAL DOWNLOAD STYLES --- */
    .download-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.7);
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(4px);
    }

    .download-modal.show {
        display: flex;
    }

    .modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 15px 5px;
        border: 1px solid #888;
        width: 96%;
        max-width: 450px;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        text-align: center;
        position: relative;
        animation: slideDown 0.3s ease-out;
    }

    @media (min-width: 768px) {
        .modal-content {
            padding: 30px;
            width: 90%;
        }
    }

    @keyframes slideDown {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .modal-title {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .timer-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 15px auto;
        border: 4px solid #084b93;
        font-size: 2rem;
        font-weight: bold;
        color: #084b93;
    }

    .wait-text {
        font-size: 1rem;
        color: #666;
        margin-bottom: 20px;
    }

    .ad-container-modal {
        background: #fafafa;
        min-height: 250px;
        margin: 15px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        border: 1px dashed #ddd;
        overflow: hidden;
    }

    .ad-label {
        font-size: 0.7rem;
        color: #aaa;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }

    /* Estilos da Barra de Dificuldade */
    .difficulty-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        background: #f8fdff;
        padding: 12px;
        border-radius: 10px;
        border: 2px solid #e0f2f1;
        flex-wrap: wrap;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

    .difficulty-label {
        font-size: 1.1rem;
        color: #456;
    }

    .difficulty-badge {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 15px;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 0.85rem;
        margin-left: 5px;
    }

    .diff-facil .difficulty-badge {
        background-color: #d1fae5;
        color: #065f46;
    }

    .diff-medio .difficulty-badge {
        background-color: #dbeafe;
        color: #1e40af;
    }

    .diff-dificil .difficulty-badge {
        background-color: #fee2e2;
        color: #991b1b;
    }

    .difficulty-options {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .btn-difficulty {
        text-decoration: none !important;
        background-color: #fff;
        border: 2px solid #7cb9b9;
        color: #2c4747 !important;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.2s;
        white-space: nowrap;
    }

    .btn-difficulty:hover {
        background-color: #7cb9b9;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 3px 8px rgba(124, 185, 185, 0.4);
    }

    @media (max-width: 600px) {
        .difficulty-bar {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }

        .difficulty-options {
            justify-content: center;
            width: 100%;
        }
    }

    #game-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
        width: 100%;
        max-width: 1200px;
    }

    #word-grid {
        display: grid;
        grid-template-columns: repeat(var(--grid-size, 13), 35px);
        gap: 2px;
        background-color: #7cb9b9;
        padding: 5px;
        z-index: 10;
    }

    .grid-cell {
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s, transform 0.1s;
        background-color: #ecfff2;
        border-radius: 2px;
    }

    .grid-cell:hover {
        background-color: #a0e9eb;
        transform: scale(1.1);
    }

    .grid-cell.selected {
        background-color: #a0e9eb;
        transition: background-color 0.1s, transform 0.1s;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        z-index: 2;
    }

    .word-selection-active {
        background-color: rgba(0, 0, 0, 0.5);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        pointer-events: none;
    }

    .word-item {
        font-size: .85rem;
        padding: 5px;
        line-height: normal;
        transition: all 0.5s;
        background-color: #9dd6d6ff;
        border-radius: 5px;
        font-weight: bold;
        letter-spacing: .15rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .word-item.found {
        color: #2c4747;
        background-color: #82fdff;
        transform: scale(1.05);
        font-weight: bold;
        box-shadow: 0 0 10px #aaffff;
    }

    .word-item.found::after {
        content: '✓';
        position: absolute;
        z-index: 10;
        top: -50%;
        right: 5px;
        color: #ff0f0f;
        font-size: 1.75rem;
        animation: bounce 0.5s;
    }

    .loading-indicator {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 20px 30px;
        border-radius: 10px;
        font-size: 18px;
        z-index: 2000;
    }

    #jogue {
        text-align: center;
        font-weight: bold;
        color: rgb(27, 116, 116);
        letter-spacing: .05em;
        margin-bottom: 5px;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }

        60% {
            transform: translateY(-5px);
        }
    }

    #congrats-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: background-color 0.5s ease-in-out;
        pointer-events: none;
        overflow: hidden;
    }

    #congrats-screen.visible {
        display: flex;
        font-weight: 900;
        text-transform: uppercase;
        color: white;
        font-size: 4rem;
        pointer-events: auto;
    }

    #congrats-content {
        background-color: #ecf9f8;
        padding: 2rem;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transform: scale(0.5);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #congrats-screen.visible #congrats-content {
        transform: scale(.85);
        opacity: 1;
    }

    @keyframes confetti {
        0% {
            transform: translate(0, 0) rotateX(0) rotateY(0);
        }

        100% {
            transform: translate(var(--translate-x), 100vh) rotateX(360deg) rotateY(360deg);
        }
    }

    .confetti {
        position: absolute;
        width: 10px;
        height: 10px;
        background-color: var(--color);
        top: -10px;
        z-index: 1001;
        animation: confetti var(--duration) ease-in forwards;
        will-change: transform;
    }

    .confetti-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
        z-index: 1001;
    }

    #congrats-content h2 {
        color: #4e6469;
        font-size: 2em;
        margin: 10px;
    }

    #congrats-content p {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    #new-game-btn:hover {
        background-color: #3CB371;
    }

    #new-game-btn:active {
        background-color: #3CB371;
        box-shadow: 0 2px #228B22;
        transform: translateY(4px);
    }

    .grid-cell.found-word {
        background-color: #90EE90;
        transform: none;
    }

    .grid-cell.found-word:hover {
        background-color: #90EE90;
        transform: none;
    }

    #ultimas {
        display: flex;
        flex-wrap: wrap;
    }

    #ultimas li {
        flex: 1 1 25%;
        box-sizing: border-box;
        padding: 10px;
    }

    .modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2000;
    }

    .modal-content {
        background-color: #fff;
        padding: 2rem;
        border-radius: 15px;
        max-width: 500px;
        width: 90%;
        text-align: center;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }

    .close-btn {
        float: right;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
    }

    .step {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        background-color: #1a73e8;
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .help-indicator {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background-color: #1a73e8;
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        cursor: pointer;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        z-index: 100;
    }

    .success-feedback {
        position: fixed;
        top: 50%;
        left: 50%;
        width: min-content;
        transform: translate(-50%, -50%) scale(0.5);
        background-color: #90EE90;
        color: black;
        text-align: center;
        padding: 15px 20px;
        border-radius: 10px;
        font-size: 2rem;
        opacity: 0;
        transition: all 0.3s;
        z-index: 1500;
    }

    .success-feedback.show {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    @media (max-width: 768px) {
        #ultimas li {
            flex: 1 1 100%;
        }

        #game-container {
            flex-direction: column;
            align-items: center;
            padding: 0;
        }

        #word-grid {
            width: 100vw;
            max-width: 100vw;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            grid-template-columns: repeat(var(--grid-size, 13), 1fr);
            gap: 1px;
            touch-action: none;
            padding: 2px;
            box-sizing: border-box;
        }

        .grid-cell {
            width: 100%;
            height: auto;
            aspect-ratio: 1;
            font-size: clamp(8px, 3vw, 14px);
            min-width: 0;
        }

        #word-list {
            width: 100vw;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            box-sizing: border-box;
        }

        .word-item {
            font-size: 14px;
            padding: 3px 6px;
        }

        #congrats-content h2 {
            font-size: 2em;
        }

        #congrats-content p {
            font-size: 1.2em;
        }
    }

    @media (max-width: 480px) {
        #word-grid {
            padding: 1px;
            gap: 2px;
        }

        #word-list {
            flex-direction: initial !important;
            flex-wrap: wrap;
            justify-content: center;
            border-radius: 0 !important;
        }

        .grid-cell {
            font-size: clamp(10px, 4vw, 14px);
            font-weight: bold;
        }

        .word-item {
            font-size: 14px;
            padding: 5px 8px;
        }

        #congrats-content h2 {
            font-size: 1.5em;
        }

        #congrats-content p {
            font-size: 1em;
        }
    }

    .easy-mode-grid .grid-cell {
        width: 45px;
        /* Aumentar de 35px para 45px */
        height: 45px;
        font-size: 1.2rem;
        /* Fonte maior */
    }

    #word-grid.easy-mode-grid {
        grid-template-columns: repeat(var(--grid-size, 10), 45px);
    }

    /* Ajuste responsivo para mobile também deve ser considerado */
    @media (max-width: 768px) {
        .easy-mode-grid .grid-cell {
            font-size: clamp(12px, 5vw, 18px);
            width: 100%;
            height: auto;
            aspect-ratio: 1;
        }

        #word-grid.easy-mode-grid {
            grid-template-columns: repeat(var(--grid-size, 10), 1fr);
        }
    }

    .palavra {
        background-color: #ffdfa1;
        padding: 0px 10px;
        border-radius: 50px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .palavra.found-word {
        background-color: #90EE90;
    }

    /* Estilo do Gabarito (Tela) */
    .grid-cell.gabarito-visible {
        background-color: #ffeb3b !important;
        /* Amarelo destaque */
        color: #000;
        box-shadow: inset 0 0 0 2px #fbc02d;
    }

    .btnNew {
        font-size: 1.1rem;
        font-weight: bold;
        padding: 15px 30px;
        background-color: #ffd880;
        color: black;
        border: none;
        border-radius: 7px;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.1s;
        box-shadow: 0 3px #e58f0f;
    }

    .btnNew .btn-spinner {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 3px solid rgba(0, 0, 0, .3);
        border-radius: 50%;
        border-top-color: #000;
        animation: spin 1s ease-in-out infinite;
        margin-right: 10px;
        vertical-align: middle;
    }

    #grid-placeholder {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #eaf2f2;
        border-radius: 5px;
        min-width: 465px;
        min-height: 465px;
        color: #666;
        border: 2px dashed #7cb9b9;
    }

    .loading-spinner {
        border: 4px solid #ccc;
        border-top: 4px solid #7cb9b9;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
        margin-bottom: 10px;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .outros-caca-palavras-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .related-post-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        text-align: left;
        width: 230px;
    }

    .related-post-card__image-link {
        display: block;
    }

    .related-post-card__image {
        width: 100%;
        height: 160px;
        object-fit: cover;
        display: block;
    }

    .related-post-card__image-placeholder {
        width: 100%;
        height: 160px;
        background-color: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ccc;
    }

    .related-post-card__content {
        padding: 15px;
    }

    .related-post-card__title {
        margin: 0 0 10px 0;
        font-size: 1.1rem;
        min-height: 44px;
    }

    .related-post-card__title a {
        text-decoration: none;
        color: #333;
    }

    .related-post-card__link {
        font-size: 0.9rem;
        color: #1a73e8;
        text-decoration: none;
        font-weight: bold;
    }

    @media (max-width: 768px) {
        #grid-placeholder {
            min-width: 90vw;
            min-height: 90vw;
        }

        .related-post-card {
            width: 90%;
            max-width: 350px;
        }
    }
