 body {
      background-color: oklch(0.145 0 0);
      color: #e0e0e0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
    }

     .header {
      background-color: #111;
      padding: 30px 0;
      text-align: center;
      border-bottom: 1px solid #222;
    }

    .header h1 {
      max-height: 10px;
      margin-top: -10px;
      transition: color 0.3s ease;
      cursor: pointer;
      color: #22c55e;

    }

  
    .container {
  margin-top: 30px; 
  margin-bottom: 60px; 
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  background-color: #111;
  border-radius: 5px;
  padding: 30px 25px;
  border: 1px solid #222;
}

    .notice {
      color: white;
      padding: -15px -5px;
      border-radius: 6px;
      margin-bottom: 30px;
      font-size: 17px;
      text-align: start;
      font-weight: 500;
      margin-top: -10px;
    }

    .stream-box {
      background-color: oklch(0.30 0 0);
      border: 1px solid #444;
      padding: 18px 20px;
      margin-bottom: 10px;
      border-radius: 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: 0.2s ease;
      height: 30px;
    }

    .stream-box:hover {
      background-color: #2a2a2a;
      cursor: pointer;
    }

    .stream-name {
      font-size: 19px;
      font-weight: 600;
    }

    .live-badge {
      color: #22c55e;
      font-size: 15px;
      font-weight: 500;
    }

    .features {
      margin-top: -40px;
      padding-top: 20px;
    }

    .features h3 {
      color: #22c55e;
      font-size: 22px;
      margin-bottom: 12px;
    }

    .features strong {
      color: #22c55e;
      font-size: 16px;
      margin-bottom: 12px;
    }

    .features p {
      color: #cccccc;
      font-size: 16px;
      margin-bottom: 20px;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

.footer {
  width: 100%;
   background-color: #111;
  color: white;            
  text-align: center;      /* Center align text */
  padding: 20px 0;         /* Space inside footer */
  font-size: 14px;         /* Text size */
  position: relative;
  bottom: 0;
  left: 0;
  border-top: 1px solid #222; /* Clean top border line */
}