@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: linear-gradient(135deg, #1a2157 0%, #2d3250 100%);
  color: #e0e6ed;
  min-height: 100vh;
  background-attachment: fixed;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  background: rgba(30, 34, 60, 0.85);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}
.logo {
  font-size: 2.5rem;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  letter-spacing: 2px;
  color: #7f7fff;
  margin: 0;
  display: inline-block;
  text-shadow: 0 2px 12px #23283744;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #e0e6ed;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: color 0.2s;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(127,127,255,0.15);
}
.hero {
  background: linear-gradient(120deg, #232837cc 60%, #7f7fffcc 100%);
  padding: 5rem 0 3rem 0;
  text-align: center;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(127,127,255,0.10);
  margin-bottom: 2rem;
}
.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}
.hero .accent {
  color: #7f7fff;
}
.hero p {
  font-size: 1.4rem;
  margin-bottom: 2.2rem;
  color: #b0bac9;
}
.cta-btn {
  background: linear-gradient(90deg, #7f7fff 0%, #00e6a8 100%);
  color: #181c24;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(127,127,255,0.15);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #00e6a8 0%, #7f7fff 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.features {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 4rem 0 3rem 0;
  background: none;
  flex-wrap: wrap;
}
.feature {
  background: rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(127,127,255,0.10);
  padding: 2.8rem 2.2rem;
  flex: 1 1 300px;
  min-width: 270px;
  max-width: 370px;
  margin: 1.2rem 0;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(127,127,255,0.13);
}
.feature:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 48px rgba(127,127,255,0.18);
}
.feature h3 {
  color: #7f7fff;
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  font-family: 'Fira Code', monospace;
}
.feature p {
  color: #c2c8e6;
  font-size: 1.13rem;
}
.about-me.merged {
  background: rgba(255,255,255,0.07);
  border-radius: 24px;
  margin: 2rem auto 2.5rem auto;
  box-shadow: 0 4px 24px rgba(127,127,255,0.10);
  padding: 2.5rem 2rem;
  max-width: 800px;
  text-align: center;
  border: 1.5px solid rgba(127,127,255,0.13);
  backdrop-filter: blur(6px);
}
.about-me.merged h2 {
  color: #7f7fff;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-family: 'Fira Code', monospace;
}
.about-me.merged p {
  color: #c2c8e6;
  font-size: 1.15rem;
}
.footer {
  background: rgba(30, 34, 60, 0.85);
  color: #b0bac9;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 24px 24px 0 0;
}
.footer-links {
  margin-top: 0.8rem;
}
.footer-links a {
  color: #7f7fff;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #00e6a8;
}

@media (max-width: 900px) {
  .features {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .hero {
    padding: 3rem 0 2rem 0;
  }
} 