body {
  font-family: 'Orbitron', sans-serif;
  background: url('zenitsu-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 40px 20px;
}

header img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #FFD700;
  margin-bottom: 15px;
}

header h1 {
  font-family: 'Bangers', cursive;
  font-size: 3em;
  color: #FFD700;
  text-shadow: 3px 3px #000;
}

header p {
  font-family: 'Orbitron', sans-serif;
  color: #fff176;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.social-links a {
  text-decoration: none;
  font-size: 1.1em;
  color: #fff;
  border: 1px solid #FFD700;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #FFD700;
  color: #000;
  box-shadow: 0 0 20px #FFD700;
  transform: scale(1.1) rotate(-2deg);
}

.projects {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.projects h2 {
  font-family: 'Bangers', cursive;
  font-size: 2.2em;
  color: #FFD700;
  text-shadow: 2px 2px #000;
  text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.project-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #FFD700;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.2s ease;
}

.project-card:hover {
  transform: translateY(-3px);
}

.project-card h3 {
  margin-top: 0;
  color: #FFD700;
}

.project-card p {
  color: #fff;
  font-size: 0.95em;
}

.project-card a {
  display: inline-block;
  margin-top: 10px;
  color: #FFD700;
  text-decoration: none;
}

.project-card a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9em;
  color: #fff;
}
