/* Dark + Gold Desktop + Emojis */
body {
    margin:0; padding:0;
    font-family: "Segoe UI Emoji", "Segoe UI", sans-serif;
    background:#050505;
    color:#ffd700;
}

header.topo {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 32px;
    background:#111;
    border-bottom:1px solid rgba(255,215,0,0.2);
}

header .logo {
    font-size:24px;
    font-weight:600;
}

header .telegram a {
    color:#ffd700;
    text-decoration:none;
    border:1px solid rgba(255,215,0,0.4);
    padding:6px 12px;
    border-radius:20px;
    transition:.2s;
}

header .telegram a:hover {
    background:#ffd700; color:#000;
}

main.conteudo {
    padding:32px; max-width:1400px; margin:auto;
}

.paises-grid {
    display:flex; flex-wrap:wrap; gap:16px; justify-content:flex-start;
}

.pais-card {
    cursor:pointer;
    background:#111;
    border:1px solid rgba(255,215,0,0.2);
    border-radius:12px;
    text-align:center;
    padding:12px;
    transition:.2s;
    width:180px;
}
.pais-card:hover {
    background:rgba(255,215,0,0.1);
}

.pais-card img {
    width:auto;
    height:80px;
    display:block;
    margin:0 auto 8px;
}

.canais-container h2 {
    margin-top:32px;
    margin-bottom:16px;
    font-size:22px;
}

.canais-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
    gap:16px;
    margin-bottom:32px;
}

.canal-card {
    background:#111;
    border:1px solid rgba(255,215,0,0.2);
    border-radius:12px;
    padding:12px;
}

.canal-nome {
    font-weight:600;
    margin-bottom:8px;
}

.opcoes-grid {
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.opcao-btn {
    text-decoration:none;
    background: rgba(255,215,0,0.08);
    border:1px solid rgba(255,215,0,0.4);
    color:#ffd700;
    padding:6px 10px;
    border-radius:12px;
    font-size:14px;
    transition:.2s;
}

.opcao-btn:hover {
    background:#ffd700;
    color:#000;
}

footer.rodape {
    text-align:center;
    padding:16px;
    background:#111;
    border-top:1px solid rgba(255,215,0,0.2);
    margin-top:40px;
}
.live-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin: 24px 0 16px;
    color: #ffd700;
    border-bottom: 0px solid rgba(255,215,0,0.4);
    padding-bottom: 12px;
}
/* LEDs de status online/offline */
.status-led {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}
a {
    color: #ffd700;
    text-decoration: none; /* remove o sublinhado padrão */
    transition: .2s;
}

a:hover {
    color: #000; /* ou outro efeito de hover que quiser */
    background: #ffd700; /* opcional, igual aos botões */
}

.status-online { background: #00ff00; }   /* verde */
.status-offline { background: #ff0000; }  /* vermelho */
