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

body {
  font-family: 'Space Grotesk', sans-serif;
  background: #0e0e0e;
  color: #f1f1f1;
  padding: 20px;
  scroll-behavior: smooth;
}

.highlight {
  color: #00ffc8;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  flex-direction: column;
  background: radial-gradient(circle, #121212 0%, #0e0e0e 100%);
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  color: #aaa;
}

section {
  margin: 60px 0;
}

h2 {
  font-size: 2rem;
  border-left: 4px solid #00ffc8;
  padding-left: 15px;
  margin-bottom: 20px;
}

.about p, .contact p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 800px;
}

.skill-tags span {
  background: #1f1f1f;
  color: #00ffc8;
  padding: 10px 15px;
  border-radius: 8px;
  margin: 5px;
  display: inline-block;
  font-size: 0.95rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #1a1a1a;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 255, 200, 0.1);
}

.languages .lang-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 20px;
}

.lang-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90px;
}

.lang-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  filter: invert(100%);
}

.lang-item p {
  font-size: 0.9rem;
  color: #ccc;
}

.footer-content {
  text-align: center;
  color: #666;
  font-size: 0.85rem;
  margin-top: 40px;
}

.project-card img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.project-card h3 {
  margin-top: 10px;
  color: #00ffc8;
}

a {
  color: #00ffc8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  color: #666;
  margin-top: 80px;
  font-size: 0.9rem;
}

.custom-cursor {
  position: fixed;
  width: 25px;
  height: 25px;
  border: 2px solid #00ffc8;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

/* Responsive */
@media (min-width: 768px) {
  .project-card {
    flex-direction: row;
  }
  .project-card img {
    width: 250px;
  }
}
