:root {
  --primary-color: #2a2a72;
  --secondary-color: #009ffd;
  --accent-color: #ff0076;
  --text-color: #e8e9eb;
  --background-color: #0a0a10;
  --font-base: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --spacing-unit: 1rem;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-base);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.decorations {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.gradient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
}

.sphere-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  top: 20%;
  left: 10%;
}

.sphere-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  top: 50%;
  right: 15%;
}

.sphere-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
  bottom: 10%;
  left: 40%;
}

.particles-container {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--text-color);
  border-radius: 50%;
  animation: float 20s infinite linear;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, 10px); }
  50% { transform: translate(-10px, 20px); }
  75% { transform: translate(-20px, -10px); }
}

.header-container {
  padding: 4rem var(--spacing-unit);
  text-align: center;
  position: relative;
}

.name-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--text-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.professional-titles {
  font-family: var(--font-mono);
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.social-nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}

.social-nav a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--secondary-color);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.social-nav a:hover {
  background: var(--secondary-color);
  color: var(--background-color);
}

.content-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem var(--spacing-unit);
}

section {
  margin-bottom: 4rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

h2 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  list-style: none;
}

.skills-grid li {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  text-align: center;
}

.site-footer {
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .name-title {
    font-size: 2rem;
  }
  
  .social-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  section {
    padding: 1.5rem;
  }
  .header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #2a9fd6;
    box-shadow: 0 4px 15px rgba(42, 159, 214, 0.3);
  }
  
  .education-list {
    list-style: none;
    padding-left: 0;
  }
  
  .education-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2a9fd6;
  }
  
  .education-list strong {
    color: #2a9fd6;
    display: block;
    margin-bottom: 0.5rem;
  }
  /* Add to existing styles */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(42, 159, 214, 0.2);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.tech-badge {
  background: rgba(42, 159, 214, 0.1);
  color: #2a9fd6;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
}
}