/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }

/* Body */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #0d0d0d;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Navigation */
nav {
  background: linear-gradient(90deg, #1a1a1a, #333);
  padding: 15px;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
nav ul li { margin: 0 20px; }
nav ul li a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
nav ul li a:hover { color: #ffcc00; }

/* Hero section */
.hero {
  height: 100vh;
  background: url('/assets/images/banner.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}




.hero .overlay {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  text-align: center;
  border-radius: 8px;
}
.hero h1 {
  font-size: 3em;
  color: #ffcc00;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
  opacity: 0;
  animation: fadeInGlow 3s ease forwards, pulseGlow 4s ease-in-out infinite;
}

@keyframes fadeInGlow {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%   { text-shadow: 0 0 10px rgba(255, 204, 0, 0.7); }
  50%  { text-shadow: 0 0 20px rgba(255, 204, 0, 1); }
  100% { text-shadow: 0 0 10px rgba(255, 204, 0, 0.7); }
}




.hero p {
  font-size: 1.5em;
  color: #eee;
}

/* Sections */
section {
  padding: 40px;
  max-width: 900px;
  margin: auto;
  border-bottom: 1px solid #333;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #999;
  text-align: center;
  padding: 20px;
}

/* Glyph container overlay */
.glyphs {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  pointer-events: none; /* keeps it non-interactive */
  z-index: 0;
}

.glyph {
  position: absolute;
  font-family: monospace;
  font-size: 14px;
  color: rgba(255, 204, 0, 0.3);
  animation: scrollGlyphs 10s linear infinite;
}

@keyframes scrollGlyphs {
  from { transform: translateY(-100%); }
  to   { transform: translateY(100%); }
}