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

body {
  background-color: #000;
  color: #39ff14;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  line-height: 1.6;
  padding: 20px;
  background-image: radial-gradient(#222 1px, #000 1px);
  background-size: 10px 10px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}


header {
  position: sticky;
  top: 0;
  background-color: #000;
  border-bottom: 4px double #ff004d;
  box-shadow: 0 0 20px #39ff14;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.navbar .nav-links li {
  display: inline-block;
}

.navbar .nav-links a {
  text-decoration: none;
  font-size: 12px;
  background-color: #111;
  color: #00eaff;
  border: 2px solid #00eaff;
  padding: 8px 12px;
  transition: all 0.2s ease;
  box-shadow: 2px 2px 0 #00eaff;
  position: relative;
}

.navbar .nav-links a:hover {
  background-color: #00eaff;
  color: black;
  box-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
  transform: translateY(-2px);
}

.section {
  margin: 60px 0;
  text-align: center;
}

.light-bg {
  background-color: #111;
  border: 2px solid #ff004d;
  box-shadow: inset 0 0 10px #ff004d;
  padding: 20px;
}

h2 {
  color: #ff004d;
  margin-bottom: 20px;
  text-shadow: 1px 1px #000;
}

.profile-pic {
  border: 4px solid #ff004d;
  width: 150px;
  margin-bottom: 20px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.project-card {
  background-color: #111;
  padding: 20px;
  border: 3px double #ff004d;
  box-shadow: 0 0 10px #ff004d;
  text-align: left;
}

.project-card h3 {
  margin-bottom: 10px;
  color: #ff004d;
}

.project-card a {
  display: inline-block;
  color: #00e5ff;
  margin-top: 10px;
  text-decoration: none;
}

.project-card a:hover {
  color: #fff;
}

form {
  margin: 20px auto;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  padding: 10px;
  background: #000;
  color: #00ffea;
  border: 2px solid #00ffea;
}

button {
  font-family: 'Press Start 2P', monospace;
  background: #ff004d;
  color: white;
  border: 2px solid #ff004d;
  padding: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  background: black;
  color: #ff004d;
}

footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #aaa;
  border-top: 4px solid #ff004d;
}

@media (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar .nav-links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .navbar .nav-links a {
    width: 100%;
    text-align: center;
  }
}
