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

body {
  font-family: Arial, sans-serif;
  color: white;

  background: linear-gradient(
    135deg,
    #0f0a1e,
    #2b1648,
    #5b21b6
  );

  max-width: 1000px;
  margin: auto;

  padding: 40px 20px;
  min-height: 100vh;
}

.hero {
  text-align: center;
  margin-bottom: 60px;
}

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

.subtitle {
  opacity: 0.85;
}

section {
  margin-bottom: 50px;
}

h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

p {
  line-height: 1.6;
  opacity: 0.95;
}

.card {
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 12px;
  margin-top: 10px;
  backdrop-filter: blur(6px);
}

.highlight {
  border: 1px solid rgba(255,255,255,0.2);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.profile-pic {
    width: 180px;
    height: 180px;

    border-radius: 50%;
    object-fit: cover;

    margin-bottom: 20px;

    border: 4px solid white;
}