 /* Estilos gerais */
 #protetor-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0;
}



.protetor-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-grow: 1;
    width: 100%;
    height: 100%;
    color: #222;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

#countdown-1 {
font-size: 24px;
color: white;
pointer-events: none;
position: absolute; /* Centraliza em relação ao ícone */
top: 50%; /* Centraliza verticalmente */
left: 50%; /* Centraliza horizontalmente */
transform: translate(-50%, -50%); /* Ajusta para o centro do ícone */
}

#countdown-2 {
font-size: 24px;
color: white;
pointer-events: none;
position: absolute; /* Centraliza em relação ao ícone */
top: 50%; /* Centraliza verticalmente */
left: 50%; /* Centraliza horizontalmente */
transform: translate(-50%, -50%); /* Ajusta para o centro do ícone */
}


.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Fundo transparente */
    z-index: 3; /* Aparece acima do ad-container */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white; /* Cor do texto */
}



.ad-container {
   width: 540px;
   height: 360px;
   background: #000000;
   margin-bottom: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative; /* Permite ajustar a posição */
   overflow: hidden;
   border-radius: 20px;
   box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
   transform: scale(1.0);
}

#ad-container-1 {
    top: -240px; /
}

#ad-container-2 {
    top: -190px; /
}


.player-icon, .loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}


/* Exibir em dispositivos móveis (até 1024px de largura) */
    @media only screen and (max-width: 1024px) {
    .mobile-only {
    display: block !important;
    }
}

/* Ocultar em desktops e telas maiores que 1024px */
   @media only screen and (min-width: 1025px) {
   .mobile-only {
   display: none !important;  /* Forçar ocultação */
   }
}

.ad-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    border-radius: 20px;
    filter: blur(6px);
}

.ad-code {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.protetor-footer {
    background-color: #222;
    width: 100%;
    padding: 20px;
    font-size: 1rem;
    color: #f0f0f0;
    text-align: center;
    box-sizing: border-box;
    border-radius: 0 0 20px 20px;
    z-index: 99999;
    position: fixed;
    bottom: 0;
    left: 0; 
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.grupo-card {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: #f9f9f9;
}

.ad-container {
    display: inline-block;
    margin: 10px;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.ad-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button-danger {
    background: #dc3545;
    color: white;
}