body {
    font-family: Arial;
    margin: 0;
    padding: 0;
    color: #ffffff;
    overflow: hidden;

    /* Fundo Neon Premium (igual ao resto do site) */
    background: #050912 !important;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0,140,255,0.20), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0,90,255,0.18), transparent 60%),
        url("../img/bg.png");
    background-size: cover, cover, cover;
    background-attachment: fixed;
}

a, a:hover {
    color: #ffffff;
}

h1 {
    font-size: 18px;
    line-height: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

p {
    font-size: 13px;
    line-height: 17px;
    font-weight: normal;
    color: #f0f0f0;
    text-shadow: 0 0 6px rgba(0,0,0,0.8);
}

/* ---------- CAIXA PRINCIPAL 700x350 ---------- */

.background {
    /* Fundo também ajustado ao tema neon */
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);

    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 698px;
    height: 347px;
    border-radius: 15px;
    overflow: hidden;

    border: 1px solid rgba(0,120,255,0.35);
    box-shadow: 0 0 22px rgba(0,140,255,0.25);
}

/* ---------- ÁREA INTERNA 684x310 (mantida) ---------- */

.allwidth {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 680px;
    height: 300px;

    /* Tema neon em vez de imagem */
    background: rgba(0, 10, 30, 0.45);
    border: 1px solid rgba(0,120,255,0.30);
    border-radius: 12px;
    box-shadow: inset 0 0 28px rgba(0,140,255,0.25);
}

/* ---------- TEXTO (mesmas posições e tamanhos) ---------- */

.text01 {
    margin-top: 60px;
    margin-left: 85px;
    width: 510px;
    height: 200px;
    display: block;
    text-align: center;
}

/* ---------- BOX NEON DO TEXTO ---------- */

.text-box {
    background: rgba(0, 10, 30, 0.55);
    border: 1px solid rgba(0,120,255,0.35);
    box-shadow: 0 0 18px rgba(0,140,255,0.35);
    border-radius: 12px;

    padding: 0 22px 5px 22px;
    text-align: center;
}

/* ---------- FOOTER (mantido sem alterações visuais) ---------- */

.footer {
    clear: both;
    color: #ccc;
    display: block;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    overflow: hidden;
    position: absolute;
    text-align: center;
    padding-top: 5px;
    top: 320px;
    width: 700px;
    height: 30px;
    z-index: 10;

    background: rgba(0, 10, 25, 0.45);
    border-top: 1px solid rgba(0,120,255,0.35);
    box-shadow: 0 0 12px rgba(0,140,255,0.25);
}

/* ----------- BOTÕES NEON NO TOPO ----------- */

.top-buttons {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 20;
}

/* espaçamento entre botões (substitui gap) */
.top-buttons .btn-neon {
    margin: 0 8px;
}

.btn-neon {
    padding: 8px 18px;
    font-size: 13px;
    color: #d9e9ff;
    text-decoration: none;
    border: 1px solid rgba(0,120,255,0.35);
    background: rgba(0, 15, 40, 0.55);
    border-radius: 8px;

    box-shadow:
        0 0 10px rgba(0,120,255,0.25),
        inset 0 0 10px rgba(0,120,255,0.15);
    transition: 0.25s;
}

.btn-neon:hover {
    color: #ffffff;
    border-color: #009aff;
    background: rgba(0, 120, 255, 0.22);
    box-shadow:
        0 0 16px rgba(0,150,255,0.55),
        inset 0 0 16px rgba(0,150,255,0.35);
}

/* ----------- LISTA DE EVENTOS (2 colunas) ----------- */

.event-list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* duas colunas */
    gap: 12px 15px; /* linha / coluna */
    margin-top: 10px;
}

/* CARTÃO DE EVENTO */
.event-card {
    background: rgba(0, 15, 40, 0.55);
    border: 1px solid rgba(0,120,255,0.35);
    border-radius: 10px;

    padding: 10px 14px;
    text-align: left;

    box-shadow:
        0 0 12px rgba(0,120,255,0.25),
        inset 0 0 8px rgba(0,120,255,0.2);

    transition: 0.25s;
}

/* TITULO DO EVENTO */
.event-card h2 {
    font-size: 14px;
    margin: 0 0 6px 0;
    color: #d9e9ff;
    text-shadow: 0 0 6px rgba(0,140,255,0.65);
}

/* HORÁRIOS */
.event-card p {
    margin: 0;
    font-size: 12px;
    line-height: 15px;
    color: #9ecaff;
}

/* HOVER */
.event-card:hover {
    border-color: #00b7ff;
    box-shadow:
        0 0 18px rgba(0,150,255,0.5),
        inset 0 0 12px rgba(0,150,255,0.4);
    background: rgba(0, 25, 60, 0.65);
}

/* Área de eventos rolável dentro da text-box */
.event-scroll {
    max-height: 190px; /* ajusta sem alterar layout geral */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px; /* espaço para a barra */
}

/* Barra de scroll neon */
.event-scroll::-webkit-scrollbar {
    width: 6px;
}

.event-scroll::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.25);
    border-radius: 6px;
}

.event-scroll::-webkit-scrollbar-thumb {
    background: rgba(0,120,255,0.45);
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0,140,255,0.65);
}

.event-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(0,150,255,0.65);
}

/* LISTA DE PATCH NOTES (1 coluna) */
.patch-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* CARTÃO DE PATCH NOTE */
.patch-card {
    background: rgba(0, 15, 40, 0.55);
    border: 1px solid rgba(0,120,255,0.35);
    border-radius: 10px;
    padding: 10px 14px;
    text-align: left;

    box-shadow:
        0 0 12px rgba(0,120,255,0.25),
        inset 0 0 8px rgba(0,120,255,0.2);

    transition: 0.25s;
}

.patch-card h2 {
    font-size: 14px;
    margin: 0 0 6px 0;
    color: #d9e9ff;
    text-shadow: 0 0 6px rgba(0,140,255,0.65);
}

.patch-card p {
    margin: 0;
    font-size: 12px;
    line-height: 15px;
    color: #9ecaff;
}

.patch-card:hover {
    border-color: #00b7ff;
    box-shadow:
        0 0 18px rgba(0,150,255,0.5),
        inset 0 0 12px rgba(0,150,255,0.4);
    background: rgba(0, 25, 60, 0.65);
}
