body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: #000 url('https://static.wikia.nocookie.net/honkai-star-rail/images/b/b9/Honkai_Star_Rail_Splash.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #eee;
}
header {
  background: rgba(0, 0, 30, 0.8);
  text-align: center;
  padding: 60px 20px;
  border-bottom: 2px solid #00bfff;
}
header h1 {
  font-size: 3em;
  color: #00bfff;
  margin-bottom: 10px;
  text-shadow: 0 0 15px #00bfff;
}
header p {
  font-size: 1.2em;
  color: #ccc;
}
nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 15px;
  background: rgba(0, 10, 30, 0.9);
  border-bottom: 2px solid #00bfff;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav a {
  color: #eee;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  color: #00bfff;
}
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  background: rgba(5, 10, 25, 0.8);
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px #003366;
}
.section h2 {
  font-size: 2em;
  color: #00bfff;
  border-bottom: 1px solid #00bfff;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00bfff;
}
.gallery p {
  text-align: center;
  margin-top: 8px;
  font-size: 0.9em;
  color: #ccc;
}
footer {
  text-align: center;
  padding: 30px;
  color: #888;
  font-size: 0.9em;
  background: rgba(0, 0, 20, 0.95);
  margin-top: 40px;
  border-top: 1px solid #00bfff;
}

