/* ----------------------------------------------------
   PORTAL GAMER – STYLE.CSS FINAL OTIMIZADO
------------------------------------------------------*/

/* 🌌 FUNDO DO SITE */
body {
    margin: 0;
    padding: 0;
    background: url('../img/background.jpg') no-repeat center center fixed !important;
    background-size: 115% !important; /* 🔥 Fundo maior */
    color: #eee;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* ----------------------------------------------------
   CABEÇALHO / MENU
------------------------------------------------------*/

.topo {
    background: rgba(0, 0, 0, 0.75);
    border-bottom: 3px solid #00ff00;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    backdrop-filter: blur(3px);
}

.logo .pixel-text {
    font-size: 26px;
    color: #00ff00;
    font-weight: bold;
    text-shadow: 2px 2px #003300;
}

/* Menu */
.menu a {
    color: #00ff00;
    text-decoration: none;
    margin-left: 20px;
    font-size: 18px;
    transition: 0.2s;
}

.menu a:hover {
    text-shadow: 0 0 10px #00ff00;
}

/* Mobile menu */
@media (max-width: 768px) {
    .menu {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .menu a {
        display: inline-block;
        margin: 8px;
        font-size: 16px;
    }
}

/* ----------------------------------------------------
   CONTEÚDO PRINCIPAL
------------------------------------------------------*/

.conteudo {
    padding: 30px;
    max-width: 1200px;
    margin: auto;
    background: rgba(0, 0, 0, 0.45); /* 🔥 Transparente */
    border-radius: 10px;
}

/* Título estilo pixel */
.pixel-title {
    font-size: 40px;
    color: #00ff00;
    text-shadow: 3px 3px #003300;
    text-align: center;
    margin-top: 20px;
}

/* ----------------------------------------------------
   LAYOUT 3 COLUNAS
------------------------------------------------------*/

.layout-3-colunas {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 10px;
}

/* 🔥 COLUNA ESQUERDA – SHORTS */
.col-esquerda {
    width: 22%;
    background: rgba(0, 0, 0, 0.35); /* 🔥 Transparente */
    border: 2px solid #00ff00;
    box-shadow: 0 0 12px #00ff00;
    padding: 10px;
    border-radius: 5px;
}

.col-esquerda iframe {
    width: 100%;
    height: 300px;
    border: 2px solid #00ff00;
    border-radius: 5px;
    box-shadow: 0 0 10px #00ff00;
}

/* 🔥 COLUNA CENTRAL – EVENTOS */
.col-centro {
    width: 50%;
    background: rgba(0, 0, 0, 0.30); /* 🔥 Mais transparente */
    border: 2px solid #00ff00;
    box-shadow: 0 0 12px #00ff00;
    padding: 15px;
    border-radius: 5px;
}

/* 🔥 COLUNA DIREITA – NOTÍCIAS */
.col-direita {
    width: 22%;
    background: rgba(0, 0, 0, 0.35); /* 🔥 Transparente */
    border: 2px solid #00ff00;
    box-shadow: 0 0 12px #00ff00;
    padding: 10px;
    border-radius: 5px;
}

/* Responsivo */
@media (max-width: 900px) {
    .layout-3-colunas {
        flex-direction: column;
    }
    .col-esquerda, .col-centro, .col-direita {
        width: 100%;
    }
    .col-esquerda iframe {
        height: 220px;
    }
}

/* ----------------------------------------------------
   LETREIRO ANIMADO
------------------------------------------------------*/

.marquee-bar {
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid #00ff00;
    border-radius: 5px;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 0 15px #00ff00;
    margin: 20px auto;
    max-width: 1200px;
}


.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 40s linear infinite;
    color: #00ff00;
    font-size: 1.2em;
    text-shadow: 0 0 6px #00ff00;
    font-weight: bold;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Linha neon */
.linha-neon {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00ff00, #003300, #00ff00);
    box-shadow: 0 0 10px #00ff00;
}

/* ----------------------------------------------------
   LISTA DE NOTÍCIAS
------------------------------------------------------*/

.lista-noticias {
    list-style: none;
    padding: 0;
}

.lista-noticias li {
    padding: 5px 0;
    border-bottom: 1px dotted #00ff00;
}

.lista-noticias li:last-child {
    border-bottom: none;
}

/* ----------------------------------------------------
   RODAPÉ
------------------------------------------------------*/

.rodape {
    background: rgba(0, 0, 0, 0.8);
    color: #00ff00;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    border-top: 3px solid #00ff00;
    box-shadow: 0 -5px 10px rgba(0, 255, 0, 0.3);
}

/* ----------------------------------------------------
   MODAL LOGIN
------------------------------------------------------*/

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    width: 350px;
    box-shadow: 0 0 15px cyan;
    border: 2px solid cyan;
}

.modal-content input,
.modal-content button {
    width: 100%;
    margin: 6px 0;
    padding: 10px;
}

.close {
    float: right;
    cursor: pointer;
}
.pagina-construcao {
    margin-top: 150px;
    text-align: center;
    color: #00ff00;
    font-family: "Courier New", monospace;
    text-shadow: 0 0 10px #00ff00;
}

.pagina-construcao h1 {
    font-size: 50px;
    margin-bottom: 20px;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% { text-shadow: 0 0 5px #00ff00; }
    100% { text-shadow: 0 0 25px #00ff00; }
}

