* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #1e293b, #0f172a);
    color: #e5e7eb;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    max-width: 900px;
    width: 100%;
    padding: 2.5rem;
  }
  
  .card {
    background: linear-gradient(180deg, #111827, #020617);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
  }
  
  .name {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
  }
  
  .role {
    color: #9ca3af;
    font-size: 1.1rem;
    margin-top: 0.4rem;
  }
  
  .icon-nav {
    display: flex;
    gap: 1.5rem;
  }
  
  .icon-nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #9ca3af;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
  }
  
  .icon-nav a i {
    font-size: 1.2rem;
    color: #ffffff;
  }
  
  .icon-nav a:hover {
    color: #38bdf8;
    transform: translateY(-2px);
  }
  
  .hero {
    max-width: 600px;
  }
  
  .hero h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.7;
  }
  
  .buttons {
    margin-top: 2.2rem;
  }
  
  .btn {
    display: inline-block;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 1rem;
    transition: all 0.25s ease;
  }
  
  .btn-primary {
    background: #38bdf8;
    color: #020617;
  }
  
  .btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    border: 1px solid #334155;
    color: #e5e7eb;
  }
  
  .btn-secondary:hover {
    border-color: #38bdf8;
    color: #38bdf8;
    transform: translateY(-2px);
  }
  
  .projects {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .projects .project-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  
  .projects .project-card:hover {
    transform: translateY(-4px);
    border-color: #38bdf8;
  }
  
  .project-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #1e293b;
  }
  
  .project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .project-card p {
    color: #9ca3af;
    margin-bottom: 0.8rem;
    line-height: 1.6;
  }
  
  .tech {
    color: #38bdf8;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .project-links {
    margin-top: 1.2rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  .project-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid #334155;
    color: #e5e7eb;
    background: transparent;
    transition: all 0.25s ease;
  }
  
  .project-links a:hover {
    border-color: #38bdf8;
    color: #38bdf8;
    transform: translateY(-2px);
  }
  
  .project-links a.primary {
    background: #38bdf8;
    color: #020617;
    border-color: #38bdf8;
  }
  
  .project-links a.primary:hover {
    opacity: 0.85;
  }
  
  footer {
    margin-top: 3rem;
    color: #9ca3af;
    font-size: 0.95rem;
  }
  
  @media (max-width: 700px) {
    header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
  }
  