
 .section-banner {
      background: linear-gradient(90deg, #007bff, #009cfd);
      color: #fff;
      padding: 10px 15px;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      font-size: 0.9rem;
    }
    .banner-title {
      font-size: 1.1rem;
      font-weight: bold;
      display: flex;
      align-items: center;
    }
    .card img {
      transition: transform 0.3s ease;
    }
    .card:hover img {
      transform: scale(1.05);
    }
    .social-icons i {
      font-size: 20px;
      color: #666;
    }
.social-icons a.youtube i { color: #FF0000; }
.social-icons a.instagram i { color: #C13584; }
.social-icons a.twitch i { color: #9146FF; }
.social-icons a.tiktok i {
  color: #010101;
  text-shadow:
    1px 1px 0 #25F4EE
    -1px -1px 0 #FE2C55; 
}    .status-badge {
      position: absolute;
      bottom: 4px;
      right: 4px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 2px solid #fff;
      background-color: gray;
    }
    .status-badge.online {
      background-color: #28a745; 
    }
    .status-badge.offline {
      background-color: #dc3545; 
    }
