/* ── Reset ── */
.w-page,
.w-page *,
.w-page *::before,
.w-page *::after {
  box-sizing: border-box;
}

body:has(.w-page) {
  background: #0e0e0e;
  color: #d4d4d4;
}

body:has(.w-page) .animated-bg {
  display: none;
}

body:has(.w-page) #root {
  background: #0e0e0e;
}

.w-page {
  font-family: 'Arial', sans-serif;
  min-height: 100vh;
  background: #0e0e0e;
  color: #d4d4d4;
  overflow-x: hidden;
}

/* ── Hero ── */
.w-hero {
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.w-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(14,14,14,1) 100%);
}

.w-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 16px 56px;
  text-align: center;
  width: 100%;
}

.w-hero__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid #ff5500;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(255, 85, 0, 0.4);
  flex-shrink: 0;
}

.w-hero__name {
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin: 0;
}

.w-hero__tagline {
  font-size: 0.78rem;
  color: #999;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}

/* ── Social icons ── */
.w-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.w-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ccc;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  overflow: hidden;
}

.w-social__link:hover {
  background: #ff5500;
  border-color: #ff5500;
  color: #fff;
}

/* Force icon size — Bootstrap img styles can override without !important */
.w-social__link img {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.w-social__link svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
  flex-shrink: 0;
}

/* ── Bio ── */
.w-bio {
  background: #141414;
  padding: 36px 16px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.w-bio__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.w-bio__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2a2a2a;
  flex-shrink: 0;
}

.w-bio__text h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}

.w-bio__text p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #888;
  margin: 0;
}

/* ── Tracks ── */
.w-tracks {
  padding: 32px 16px 56px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.w-tracks__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff5500;
  margin-bottom: 20px;
}

/* ── Responsive ── */
@media (max-width: 540px) {
  .w-bio__inner {
    flex-direction: column;
    text-align: center;
  }

  .w-bio__photo {
    width: 60px;
    height: 60px;
  }

  .w-hero__avatar {
    width: 80px;
    height: 80px;
  }
}
