:root {
  --acid: #c6ff00;
  --flash: #e5ff57;
  --moss: #446600;
  --olive: #263400;
  --ink: #050700;
  --black: #000000;
  --paper: #fbffe8;
  --soft: #dff6a8;
  --spray: rgba(0, 0, 0, 0.42);
  --line: rgba(251, 255, 232, 0.2);
  --shadow: 0 28px 74px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    repeating-linear-gradient(168deg, transparent 0 28px, rgba(0, 0, 0, 0.16) 29px 32px),
    radial-gradient(circle at 18% 8%, rgba(198, 255, 0, 0.52), transparent 22rem),
    radial-gradient(circle at 84% 72%, rgba(229, 255, 87, 0.26), transparent 23rem),
    linear-gradient(150deg, #111900 0%, #314900 48%, #92c900 100%);
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.rail,
main,
footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 0, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand,
.socials,
.actions,
footer {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 1px solid rgba(198, 255, 0, 0.7);
  border-radius: 50%;
  background: var(--acid);
  object-fit: cover;
}

.socials {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.socials a,
.actions a,
.actions button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 14px;
  font-weight: 950;
}

.socials a {
  background: rgba(251, 255, 232, 0.08);
  font-size: 14px;
}

.wall {
  position: relative;
  margin-top: 18px;
  border: 1px solid rgba(5, 7, 0, 0.62);
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.wall::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 10px solid rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.wall img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.drop {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  margin-top: 18px;
  align-items: stretch;
}

.title-zone,
.description-zone,
.portrait,
.notes article {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.title-zone {
  position: relative;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(5, 7, 0, 0.96), rgba(38, 52, 0, 0.92)),
    linear-gradient(90deg, transparent 0 45%, rgba(198, 255, 0, 0.16) 45% 100%);
  overflow: hidden;
}

.title-zone::before {
  content: "$";
  position: absolute;
  right: 18px;
  bottom: -46px;
  color: rgba(198, 255, 0, 0.13);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 13rem;
  line-height: 1;
}

.title-zone > p,
.description-zone span {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 14px;
  border: 1px solid rgba(198, 255, 0, 0.72);
  border-radius: 7px;
  padding: 8px 12px;
  color: var(--acid);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 {
  position: relative;
  max-width: 100%;
  margin: 0;
  color: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 5.4rem;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.actions {
  position: relative;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.actions .primary {
  border-color: transparent;
  background: var(--acid);
  color: var(--ink);
}

.actions button {
  background: rgba(251, 255, 232, 0.1);
  color: var(--paper);
  cursor: pointer;
}

.description-zone {
  padding: 26px;
  background:
    linear-gradient(90deg, rgba(198, 255, 0, 0.2), rgba(5, 7, 0, 0.78)),
    rgba(5, 7, 0, 0.78);
}

.description-zone h2 {
  max-width: 680px;
  margin: 0;
  color: var(--paper);
  font-size: 3.35rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.description-zone p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.face-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.portrait {
  display: grid;
  min-height: 410px;
  place-items: center;
  background:
    radial-gradient(circle, rgba(229, 255, 87, 0.92), rgba(198, 255, 0, 0.56) 48%, rgba(5, 7, 0, 0.84) 100%);
  overflow: hidden;
}

.portrait img {
  width: min(94%, 430px);
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.45));
}

.notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.notes article {
  min-height: 210px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(251, 255, 232, 0.12), rgba(5, 7, 0, 0.82)),
    repeating-linear-gradient(150deg, transparent 0 30px, rgba(198, 255, 0, 0.1) 31px 34px);
}

.notes span {
  display: block;
  color: var(--acid);
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.notes p {
  margin: 54px 0 0;
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.5;
}

footer {
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(5, 7, 0, 0.76);
  color: var(--soft);
}

@media (max-width: 900px) {
  .drop,
  .face-row,
  .notes {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 4rem;
  }

  .description-zone h2 {
    font-size: 2.7rem;
  }

  .notes article {
    min-height: auto;
  }

  .notes p {
    margin-top: 18px;
  }
}

@media (max-width: 560px) {
  .rail {
    grid-template-columns: 1fr;
  }

  .socials {
    justify-content: stretch;
  }

  .socials a {
    flex: 1 1 auto;
    text-align: center;
  }

  .title-zone,
  .description-zone {
    padding: 20px;
  }

  h1 {
    font-size: 3rem;
  }

  .description-zone h2 {
    font-size: 2.1rem;
  }

  .actions a,
  .actions button {
    width: 100%;
    text-align: center;
  }

  .portrait {
    min-height: 330px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
