body {
  background-color: #262626;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  background-color: #111;
  padding: 32px 0;
  text-align: center;
  border-bottom: 1px solid #333;
}

.header h1 {
  max-height: 10px;
  margin-top: -10px;
  transition: color .3s ease;
  cursor: pointer;
  color: #00cc99;
}


.container {
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background-color: #111;
  border-radius: 7px;
  padding: 30px 25px;
}

.notice {
  background-color: #222;
  color: #00cc99;
  padding: 12px 18px;
  border-radius: 6px;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: start;
  font-weight: 600;
}

.stream-box {
  background-color: #1f1f1f;
  border: 1px solid #2c2c2c;
  padding: 18px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .2s ease;
  height: 40px;
}

.stream-box:hover {
  background-color: #2a2a2a;
  cursor: pointer;
}

.stream-name {
  font-size: 19px;
  font-weight: 600;
}

.article-section {
  text-align: left;
  margin-top: 30px;
  padding: 0px;
  border-radius: 10px;
  color: #dfe6ee;
  line-height: 1.7;
  font-size: 1rem;
}

.article-section h2 {
  color: #00cc99;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.article-section h3 {
  color: #00cc99;
  font-size: 1.2rem;
  margin-top: 20px;
}

.article-section ul {
  padding-left: 20px;
  margin-top: 10px;
}

.article-section li {
  margin-bottom: 10px;
}

.article-section strong {
  margin-bottom: 10px;
  color: #00cc99;
}

 table {
      width: 100%;
      border-collapse: collapse;
      margin: 1em 0;
      font-family: Arial, sans-serif;
    }
    th, td {
      border: 1px solid #ccc;
      padding: 0.75em;
      text-align: left;
    }
    th {
      background-color: #f4f4f4;
      font-weight: bold;
    }
    tr:nth-child(even) {
      background-color: #fafafa;
    }


@media(max-width:768px) {
  body {
    font-size: 15px;
  }

  .header {
    padding: 15px 10px;
  }

  .header h1 {
    font-size: 40px;
    margin-top: 0;
  }

  #searchBox {
    width: 90%;
    font-size: 15px;
    padding: 10px;
    margin: 10px auto;
    display: block;
  }

  .container {
    padding: 20px 15px;
    margin: 10px;
    border-radius: 8px;
  }

  .notice {
    font-size: 14px;
    padding: 10px;
  }

  .stream-box {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 15px;
  }

  .stream-name {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .live-badge {
    font-size: 14px;
  }

}

@media(max-width:768px) {
  .stream-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .stream-name {
    font-size: 16px;
    font-weight: 600;
  }

  .live-badge {
    font-size: 14px;
    color: #00cc99;
    font-weight: 500;
    margin-left: auto;
    margin-right: 10px;
  }
}

.site-footer {
  background-color: #111;
  color: #aaa;
  padding: 30px 20px;
  margin-top: 40px;
  border-top: 1px solid #333;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 960px;
  margin: auto;
  text-align: center;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.footer-logo .green {
  color: #00cc99;
}

.footer-text {
  margin-bottom: 0;
  color: #bbb;
}

.stream-btn {
  background: #0c9c7b;
  color: #fff;
  border: 2px solid #00cc99;
  border-radius: 25px;
  padding: 12px 28px;
  font-size: 17px;
  font-family: 'Segoe UI', sans-serif;
  cursor: pointer;
  transition: background-color .3s, color .3s;
  margin: 10px 0 20px
}

.stream-heading {
  margin: -10px 0 0;
  font-size: 25px;
  color: #ccc;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 700;
  margin-top: 20px;
}

.stream-live {
  margin: 10px 0 20px;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  animation: pulse 1s infinite;
  margin: -3px -5px 0 0
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(0.5);
    opacity: 0.6
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}
