body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0f0f0f;
  color: #fff;
}

a {
  color: #ff5b5b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  min-height: 100vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.intro h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.highlight {
  color: #ff5b5b;
}

.intro p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  background: #ff5b5b;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #e04848;
}

.page-header {
  text-align: center;
  padding: 2rem 1rem 0;
}

.category {
  padding: 1rem 2rem;
}

.category h2 {
  margin-top: 2rem;
  color: #ff5b5b;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  padding: 1.5rem 0;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}
#aka {
  border-right: 2px solid #fff;
  padding-right: 4px;
}
