 body {
      color: #e0e0e0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      background-color: oklch(0.145 0 0);;
    }

     .header {
      background-color: oklch(0.205 0 0);
      padding: 30px 0;
      text-align: center;
      border-bottom: 1px solid #222;
    }

    .header h1 {
      max-height: 10px;
      margin-top: -5px;
      transition: color 0.3s ease;
      color: #58a6ff;
    }


    .container {
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      background-color: oklch(0.205 0 0);
      border-radius: 10px;
      padding: 30px 25px;
      margin-top: 22px;
      margin-bottom: 22px;
      border: 1px solid #222;
    }

    .title-box h2 {
      margin-top: -5px;
      font-size: 24px;
      color: #58a6ff;
      text-align: center;
    }

    .title-box p {
      font-size: 16px;
      color: #ccc;
      text-align: center;
      line-height: 1.6;
    }

    .cta-button {
      display: block;
      margin: 20px auto;
      padding: 15px 35px;
      font-size: 18px;
      background-color: oklch(0.269 0 0);
      color: white;
      border: 1px solid #333;
      border-radius: 10px;
      transition: 0.3s;
      text-align: center;
      text-decoration: none;
      color: #58a6ff;
      font-weight: 600;
    }

    .cta-button:hover {
      background-color: oklch(0.371 0 0);
      cursor: pointer;
      border: 1px solid oklch(0.556 0 0);
      transform: scale(1.05);
    }

    .notice {
      background-color: oklch(0.269 0 0);
      color: #fff;
      padding: 14px 20px;
      border-radius: 6px;
      margin: 30px 0;
      font-size: 16px;
      text-align: start;
      border: 1px solid #333;
    }

    .notice strong {
      color: #58a6ff;
    }

    .stream-box {
      background-color: oklch(0.269 0 0);
      border: 1px solid #333;
      padding: 12px 18px;
      margin-bottom: 10px;
      border-radius: 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: 0.2s ease;
    }

    .stream-box:hover {
      background-color: oklch(0.371 0 0);
      cursor: pointer;
      border: 1px solid oklch(0.556 0 0);
    }

    .stream-name {
      font-size: 17px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .svg-icon {
      width: 18px;
      height: 18px;
      fill: white;
    }

    .live-badge {
      color: #58a6ff;
      font-size: 20px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;

    }

    .live-badge svg {
  width: 24px;
  height: 24px;
}

  .live-svg {
  width: 45px;
  height: 25px;
  margin-top: -20px;
  margin-right: -5px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
  margin-left: 5px;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.7);
  animation: pulse 1.5s infinite;
  margin-left: -3px;
  margin-top: 5px;
  margin-right: -5px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 rgba(255, 0, 0, 0.0);
  }
  50% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 0, 0, 0.0);
  }
}
.alert-box {
  background-color: oklch(0.269 0 0);
  padding: 20px;
  border: 1px solid #333;
  border-radius: 10px;
  margin-top: 30px;
}

.alert-box h2 {
  color: #58a6ff;
  margin-bottom: 10px;
  font-size: 20px;
  text-align: start;
}

.alert-box p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.7;
  text-align: start;
}


    .features {
      margin-top: -15px;
      padding-top: 10px;
      margin-left: 1px;
    }

    .features strong {
      color: #58a6ff;
    }

    .features h2 {
      color: #58a6ff;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .footer {
      width: 100%;
      background-color: oklch(0.205 0 0);
      color: white;
      text-align: center;
      padding: 20px 0;
      font-size: 16px;
      border-top: 1px solid #222;
      font-weight: 600;
    }