/* === Sleek dropdown (text-only, dark, smooth fade) === */
.links {
  margin-top: 20px;
}

.link {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 24px;
  font-weight: 400;
  text-transform: lowercase;
}

/* Dropdown container */
.dropdown-content {
  margin-top: 10px;
  margin-left: 20px;

  /* layout */
  background: transparent;
  border: none;
  padding: 0;

  /* animation */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: all 0.25s ease;
}

/* visible state (toggled by JS) */
.dropdown-content.open {
  max-height: 500px; /* enough for your links */
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown items */
.dropdown-content a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: lowercase;
  background: transparent;
  padding: 0;
}

.dropdown-content a:hover {
  text-decoration: underline;
}


/* === Shared site-wide styles (for index.html + now.html) === */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
  overflow: hidden;
}

#myCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

#content {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 1;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* === Long text pages (like now.html) === */
.page {
  max-width: 800px;
  line-height: 1.6;
}
.page a {
  color: #4CAF50;
}
