.banner {
    background-color: #003875;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    color:white;
}

.banner h1 {
    margin: 0;
    flex: 1;
    text-align: center;
}

.banner-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-image {
        width: 150px;
        height: 150px;
        margin-bottom: 15px;
    }
}

    .status-container {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
      padding: 0.5rem 0;
    }

    .main-video {
      width: 100%;
      aspect-ratio: 16/9;
      margin-bottom: 1rem;
      background: #000;
    }

    .video-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1rem;
      padding: 1rem;
    }

    .video-card {
      cursor: pointer;
      transition: transform 0.2s;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .video-card:hover {
      transform: scale(1.02);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .thumbnail {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
    }

    .video-info {
      padding: 0.5rem;
    }

    .live-badge {
      background-color: #ff0000;
      color: white;
      padding: 0.4rem 1rem;
      border-radius: 0.25rem;
      font-size: 0.9rem;
      display: inline-block;
      margin-right: 1rem;
      font-weight: bold;
    }

    .latest-stream-badge {
      background-color: #666;
      color: white;
      padding: 0.4rem 1rem;
      border-radius: 0.25rem;
      font-size: 0.9rem;
      display: inline-block;
      margin-right: 1rem;
      font-weight: bold;
    }

    .event-selector {
      display: inline-block;
    }

    .event-selector select {
      padding: 0.4rem 2rem;
      border-radius: 0.25rem;
      border: 1px solid #ddd;
      background-color: #fff;
      font-size: 0.9rem;
      cursor: pointer;
      font-weight: 500;
    }

    #liveAlert {
      display: none;
      margin-bottom: 1rem;
    }

    .video-date {
      font-size: 0.8rem;
      color: #666;
    }

    .video-views {
      font-size: 0.8rem;
      color: #666;
      margin-right: 1rem;
    }

    .card-title {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }
