/* 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;
}
