/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Header with glass effect */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  /* Glass effect from css.glass */
  background: rgba(255, 255, 255, 0.13);
  border-radius: 0px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(134, 134, 134, 0.3);
}

/* Logo */
.logo img {
  height: 50px;
}

/* Navigation links */
.nav-links a {
  color: rgb(221, 221, 221);
  text-decoration: none;
  margin-left: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d483b0;
}

/* Example page content */
.hero {
  text-align: center;
  color: white;
  padding: 100px 20px;
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
}

/* link */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.75);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 12px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    color: #fff;
  }
}