/* header */
    html, body {
      height: 100%;
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      /*background-color: #f1f3f5;*/
    }
    body.dark-mode {
      background-color: #121212;
      color: #eee;
    }
    .custom-top-content,
    .custom-bottom-content {
      background-color: #f8f9fa;
      padding: 20px;
      border-radius: 8px;
    }

    .blinking-dot {
    height: 10px;
    width: 10px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    animation: blink 1s infinite ease-in-out;
    vertical-align: middle;
  }

  @keyframes blink {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
  }
    nav.navbar {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1100;
      background-color: #f8f9fa;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      padding: 0.5rem 1rem;
    }
    body.dark-mode nav.navbar {
      background-color: #1e1e1e;
      color: #eee;
    }

    .category-strip {
      position: fixed;
      top: 56px;
      left: 0;
      right: 0;
      background: #e4f2f3;
      border-bottom: 1px solid #ddd;
      padding: 8px 0;
      white-space: nowrap;
      overflow-x: auto;
      z-index: 1099;
      text-align: center;
    }
    .category-strip button {
      background: none;
      border: 1px solid #ffc107;
      color: #333;
      margin: 0 6px;
      padding: 5px 14px;
      border-radius: 20px;
      cursor: pointer;
      font-weight: 600;
      white-space: nowrap;
    }
    .category-strip button.active,
    .category-strip button:hover {
      background-color: #ffc107;
      color: #000;
    }
    body.dark-mode .category-strip {
      background: #2a2a2a;
      border-color: #444;
    }
    body.dark-mode .category-strip button {
      border-color: #ffc107;
      color: #eee;
    }
    body.dark-mode .category-strip button.active,
    body.dark-mode .category-strip button:hover {
      background-color: #ffc107;
      color: #000;
    }
     body.dark-mode .navbar-brand {
        color: white;
    }
    .container {
      padding-top: 110px;
      padding-bottom: 60px;
      max-width: 900px;
      margin: 0 auto;
    }

    .category-header {
      background: #e1e1e1;
      color: #1a1a1a;
      font-weight: 600;
      padding: 10px 15px;
      border-radius: 6px;
      margin-bottom: 12px;
      margin-top: 10px;
    }

    .match-card {
      background: #fff;
      border-left: 5px solid #0d6efd;
      padding: 15px 20px;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s;
    }
    .match-card:hover {
      transform: scale(1.02);
    }
    body.dark-mode .match-card {
      background: #1e1e1e;
      border-color: #0d6efd;
      color: #eee;
    }
   
    .match-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 6px;
    }
    .match-time {
      font-size: 0.9rem;
      color: #555;
    }
    body.dark-mode .match-time {
      color: #bbb;
    }

    .btn-watch {
      margin-top: 8px;
      padding: 5px 10px;
      font-size: 0.85rem;
    }

    footer {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: #f8f9fa;
      border-top: 1px solid #ddd;
      text-align: center;
      padding: 10px 0;
      font-size: 0.85rem;
    }
    body.dark-mode footer {
      background: #1e1e1e;
      color: #aaa;
      border-color: #444;
    }