.entry-header.ztitulo .entry-title {
    margin-bottom: 25px;
}

.entry-tag {
    color: var(--entry-tag-txt);
    display: block;
    font-size: 0.8rem;
}

.z-ads {
    margin: 20px 0px 20px 0px;
    min-height: 280px;
}

.centro {
    text-align: center;
}


/*css game*/

.game-canvas {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* CSS Nativo acordado */
    background: #000;
    overflow: hidden;
}

.game-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    /*20*/
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.game-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    /* Desenfoque acordado */
}

.btn-play-game {
    position: relative;
    z-index: 1;
    cursor: pointer;
    background: #e91e63;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
}

.btn-play-game:hover {
    transform: scale(1.05);
}

#preroll {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    display: none;
    background: #000;
}

.game-toolbar {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #222;
    border-radius: 0 0 8px 8px;
}

#full-screen-btn {
    color: var(--color-text-title);
}

.entry-subtitle {
    margin-top: 20px;
}



/* ======================================================= */
/* SISTEMA DE PESTAÑAS (TABS) - OPTIMIZADO LCP */
/* ======================================================= */

.tab-system {
    margin: -10px -10px 20px -10px;
}

/* Responsivo */
@media (min-width: 769px) {
    .tab-system {
        margin: -15px -15px 20px -15px;
    }


    .entry-tag {
        font-size: 0.9rem;
    }


}

@media (min-width: 1025px) {
    .tab-system {
        margin: -20px -20px 20px -20px;
    }

    .entry-tag {
        font-size: 1rem;
    }
}