:root {
  --orange: #ff6a00;
  --black: #000000;
  --white: #ffffff;
  --ink: #080808;
  --muted: rgba(255, 255, 255, 0.78);
  --shadow: rgba(0, 0, 0, 0.85);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Montserrat", Arial, sans-serif;
  --font-tag: "Permanent Marker", cursive;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 106, 0, 0.14), transparent 34rem),
    linear-gradient(180deg, #000 0%, #070707 48%, #000 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  opacity: 1;
  background:
    radial-gradient(ellipse at 8% 14%, rgba(255, 106, 0, 0.34) 0 3%, rgba(255, 106, 0, 0.12) 4% 7%, transparent 9%),
    radial-gradient(ellipse at 17% 20%, rgba(255, 255, 255, 0.11) 0 1.2%, transparent 2.6%),
    radial-gradient(ellipse at 82% 10%, rgba(255, 106, 0, 0.28) 0 2.8%, transparent 7%),
    radial-gradient(ellipse at 92% 32%, rgba(255, 255, 255, 0.08) 0 1.4%, transparent 3%),
    radial-gradient(ellipse at 7% 68%, rgba(255, 106, 0, 0.22) 0 2.4%, transparent 7%),
    radial-gradient(ellipse at 88% 80%, rgba(255, 106, 0, 0.3) 0 2.2%, transparent 7%),
    radial-gradient(circle at 18% 22%, rgba(255, 106, 0, 0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 76%, rgba(255, 106, 0, 0.2) 0 2px, transparent 3px),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #000 0%, #080808 45%, #000 100%);
  background-size: auto, auto, auto, auto, auto, auto, 130px 130px, 95px 95px, 170px 170px, auto, auto;
}

body::after {
  z-index: -1;
  opacity: 0.72;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 106, 0, 0.62) 0 2px, transparent 3px),
    radial-gradient(circle at 16% 23%, rgba(255, 106, 0, 0.42) 0 1px, transparent 2px),
    radial-gradient(circle at 79% 13%, rgba(255, 255, 255, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 87% 72%, rgba(255, 106, 0, 0.5) 0 2px, transparent 3px),
    linear-gradient(98deg, transparent 0 20%, rgba(255, 106, 0, 0.22) 20.4% 21.2%, transparent 21.8% 100%),
    linear-gradient(112deg, transparent 0 67%, rgba(255, 255, 255, 0.1) 67.4% 68%, transparent 68.5% 100%),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(255, 255, 255, 0.035) 29px 30px);
  background-size: 150px 150px, 210px 210px, 180px 180px, 240px 240px, auto, auto, auto;
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.link-page {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  padding: 18px 16px 26px;
  place-items: center;
  overflow: hidden;
}

.street-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.street-layer::before,
.street-layer::after {
  position: absolute;
  color: transparent;
  font-family: var(--font-tag);
  line-height: 0.82;
  text-transform: uppercase;
  white-space: pre;
  pointer-events: none;
}

.street-layer::before {
  content: "EXOTIC\A FLOW";
  left: -36px;
  top: 18%;
  font-size: clamp(76px, 22vw, 210px);
  opacity: 0.08;
  -webkit-text-stroke: 1px rgba(255, 106, 0, 0.9);
  transform: rotate(-9deg);
}

.street-layer::after {
  content: "READY\A TO RIDE";
  right: -34px;
  bottom: 9%;
  font-size: clamp(58px, 15vw, 160px);
  opacity: 0.08;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
  transform: rotate(8deg);
}

.profile-card {
  position: relative;
  width: min(100%, 520px);
  padding: 0 0 10px;
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.icon-action,
.subscribe-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  box-shadow: 5px 5px 0 var(--shadow);
}

.icon-action {
  width: 42px;
}

.subscribe-action {
  gap: 8px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 900;
}

.profile-header {
  display: grid;
  justify-items: center;
  padding-top: 4px;
  text-align: center;
}

.profile-logo {
  position: relative;
  display: grid;
  width: clamp(140px, 38vw, 210px);
  aspect-ratio: 1;
  margin-bottom: 4px;
  place-items: center;
  isolation: isolate;
  animation: logoFloat 4.8s ease-in-out infinite;
}

.profile-logo::before {
  content: "";
  position: absolute;
  inset: 18%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.58), 0 0 70px rgba(0, 0, 0, 0.28);
  animation: logoPulse 2.8s ease-in-out infinite;
}

.profile-logo::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 18%;
  z-index: -1;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.72);
  filter: blur(16px);
  opacity: 0.7;
  animation: logoShadow 4.8s ease-in-out infinite;
}

.profile-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.22) rotate(-4deg);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.5));
  animation: logoGraffiti 3.6s ease-in-out infinite;
}

.profile-logo:hover img,
.profile-logo:focus-visible img {
  animation-duration: 1.4s;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1.6deg);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.86;
    box-shadow: 0 0 38px rgba(255, 255, 255, 0.52), 0 0 64px rgba(255, 106, 0, 0.22);
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
    box-shadow: 0 0 54px rgba(255, 255, 255, 0.72), 0 0 92px rgba(255, 106, 0, 0.44);
  }
}

@keyframes logoShadow {
  0%,
  100% {
    transform: scaleX(0.9);
    opacity: 0.56;
  }

  50% {
    transform: scaleX(1.15);
    opacity: 0.82;
  }
}

@keyframes logoGraffiti {
  0%,
  100% {
    transform: scale(1.22) rotate(-4deg);
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(255, 106, 0, 0.35));
  }

  35% {
    transform: scale(1.28) rotate(-1.5deg);
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 18px rgba(255, 106, 0, 0.66));
  }

  38% {
    transform: scale(1.25) rotate(-5deg) skewX(-2deg);
  }

  42% {
    transform: scale(1.3) rotate(-1deg) skewX(2deg);
  }

  70% {
    transform: scale(1.24) rotate(-3deg);
  }
}

.tagline {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(42px, 12vw, 66px);
  line-height: 0.9;
  text-shadow: 4px 5px 0 rgba(0, 0, 0, 0.68);
}

.handle {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 900;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.48);
}

.bio {
  max-width: 360px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 22px 0;
}

.social-row a {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: var(--white);
  font-size: 19px;
  place-items: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-row a:hover,
.social-row a:focus-visible {
  background: var(--white);
  color: var(--orange);
  transform: translateY(-3px);
}

.links-section {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.links-section h2 {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-align: center;
}

.link-button {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  border: 2px solid var(--black);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  box-shadow: 7px 8px 0 var(--shadow);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.link-button span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.link-button > i {
  flex: 0 0 auto;
}

.link-button:hover,
.link-button:focus-visible {
  background: #fff6ef;
  box-shadow: 3px 4px 0 var(--shadow);
  transform: translate(4px, 4px);
}

.primary-link {
  background: var(--black);
  color: var(--white);
  border-color: var(--white);
  box-shadow: 7px 8px 0 rgba(255, 255, 255, 0.3);
}

.primary-link:hover,
.primary-link:focus-visible {
  background: #111;
  box-shadow: 3px 4px 0 rgba(255, 255, 255, 0.3);
}

.link-footer {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.link-footer p,
.link-footer small {
  margin: 0;
}

.link-footer p {
  font-family: var(--font-tag);
  font-size: 18px;
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.4);
}

.link-footer small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (min-width: 720px) {
  .link-page {
    padding-block: 28px 34px;
  }

  .link-button {
    min-height: 62px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
