 body {
      margin: 0;
      padding: 20px;
      background: #111;
      color: #eee;
     font-family: 'Bakso Tahu!';
    }
    h1 {
      text-align: center;
      margin-bottom: 20px;
    }
    .controls {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
    }
    .controls select,
    .controls button {
      padding: 10px 15px;
      background: #222;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
    .toplist {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .top-item {
      display: flex;
      align-items: center;
      gap: 15px;
      background: #1a1a1a;
      padding: 15px;
      border-radius: 10px;
    }
    .rank {
      font-size: 25px;
      font-weight: bold;
      width: 30px;
    }
    .thumb {
      width: 64px;
      height: 64px;
     
      border-radius: 6px;
    }
    .details {
      flex: 1;
    }
    .title {
      font-size: 30px;
      margin: 0 0 5px;
    }
    .meta {
      font-size: 20px;
      color: #ccc;
    }
    .stars {
      color: gold;
    }
    .btn-like {
      padding: 6px 12px;
      background: #333;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
    .btn-like.liked {
      background: #43aa8b;
    }
    @media(max-width: 600px) {
      .top-item {
        flex-direction: column;
        align-items: flex-start;
      }
      .thumb {
        width: 100%;
        height: auto;
      }
    }
  
a:link {
  color: pink;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: red;
}

/* selected link */
a:active {
  color: yellow;
}

@font-face {
    font-family: 'Bakso Tahu!';
    src: url('../fonts/Bakso Tahu!.otf') format('truetype'); 
    font-weight: normal; 
    font-style: normal; 
}