/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

@import "global.css";

/* Page-specific rules only */
.header {
  padding: 28px 16px; /* reduced vertical space */
  animation: fadeIn 1.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.title {
  font-size: 2.2rem;
  color: #ff66ff;
  text-shadow: 0 0 18px #ff00ff, 0 0 30px #00aaff;
  animation: glowPulse 2s infinite alternate;
  margin: 0;
}

/* Owner Section (more compact) */
.owner {
  margin: 18px auto;
  max-width: 920px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 0 20px #00aaff20;
}

/* slight divider between stacked owner blocks */
.owner + .owner {
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 12px;
}

/* layout for image + meta */
.owner-top {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
}

/* Owner image (smaller) */
.owner-img {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 20px #00aaff, 0 0 36px #ff00ff;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

/* small hover lift */
.owner-img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 36px #00ffff, 0 0 56px #ff66ff;
}

/* meta block beside image */
.owner-meta {
  max-width: 600px;
  text-align: left;
}

/* make headings compact */
.owner-meta h2 {
  font-size: 1.25rem;
  color: #00ccff;
  text-shadow: 0 0 8px #00aaff;
  margin-bottom: 8px;
}

.owner-meta h2 span {
  color: #ff66ff;
  text-shadow: 0 0 10px #ff00ff;
}

.owner .description {
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 12px;
  font-size: 0.96rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(90deg, #00aaff, #ff00ff);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 30px #ff00ff, 0 0 50px #00aaff;
}

/* Socials */
.socials {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  font-size: 0.9rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.social:hover {
  color: #ff66ff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,170,255,0.08);
}

/* Helpers Section */
.helpers {
  margin: 60px auto 40px;
  max-width: 1000px;
  padding-top: 10px;
}

.helpers h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #00ccff;
  text-shadow: 0 0 10px #00aaff, 0 0 30px #ff00ff;
}

/* helper grid */
.helper-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* helper card */
.helper-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-radius: 15px;
  overflow: hidden;
  width: 220px;
  box-shadow: 0 0 20px #00aaff20;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.helper-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px #ff00ff40, 0 0 45px #00aaff40;
}

/* helper image */
.helper-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.12);
}

/* caption bar */
.helper-card p {
  margin: 0;
  padding: 12px 10px;
  background: linear-gradient(90deg, #00aaff, #ff00ff);
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 6px #000;
}

