* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
}

:root {
  --bg: #050505;
  --white: #f7f7f7;
  --muted: #b8b8b8;
  --hot: #ff005c;
  --hot-soft: rgba(255, 0, 92, 0.28);
  --line: rgba(255, 255, 255, 0.14);
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Inter', 'Arial Black', system-ui, sans-serif;
}

.about-page {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  padding: clamp(82px, 8vw, 120px) clamp(18px, 5vw, 70px) clamp(42px, 6vw, 60px);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 0, 92, 0.22), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, #050505 0%, #0b0b0b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(38px, 6vw, 70px);
  isolation: isolate;
  overflow: hidden;
}

.about-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  background-size: 100% 4px, auto;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
}

.about-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 45%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
  z-index: 2;
}

.top-left,
.top-right {
  position: absolute;
  top: clamp(22px, 4vw, 40px);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
  padding-bottom: 7px;
  z-index: 20;
  color: rgba(255,255,255,0.88);
  max-width: calc(50vw - 40px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-left {
  left: clamp(18px, 5vw, 50px);
}

.top-right {
  right: clamp(18px, 5vw, 50px);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 82px);
  width: 100%;
  max-width: 1220px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.visual-container {
  position: relative;
  justify-self: center;
  perspective: 900px;
  max-width: 100%;
}

.visual-container::before {
  content: "";
  position: absolute;
  width: 88%;
  height: 88%;
  left: 20px;
  top: 24px;
  background: var(--hot);
  filter: blur(45px);
  opacity: 0.25;
  z-index: 0;
}

.polaroid-frame {
  background: linear-gradient(180deg, #fff 0%, #e8e8e8 100%);
  padding: 15px 15px 62px;
  box-shadow:
    18px 18px 0 var(--hot-soft),
    0 35px 90px rgba(0, 0, 0, 0.65);
  transform: rotate(-4deg);
  width: clamp(245px, 27vw, 360px);
  max-width: calc(100vw - 56px);
  position: relative;
  z-index: 2;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.polaroid-frame:hover {
  transform: rotate(-2deg) translateY(-8px) scale(1.02);
  box-shadow:git init
    20px 20px 0 rgba(255, 0, 92, 0.36),
    0 45px 110px rgba(0, 0, 0, 0.75);
}

.person-img {
  width: 100%;
  height: clamp(235px, 28vw, 330px);
  background:
    linear-gradient(45deg, rgba(255,0,92,0.22), transparent),
    linear-gradient(135deg, #111, #4b4b4b);
  filter: grayscale(0) contrast(1.25);
  position: relative;
  overflow: hidden;
}
.person-img {
  width: 100%;
  height: 300px; /* adjust if needed */
  overflow: hidden;
  border-radius: 10px;
}

.person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.28) 48%, transparent 55%);
  transform: translateX(-120%);
  animation: shine 4.5s ease-in-out infinite;
}

.photo-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #050505;
  font-family: 'Courier New', monospace;
  font-weight: 950;
  font-size: clamp(13px, 1.5vw, 18px);
  border-top: 1px solid #111;
  padding-top: 8px;
}

.text-container {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.mini-title {
  color: var(--hot);
  font-weight: 950;
  margin-bottom: 14px;
  display: inline-block;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
}

.main-name {
  font-size: clamp(20px, 7.4vw, 104px);
  line-height: 0.92;
  font-weight: 950;
  text-transform: uppercase;
  margin-left: 0;
  letter-spacing: -0.045em;
  text-shadow: 0 12px 40px rgba(0,0,0,0.55);
  overflow-wrap: normal;
  word-break: normal;
  max-width: 100%;
}

.outline-text {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
  text-shadow: none;
}

.bio-box {
  margin-top: 34px;
  max-width: 500px;
  padding-left: 20px;
  border-left: 4px solid var(--hot);
}

.desc {
  font-size: clamp(15.5px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--muted);
}

.desc strong {
  color: #fff;
  background: var(--hot);
  padding: 1px 7px 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.sticker {
  position: absolute;
  font-weight: 950;
  z-index: 6;
  user-select: none;
  pointer-events: none;
}

.star-one {
  top: 18%;
  left: 45%;
  font-size: clamp(40px, 6vw, 82px);
  color: #fff;
  opacity: 0.92;
  animation: rotate 12s linear infinite;
}

.cross-one {
  top: 15%;
  left: 9%;
  font-size: clamp(34px, 5vw, 66px);
  color: var(--hot);
  transform: rotate(15deg);
  text-shadow: 0 0 32px rgba(255, 0, 92, 0.45);
}

.graphic-element {
  position: absolute;
  bottom: -30px;
  right: -18px;
  width: clamp(90px, 13vw, 160px);
  height: clamp(90px, 13vw, 160px);
  border: 4px solid var(--hot);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.9;
}

.graphic-element::before,
.graphic-element::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255,255,255,0.28);
  border-radius: inherit;
}

.graphic-element::after {
  inset: 42px;
  border-color: rgba(255,0,92,0.5);
}

.contact-bar {
  width: 100%;
  max-width: 1220px;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  position: relative;
  z-index: 5;
}

.glass-pill {
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.14);
  transition: 0.3s ease;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.glass-pill:hover {
  transform: translateY(-4px);
  background: rgba(255, 0, 92, 0.18);
  border-color: rgba(255, 0, 92, 0.65);
  box-shadow:
    0 16px 40px rgba(255,0,92,0.18),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

.footer-logo {
  display: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shine {
  0%,
  55% {
    transform: translateX(-120%);
  }

  75%,
  100% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .about-page {
    justify-content: flex-start;
  }

  .main-name {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .about-page {
    padding: 86px 24px 46px;
    justify-content: flex-start;
    gap: 42px;
    overflow-y: auto;
  }

  .content-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .main-name {
    margin-left: 0;
    font-size: clamp(44px, 15vw, 72px);
    letter-spacing: -0.055em;
    line-height: 0.88;
  }

  .bio-box {
    margin-inline: auto;
    padding-left: 0;
    border-left: 0;
    border-top: 4px solid var(--hot);
    padding-top: 18px;
  }

  .top-left,
  .top-right {
    display: none;
  }

  .star-one {
    top: 8%;
    left: auto;
    right: 26px;
  }

  .cross-one {
    top: 9%;
    left: 24px;
  }

  .contact-bar {
    width: 100%;
    border-radius: 28px;
    padding: 0;
  }

  .glass-pill {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .about-page {
    padding: 74px 18px 38px;
    gap: 34px;
  }

  .polaroid-frame {
    width: min(100%, 292px);
    max-width: calc(100vw - 44px);
    transform: rotate(-2deg);
    box-shadow:
      10px 10px 0 var(--hot-soft),
      0 28px 70px rgba(0, 0, 0, 0.65);
  }

  .polaroid-frame:hover {
    transform: rotate(-1deg) translateY(-5px) scale(1.01);
    box-shadow:
      12px 12px 0 rgba(255, 0, 92, 0.36),
      0 34px 80px rgba(0, 0, 0, 0.72);
  }

  .person-img {
    height: clamp(220px, 70vw, 285px);
  }

  .graphic-element {
    right: 2px;
    bottom: -20px;
    opacity: 0.65;
  }

  .star-one,
  .cross-one {
    opacity: 0.55;
  }

  .photo-info {
    font-size: 13px;
  }

  .desc {
    font-size: 15.5px;
  }
}

@media (max-width: 380px) {
  .about-page {
    padding-inline: 14px;
  }

  .main-name {
    font-size: clamp(38px, 14vw, 52px);
  }

  .polaroid-frame {
    max-width: calc(100vw - 32px);
    padding: 12px 12px 54px;
  }

  .glass-pill {
    padding: 13px 16px;
    font-size: 11px;
    letter-spacing: 1.3px;
  }
}