* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #121212;
      color: #fff;
      line-height: 1.6;
      padding: 0 1rem;
    }

    header {
      background: #1f1f1f;
      padding: 1.5rem;
      text-align: center;
      border-bottom: 3px solid #f39c12;
    }

    header h1 {
      font-size: 2rem;
      color: #f39c12;
    }

    nav ul {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 1rem;
      list-style: none;
    }

    nav a {
      text-decoration: none;
      color: #1abc9c;
      font-weight: bold;
      padding: 0.5rem 1rem;
      background: #292929;
      border-radius: 5px;
    }

    nav a:hover {
      background: #1abc9c;
      color: #000;
    }

    main {
      padding: 2rem 0;
    }

    section {
      margin-bottom: 2.5rem;
    }

    .toplist-table {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
    }

    .toplist-table ul {
      list-style: decimal inside;
      padding: 0;
      margin: 0;
    }

    .toplist-table li {
      margin-bottom: 0.5rem;
    }

    .toplist-table a {
      color: #f1c40f;
      text-decoration: none;
    }

    .toplist-table a:hover {
      text-decoration: underline;
    }

    .gallery .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }

    .card {
      background: #1e1e1e;
      border-radius: 10px;
      overflow: hidden;
      padding: 1rem;
      transition: 0.3s ease;
    }

    .card:hover {
      transform: scale(1.03);
    }

    .card img {
      
      border-radius: 8px;
    }

    .card h3 {
      color: #e67e22;
      margin: 0.8rem 0 0.5rem;
    }

    .card p {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
      color: #ccc;
    }

    .card a {
      color: #3498db;
      font-weight: bold;
      text-decoration: underline;
    }

    footer {
      text-align: center;
      padding: 1.5rem;
      font-size: 0.9rem;
      background: #1f1f1f;
      color: #aaa;
    }
    .btn-gradient {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  margin:3px;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-gradient:hover {
  transform: scale(1.05);
}
/* unvisited link */
a:link {
  color: orange;
  text-decoration:none;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: #fff;
}

/* selected link */
a:active {
  color: yellow;
}

    @media (max-width: 768px) {
      .toplist-table {
        flex-direction: column;
        align-items: center;
      }
    }