@font-face {
  font-family: "One Piece Local";
  src: url("onepiece.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  color: white;
  font-family: Inter, system-ui, sans-serif;
  background: #0773d4;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -18px;
  z-index: -1;
  background: url("bg.jpg") center / cover no-repeat;
  filter: blur(10px);
  transform: scale(1.04);
  animation: bgDrift 16s ease-in-out infinite alternate;
}

main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4vw;
  align-items: center;
  padding: 24px 4vw 28px;
}

.evidence,
.pfp {
  min-width: 0;
}

.pfp-strip {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  margin: 18px auto 0;
  pointer-events: none;
}

.pfp-strip img {
  width: clamp(42px, 5vw, 68px);
  height: clamp(42px, 5vw, 68px);
  object-fit: cover;
  border: 4px solid white;
  border-radius: 50%;
  margin-left: -10px;
  animation: pfpBubble 3.2s ease-in-out infinite;
}

.pfp-strip img:first-child {
  margin-left: 0;
}

.pfp-strip img:nth-child(2) {
  animation-delay: -0.3s;
}

.pfp-strip img:nth-child(3) {
  animation-delay: -0.6s;
}

.pfp-strip img:nth-child(4) {
  animation-delay: -0.9s;
}

.pfp-strip img:nth-child(5) {
  animation-delay: -1.2s;
}

.pfp-strip img:nth-child(6) {
  animation-delay: -1.5s;
}

.pfp-strip img:nth-child(7) {
  animation-delay: -1.8s;
}

.bottom-links {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "One Piece Local", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  padding: 0 18px 22px;
}

.link-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.bottom-links a {
  min-height: 32px;
  padding: 5px 10px;
  border: 2px solid white;
  border-radius: 999px;
  color: white;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  background: rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.bottom-links button {
  display: inline-flex;
  max-width: min(90vw, 620px);
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: white;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: transparent;
  text-shadow: 0 0 8px white, 0 0 18px rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.ca-label {
  flex: 0 0 auto;
  opacity: 0.9;
}

.ca-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-icon {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px white);
}

.bottom-links a {
  text-transform: uppercase;
}

.disclaimer {
  max-width: min(92vw, 720px);
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

h1 {
  position: relative;
  max-width: 760px;
  margin: 0;
  font-family: "One Piece Local", Georgia, serif;
  font-size: clamp(3.4rem, 6.3vw, 6.2rem);
  font-weight: 400;
  line-height: 0.94;
  color: white;
  -webkit-text-stroke: 1.8px black;
  paint-order: stroke fill;
  animation: riseIn 700ms ease-out both;
}

h1::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -1;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.9), transparent 68%);
  mix-blend-mode: color-dodge;
  pointer-events: none;
  animation: titleGlow 3.4s ease-in-out infinite;
}

.word {
  display: inline-block;
  white-space: nowrap;
}

.word > span {
  display: inline-block;
  text-shadow:
    2px 3px 0 black,
    0 0 12px rgba(255, 255, 255, 0.72),
    0 0 28px rgba(255, 255, 255, 0.45);
}

.word > span:nth-child(3n + 1) {
  color: #f33c2f;
}

.word > span:nth-child(3n + 2) {
  color: #39a8ff;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.word > span:nth-child(3n) {
  color: #ffffff;
}

p {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 800;
  line-height: 1.35;
  animation: riseIn 700ms ease-out 90ms both;
}

.images {
  width: min(690px, 100%);
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: end;
}

.images img {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: imageFloat 4.8s ease-in-out infinite;
}

.images img:nth-child(1) {
  grid-column: span 2;
}

.images img:nth-child(2) {
  grid-column: span 2;
  animation-delay: -1.4s;
}

.images img:nth-child(3) {
  grid-column: span 2;
  animation-delay: -2.2s;
}

.images img:nth-child(4) {
  grid-column: span 4;
  animation-delay: -0.8s;
}

.images img:nth-child(5) {
  grid-column: span 2;
  animation-delay: -3s;
}

.pfp {
  display: grid;
  justify-items: center;
}

.pfp button {
  position: relative;
  display: block;
  width: min(58vh, 38vw, 520px);
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.pfp button::before {
  content: "";
  position: absolute;
  inset: -42%;
  z-index: -2;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 1) 0 20%, rgba(255, 255, 255, 0.95) 38%, rgba(255, 255, 255, 0.55) 54%, transparent 76%);
  mix-blend-mode: color-dodge;
  pointer-events: none;
  animation: glowPulse 2.8s ease-in-out infinite;
}

.pfp button::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.44) 42%, transparent 72%);
  mix-blend-mode: color-dodge;
  pointer-events: none;
}

.pfp img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 70px rgba(255, 255, 255, 0.62));
  animation: pfpFloat 3.4s ease-in-out infinite;
}

.pfp p {
  text-align: center;
}

@media (max-width: 860px) {
  main {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
    padding: 24px;
  }

  .pfp {
    justify-items: start;
  }

  .pfp button {
    width: min(88vw, 520px);
  }
}

@media (max-width: 520px) {
  main {
    padding: 22px;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
  }

  p {
    margin-top: 14px;
    font-size: 0.9rem;
  }

  .images {
    margin-top: 20px;
    gap: 10px;
  }

  .pfp button {
    width: min(58vw, 260px);
  }

  .bottom-links {
    gap: 8px;
    font-size: 0.76rem;
  }

  .bottom-links a {
    min-height: 28px;
    padding: 4px 8px;
  }

  .link-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .bottom-links button {
    max-width: 92vw;
    font-size: 0.64rem;
  }

  .disclaimer {
    font-size: 0.52rem;
  }
}

@keyframes bgDrift {
  from {
    transform: scale(1.04) translate3d(-8px, -4px, 0);
  }

  to {
    transform: scale(1.07) translate3d(8px, 4px, 0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

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

  50% {
    transform: translateY(-12px) rotate(0.4deg);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes titleGlow {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.03);
  }
}

@keyframes pfpBubble {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
  }
}
