
 /* Reset básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            color: #333;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        
        /* Cabeçalho fixo com gradiente cinza */
        header {
            position: sticky;
            top: 0;
            background: linear-gradient(135deg, #757575, #9E9E9E);
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            z-index: 999;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        header .match-info h1 {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
        }
        header .match-info p {
            margin-top: 5px;
            color: #fff;
            font-size: 16px;
        }
        header .back-button a {
            text-decoration: none;
            background-color: #9E9E9E;
            color: #fff;
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: bold;
            transition: background 0.3s;
        }
        header .back-button a:hover {
            background-color: #757575;
        }
        
        /* Mensagem topo (propaganda) */
        #hattackmessage {
            width: 100%;
            text-align: center;
            padding: 8px;
            background: #ffccbc;
            color: #bf360c;
            font-size: 15px;
            font-weight: 500;
            border-bottom: 1px solid #ff8a65;
        }
        #hattackmessage .fechar-msg {
            margin-left: 10px;
            cursor: pointer;
            padding: 3px 6px;
            border: 1px solid #bf360c;
            border-radius: 3px;
        }
        
        /* Container principal */
        .main-content {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 2px;
        }
        
        /* Área do player */
        .player-area {
            background-color: #fff;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            padding: 5px;
            margin-bottom: 20px;
            text-align: center;
        }
        .player-area h2 {
            margin-bottom: 20px;
            color: #757575;
            font-size: 22px;
        }
        #Player {
            width: 100%;
            height: 360px;
            border: 2px solid #9E9E9E;
            border-radius: 6px;
            background: #000;
        }
        
        /* Canais em “cards” */
        .channels-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
 .channel-card {
    max-width: 120px;
     width: 120px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    text-align: center;
    padding: 15px;
    border: 2px solid #9E9E9E;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
    text-decoration: none;
    font-weight: bold;
    color: #757575;
    display: block;
}
.channel-card:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}
      
        
        /* Rodapé */
        .footer {
            background-color: #333;
            border-top: 1px solid #444;
            text-align: center;
            padding: 15px 0;
            margin-top: 30px;
            font-size: 14px;
            color: #fff;
        }
        .footer a {
            color: #9E9E9E;
            text-decoration: none;
            font-weight: bold;
        }
        
        /* Responsividade */
        @media (max-width: 600px) {
            header {
                flex-direction: column;
                text-align: center;
            }
            #Player {
                height: 220px;
            }
            .channels-container {
                gap: 10px;
            }
            .channel-card {
                max-width: 100px;
                padding: 10px;
            }
        }
<div id="custom-footer">
  <a href="https://8xbet86.com/" target="_blank">
    <img src="https://i.imgur.com/Fen20UR.gif" style="width:100%;max-height:100px;object-fit:contain;cursor:pointer;" alt="Banner" />
  </a>
</div>
<style>
  #custom-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    text-align: center;
    z-index: 9999;
  }
  body { padding-bottom: 120px !important; }
</style>