:root {
    --cor-principal: #ffd369;
    --cor-bg: linear-gradient(135deg, #232526 0%, #414345 100%);
    --cor-secundaria: #fff;
    --cor-acento: #22223b;
    --cor-hover: #ffd369;
    --cor-btn: #393e46;
    --glass-bg: rgba(34, 34, 59, 0.55);
    --glass-blur: blur(10px);
    --placar-ao-vivo: #ff5252;
    --placar-encerrado: #59e866;
    --placar-a-seguir: #fff1b8;
    --shadow-strong: 0 8px 32px 0 rgba(31,38,135,0.37);
}

/* ----------- BASE BONITA ----------- */
body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: var(--cor-bg);
    color: var(--cor-secundaria);
    min-height: 100vh;
    transition: background 0.7s;
}

header {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-strong);
    border-radius: 0 0 32px 32px;
    padding: 24px 0 8px 0;
    margin-bottom: 18px;
    border-bottom: 2px solid #ffd36944;
    transition: background 0.4s;
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 16px;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
    box-shadow: 0 0 12px #ffd36980;
    border: 3px solid #ffd369;
    transition: box-shadow 0.3s;
}

.subtitle {
    color: var(--cor-principal);
    font-size: 1.15em;
    margin-top: 8px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 6px #22223b33;
}

nav ul {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 30px;
    border: 1px solid #ffd36933;
    box-shadow: 0 2px 8px #ffd36922;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px auto 0 auto;
    padding: 8px 24px;
    max-width: 700px;
    transition: background 0.4s;
}

nav li {
    color: var(--cor-principal);
    font-weight: 600;
    font-size: 1.12em;
    cursor: pointer;
    padding: 9px 20px;
    border-radius: 24px;
    transition: background 0.25s, color 0.25s, box-shadow 0.2s;
    position: relative;
    letter-spacing: 0.6px;
}
nav li.active, nav li:hover {
    background: var(--cor-principal);
    color: #232526;
    box-shadow: 0 2px 16px #ffd36933;
}

main {
    max-width: 950px;
    margin: 40px auto 0 auto;
    padding: 0 16px 40px 16px;
}

.section {
    display: none;
    animation: fadeIn .7s;
}
.section.active-section {
    display: block;
}

h1, h2, h3 {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 800;
    color: var(--cor-principal);
    margin-bottom: 8px;
    letter-spacing: 1.2px;
}
h2 { font-size: 2.2em;}
h3 { font-size: 1.3em;}

/* NOTICIAS - GLASS CARD */
.noticia {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 16px;
    margin-bottom: 24px;
    padding: 24px;
    box-shadow: 0 8px 32px 0 #ffd36911, 0 2px 8px #23223b80;
    border: 1.5px solid #ffd36944;
    transition: transform 0.18s, box-shadow 0.18s;
}
.noticia:hover {
    transform: translateY(-4px) scale(1.025);
    box-shadow: 0 12px 48px #ffd36944;
}

.noticia h4 {
    margin: 0 0 7px 0;
    color: var(--cor-principal);
    font-size: 1.19em;
    font-weight: 700;
}
.noticia .data {
    font-size: 0.98em;
    color: #ffd369;
    margin-bottom: 6px;
    display: block;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.news-info {
    font-size: 0.97em;
    color: #b2b2b2;
    margin-top: 18px;
}

/* PLACARES - GLASS CARD */
.placares-list {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    padding: 10px 0;
}
.placar-card2 {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 2px solid #ffd36955;
    border-radius: 22px;
    box-shadow: 0 8px 28px #ffd36922, 0 2px 8px #23223b66;
    padding: 24px 30px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    transition: box-shadow 0.18s, transform 0.18s;
}
.placar-card2:hover {
    box-shadow: 0 8px 64px #ffd36944, 0 4px 16px #23223b55;
    transform: scale(1.03);
}

.placar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.placar-campeonato {
    color: #ffe9ae;
    font-weight: bold;
    font-size: 1.15em;
    letter-spacing: 0.7px;
}
.placar-status2 {
    font-weight: bold;
    font-size: 1em;
    padding: 5px 18px;
    border-radius: 20px;
    letter-spacing: 1px;
    background: #ffe9ae;
    color: #5c4e19;
    box-shadow: 0 2px 6px #0002;
    border: none;
    text-transform: uppercase;
}
.status-ao-vivo {
    background: var(--placar-ao-vivo);
    color: #fff;
    box-shadow: 0 0 8px #ff525288;
}
.status-encerrado {
    background: var(--placar-encerrado);
    color: #233f1f;
}
.status-a-seguir {
    background: var(--placar-a-seguir);
    color: #4d3b07;
}
.placar-times {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
    gap: 5px;
}
.placar-time {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}
.align-left { justify-content: flex-start; }
.align-right { justify-content: flex-end; }
.placar-nome2 {
    color: #fffbe9;
    font-weight: 600;
    font-size: 1.18em;
    white-space: nowrap;
}
.placar-escudo2 {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid #ffd36933;
    box-shadow: 0 0 8px #ffd36933;
}

.placar-resultado {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 60px;
}
.placar-gols2 {
    color: #ffd369;
    font-size: 2.4em;
    font-weight: bold;
    width: 34px;
    text-align: center;
}
.placar-x2 {
    color: #ffe9ae;
    font-size: 2em;
    font-weight: bold;
    width: 20px;
    text-align: center;
    letter-spacing: 0.2em;
}
.placar-hora2 {
    margin-top: 10px;
    font-size: 1.09em;
    color: #ffe9aecc;
    font-style: italic;
    letter-spacing: 0.7px;
    text-align: center;
}

.loading-placar {
    color: #ffe9ae;
    font-size: 1.25em;
    text-align: center;
    padding: 38px 0 38px 0;
    font-style: italic;
    letter-spacing: 1.2px;
}

/* OUCA-NOS */
.players-select {
    display: flex;
    gap: 18px;
    margin-bottom: 16px;
}
.player-btn {
    background: var(--glass-bg);
    color: var(--cor-principal);
    border: 1.5px solid #ffd36977;
    border-radius: 30px;
    padding: 12px 34px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 12px #ffd36922;
    margin: 8px 0;
    transition: background 0.22s, color 0.22s, box-shadow 0.18s;
}
.player-btn.active, .player-btn:hover {
    background: var(--cor-principal);
    color: #232526;
    box-shadow: 0 4px 20px #ffd36955;
}
.player-container {
    display: none;
    margin-bottom: 18px;
}
.player-container.active {
    display: block;
}
audio {
    width: 100%;
    margin-top: 8px;
    border-radius: 12px;
    box-shadow: 0 2px 12px #ffd36922;
    background: #232526;
}

.redes-sociais {
    margin-top: 18px;
}
.social-link {
    display: inline-block;
    margin-right: 18px;
    color: var(--cor-principal);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.13em;
    transition: color 0.18s, text-shadow 0.2s;
    text-shadow: 0 2px 8px #ffd36933;
}
.social-link:hover {
    color: #fffbe9;
    text-shadow: 0 4px 16px #ffd369aa;
}
.social-link.instagram::before { content: "📸 "; }
.social-link.youtube::before { content: "▶️ "; }
.social-link.zeno::before { content: "🎵 "; }

footer {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    text-align: center;
    color: #ffd369;
    font-size: 1.1em;
    padding: 28px 0 14px 0;
    margin-top: 40px;
    border-top: 2px solid #ffd36944;
    letter-spacing: 1.2px;
    box-shadow: 0 -2px 18px #ffd36922;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(24px);}
    to { opacity: 1; transform: none;}
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .header-content { flex-direction: column; gap: 10px; align-items: flex-start;}
    .logo { width: 70px; height: 70px;}
    nav ul { gap: 12px;}
    main { margin-top: 18px;}
    .placares-list { grid-template-columns: 1fr; }
    .placar-card2 { padding: 14px 10px; }
    .placar-escudo2 { width: 36px; height: 36px; }
}

@media (max-width: 500px) {
    .placar-card2 { padding: 8px 2px; }
    .placar-nome2 { font-size: 1em; }
    .placar-gols2 { font-size: 1.4em; }
}

::-webkit-scrollbar {
    width: 10px;
    background: #22223b88;
}
::-webkit-scrollbar-thumb {
    background: #ffd36944;
    border-radius: 6px;
}