* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'VT323', monospace;
  background: #000;
  color: #fff;
  font-size: 24px;
  line-height: 1.4;
}

a { color: #fff; }
a:hover { opacity: 0.7; }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6em 2em;
  background: #000;
  border-bottom: 1px solid #333;
}

.header-left { display: flex; align-items: center; gap: 0.6em; }
.brand { font-size: 1.8em; }
.logo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }

nav { display: flex; gap: 1.5em; }
nav a { text-decoration: none; font-size: 1.2em; }

.info-banner {
  text-align: center;
  padding: 0.6em 1.5em;
  background: #2a1a3e;
  border-bottom: 1px solid #6a3fad;
  color: #d4bfff;
  font-size: 1em;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em 1.5em 4em;
}

section { margin-bottom: 3em; }

h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #333;
  padding-bottom: 0.3em;
}

ul { padding-left: 1.5em; margin: 0.5em 0 1em; }
li { margin-bottom: 0.4em; }
p { margin-bottom: 0.8em; }

.carousel-wrapper {
  overflow: hidden;
  border: 1px solid #333;
  aspect-ratio: 16 / 6;
}

.carousel {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel img { width: 100%; flex-shrink: 0; display: block; object-fit: cover; }

.carousel-dots { display: flex; justify-content: center; gap: 0.5em; margin-top: 0.8em; }

.dot {
  width: 10px; height: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: #fff; }


.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 0.5em;
}
.btn {
  display: inline-block;
  padding: 0.4em 1.4em;
  border: 1px solid #fff;
  text-decoration: none;
  font-size: 1.2em;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: #fff; color: #000; opacity: 1; }

.footer-github { display: inline-flex; align-items: center; margin-left: 1em; text-decoration: none; }
.github-icon { width: 28px; height: 28px; filter: invert(1); margin-right: 0.4em; }

footer {
  display: flex;
  align-items: center;
  gap: 1em;
  border-top: 1px solid #333;
  padding: 1.2em 2em;
}

@media (max-width: 600px) {
  header { padding: 0.5em 1em; }
  .brand { font-size: 1.3em; }
  nav { gap: 0.8em; }
  nav a { font-size: 1em; }
  main { padding: 1em; }
  h2 { font-size: 1.5em; }
}
