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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #1A1A1A;
}

.header {
  background: #1A1A1A;
  color: white;
  padding: 1rem 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  margin-bottom: 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  flex: 1;
  gap: 3rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: white;
}

.hero-content h1 span {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.username {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-top: 1rem;
  color: #cccccc;
}

.hero-description {
  font-size: 1.1rem;
  color: #cccccc;
  margin: 1rem 0 2rem 0;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
  color: white;
}

.btn-secondary {
  background: #2A2A2A;
  color: white;
  border: 1px solid #444;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.hero-placeholder {
  max-width: 400px;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem 5%;
  background: #1A1A1A;
  border: 1px solid #333;
  margin: 2rem 5%;
  border-radius: 12px;
}

.stat-box {
  text-align: center;
  padding: 2rem;
  background: #2A2A2A;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-box p {
  font-size: 1rem;
  color: #cccccc;
  font-weight: 500;
}

.portfolio {
  padding: 4rem 5%;
  background: #1A1A1A;
}

.portfolio h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  text-transform: uppercase;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: #2A2A2A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #FF6B9D 0%, #C44569 50%, #667eea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.card-content p {
  color: #cccccc;
  margin-bottom: 1rem;
}

.card-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: #444;
  color: #cccccc;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.skills {
  padding: 4rem 5%;
  background: #1A1A1A;
}

.skills h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  text-transform: uppercase;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.skill {
  background: #2A2A2A;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  position: relative;
}

.skill:hover {
  transform: translateY(-3px);
}

.skill-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B9D 0%, #C44569 50%, #667eea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.skill h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.skill p {
  color: #cccccc;
  line-height: 1.6;
}

.testimonial {
  padding: 4rem 5%;
  background: linear-gradient(135deg, #FF6B9D 0%, #C44569 50%, #FF8E53 100%);
  color: white;
  margin: 2rem 0;
}

.testimonial blockquote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial p {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: white;
}

.testimonial footer {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}

.testimonial cite {
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-role {
  font-size: 0.9rem;
  opacity: 0.8;
}

.contact {
  padding: 4rem 5%;
  background: #1A1A1A;
}

.contact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  text-transform: uppercase;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #cccccc;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #cccccc;
}

.contact-icon {
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #FF6B9D;
}

.footer {
  background: #1A1A1A;
  color: white;
  text-align: center;
  padding: 2rem 5%;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer p {
  font-size: 1rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h1 span {
    font-size: 2rem;
  }
  
  .stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial p {
    font-size: 1.1rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .nav, .hero, .stats, .portfolio, .skills, .testimonial, .contact, .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h1 span {
    font-size: 1.5rem;
  }
  
  .stat-box h2 {
    font-size: 2rem;
  }
  
  .portfolio h2, .skills h2, .contact h2 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

html {
  scroll-behavior: smooth;
}

.nav-links a:focus,
.card:focus,
.skill:focus,
.btn:focus {
  outline: 2px solid #FF6B9D;
  outline-offset: 2px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card, .skill, .stat-box {
  animation: fadeInUp 0.6s ease forwards;
}

.gradient-text {
  background: linear-gradient(135deg, #FF6B9D 0%, #C44569 50%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
} 