  * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #000;
      color: #fff;
      overflow-x: hidden;
    }

    body {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    /* Header */
    header {
      background: #d20808;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      box-shadow: 0 2px 4px #000;
      flex-wrap: wrap;
    }

    header img {
      height: 80px;
      width: 80px;
      margin-right: 15px;
      border-radius: 15px;
      object-fit: cover;
    }

    header h1 {
      font-size: 2.8rem;
      margin: 0;
      color: white;
      text-shadow: 1px 1px 3px black;
      letter-spacing: 1px;
    }

    article {
  --text: #fff;
  --muted: #475569;
  --card: #f8fafc;
  --accent: #2563eb;
  --accent-2: #22c55e;

  margin: 12px auto;
  background: var(--bg);
  border-radius: 18px;
  color: var(--text);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  line-height: 1.65;
}

article h1,h2,strong {

color: orange;
}

    .container {
      max-width: 1300px;
      /* wider */
      margin: 30px auto;
      padding: 0 25px;
      flex-grow: 1;
      width: 100%;
    }


    .title {
      text-align: center;
      font-size: 1.9rem;
      color: orange;
      margin-bottom: 25px;
      border-bottom: 2px solid #444;
      padding-bottom: 10px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 30px;
    }

    table td {
      padding: 14px;
      border-bottom: 1px solid #333;
      vertical-align: middle;
      transition: background 0.3s ease;
    }

    table tr:hover {
      background-color: #1a1a1a;
      cursor: pointer;
    }

    table img {
      height: 22px;
    }

    table a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.2s ease;
    }

    table a:hover {
      color: red;
    }

    .site-footer {
  background: #d20808;
  color: #ccc;
  text-align: center;
  padding: 18px 10px;
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid #333;
}

.site-footer strong {
  color: #fff;
}

.footer-container {
  max-width: 600px;
  margin: 0 auto;
}

.footer-links {
  display: inline-block;
  margin-top: 5px;
}

.footer-links a {
  color: #5ea7ff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* ======= Responsive styles ======= */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 10px 15px;
  }

  header img {
    height: 60px;
    width: 60px;
    margin: 0 0 10px 0;
  }

  header h1 {
    font-size: 2rem;
    letter-spacing: 0.5px;
  }

  .container {
    padding: 0 15px;
    margin: 20px auto;
  }

  .title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }

  table td {
    padding: 10px 8px;
  }

  table img {
    height: 18px;
  }

  table a {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.6rem;
  }

  table td {
    padding: 8px 6px;
  }

  table a {
    font-size: 0.85rem;
  }
}