@font-face {
  font-family: "Arial";
  format("opentype");
  font-style: italic;
  font-weight: bold;
}

html {
    background-color: #1a1a1a;
}

body {
    padding: 0;
    margin: 0;
    text-align: center;
  font-family: "Arial";
  font-style: italic;
    color: #ededed;
}

a {
    color: #d3d3d3;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}


.site-title {
  font-size: 26px;
  margin-bottom: 10px;
}

.site-title a {
  color: #ededed;
  text-decoration: none;
  text-shadow:
    0 0 10px rgba(255,255,255,0.25),
    0 0 20px rgba(255,255,255,0.15);
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  font-size: 15px;
  text-transform: lowercase;
  color: #d3d3d3;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* Active page underline */
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.6);
}

/* Mobile */
@media (max-width: 600px) {
  .site-title {
    font-size: 22px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* logo */
.logo img {
  width: 200px;
  height: auto;
  display: block;
}

/* top nav */
.topnav {
  display: flex;
  flex-direction: column;
  align-items: center;

  /* Brighter + more solid */
  background: rgba(120, 120, 120, 0.32);

  /* Strong frosted-glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* Bright highlight border */
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);

  /* Soft glow to lift it from the background */
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.08);

  padding: 16px 30px;

  position: relative;
  z-index: 1000;
}

/* nav images */
.nav-links img {
  width: 120px;
  height: auto;
  transition: 0.3s ease;
}

.nav-links img:hover {
  filter: brightness(1.3);
}

a img {
  max-width: 30%;
  height: auto;
}

a img {
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

a img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

/* Individual particles */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  filter: blur(1px);
  animation: drift 18s linear infinite;
  opacity: 0.4;
}

@keyframes drift {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-200px) translateY(40px);
  }
}