@font-face {
  font-family: 'Perfect DOS VGA 437';
  src: url('/CW:R/styles/font.woff') format('woff');
  font-display: swap;
}

/* All your existing CSS follows */
body {
  background: #0d0010;
  color: #c0ffc0;
  font-family: 'Perfect DOS VGA 437', monospace;
  margin: 0;
  padding: 20px;
  background-image: url('data:image/svg+xml;utf8,\
    <svg xmlns="http://www.w3.org/2000/svg" width="100" height="100">\
      <circle cx="50" cy="50" r="50" fill="none" stroke="%232e0040" stroke-width="0.5"/>\ 
    </svg>');
}



h1 {
  text-align: center;
  font-size: 3em;
  background: linear-gradient(90deg,#9eff9e,#70ff70,#c0ffc0);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 30px;
  text-shadow: 0 0 8px rgba(110,255,110,0.7);
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.nav {
  text-align: center;
  margin-bottom: 30px;
}

.nav a {
  display: inline-block;
  margin: 0 8px;
  padding: 6px 12px;
  border: 1px solid #444;
  border-radius: 4px;
  background: #1f001f;
  color: #c0ffc0;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav a:hover {
  background: #2e0040;
  box-shadow: 0 0 8px rgba(110,255,110,0.5);
}

.section {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 40px;
  padding: 24px;
  background: radial-gradient(circle at top left, #1a001a, #140014);
  box-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 0 15px rgba(110,255,110,0.2);
}

.section::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 10px;
  background: conic-gradient(#9eff9e, #70ff70, #c0ffc0, #9eff9e);
  filter: blur(12px);
  opacity: 0.6;
  z-index: -1;
}

.section h2 {
  margin-top: 0;
  font-size: 1.9em;
  background: linear-gradient(90deg,#70ff70,#c0ffc0);
  -webkit-background-clip: text;
  color: transparent;
  border-bottom: 2px dashed #444;
  padding-bottom: 8px;
  text-shadow: 0 0 6px rgba(110,255,110,0.5);
}

.section p {
  margin: 0 0 16px;
  line-height: 1.5;
  font-style: italic;
  color: #a0f0a0;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.section ul li {
  margin: 0;
}

.section ul li a {
  position: relative;
  display: block;
  padding: 10px 14px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #1f001f;
  color: #c0ffc0;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.1s, box-shadow 0.3s;
}

.section ul li a::before {
  content: '⮞';
  margin-right: 6px;
  color: #70ff70;
}

.section ul li a:hover {
  background: #2e0040;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(110,255,110,0.4);
}
