    /* === Your Custom CSS === */

    #yosintv-npl .event,
    #yosintv-laliga .event,
    #yosintv-epl .event,
    #yosintv-bundesliga .event,
    #yosintv-seriea .event,
    #yosintv-cricket .event,
    #yosintv-football .event {
      border-color: #000000;
    }

    #yosintv-football h2,
    #yosintv-cricket h2 {
      color: #1a73e8;
    }

    .yosintv-container {
      width: 100%;
      margin: 0 auto;
    }

    .league-title {
      font-size: 20px;
      font-weight: bold;
      margin-top: 20px;
      background-color: #d10000;
      color: white;
      border-radius: 5px;
      text-align: center;
    }

    .yosintv-button {
      font-weight: 700;
      font-family: Arial, sans-serif;
      display: block;
      width: 100%;
      padding: 2px;
      margin: 20px 0;
      background-color: rgb(244, 17, 17);
      color: #fff;
      text-align: center;
      text-decoration: none;
      border: none;
      border-radius: 4px;
      box-sizing: border-box;
      cursor: pointer;
    }

    .yosintv-button:hover {
      background-color: rgb(220, 0, 0);
    }

    .countdown span {
      background-color: black;
      font-family: Arial, sans-serif;
      color: white;
      padding: 1px 2px;
      border-radius: 4px;
      margin: 0 1px;
      font-size: 16px;
    }

    .event {
      display: flex;
      justify-content: space-between;
      font-family: Arial, sans-serif;
      align-items: center;
      text-decoration: none;
      color: inherit;
      margin: 10px 0;
      padding: 10px;
      border: 2px solid #000;
      border-radius: 5px;
      cursor: pointer;
      background-color: #fff;
      transition: box-shadow 0.3s ease;
    }

    .event:hover {
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .event-name {
      flex: 2;
      text-align: left;
      color: black;
      font-weight: bold;
    }

    .event-countdown {
      flex: 1;
      text-align: right;
      color: black;
    }

    .event-live {
      font-weight: bold;
      color: red;
    }

    #league-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }

    .league-button {
      padding: 10px 20px;
      background-color: #007BFF;
      color: white;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      font-size: 14px;
    }

    .league-button:hover {
      background-color: #0056b3;
    }

    #league-matches {
      margin-top: 20px;
    }

    .yosintv-button {
      font-weight: bold;
      margin-top: 20px;
    }

    .yosintv-container {
      margin: 10px 0;
    }

    .blink {
      color: red;
      font-weight: bold;
      animation: blink-animation 1.5s linear infinite;
    }

    @keyframes blink-animation {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    .error-message {
      font-size: 20px;
      color: #ff6347;
      font-weight: bold;
      text-align: center;
      padding: 20px;
      border: 2px dashed #ff6347;
      border-radius: 5px;
      background-color: #fef8f6;
      margin-top: 20px;
      width: 100%;
      max-width: 500px;
      box-sizing: border-box;
    }

    /* Search Bar */
    #matchSearch {
      width: 100%;
      padding: 12px;
      font-size: 16px;
      box-sizing: border-box;
      border: 2px solid #000;
      border-radius: 5px;
    }

    /* Ads container */
    #adsContainer {
      margin-top: 20px;
    }
