:root {
  --ink: #101010;
  --paper: #fff;
  --red: #ef2b27;
  --blue: #173f91;
  --green: #15a63a;
  --yellow: #ffd84d;
  --muted: #e9e9e2;
  --max-width: 1180px;
  --marker-font: "Comic Sans MS", "Comic Sans", "Marker Felt", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", Arial, sans-serif;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

.svg-filters {
  position: fixed;
  width: 0;
  height: 0;
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 44px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 9px;
  border-bottom: 3px solid var(--ink);
  filter: url("#rough-line");
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--marker-font);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.04em;
  transform: rotate(-0.7deg);
}

.wordmark small {
  padding: 3px 8px 4px;
  color: #fff;
  background: var(--red);
  border: 2px solid var(--ink);
  transform: rotate(2deg);
}

.header-source {
  font-family: var(--marker-font);
  font-weight: 900;
  font-size: 13px;
  text-decoration: underline 2px;
  text-underline-offset: 4px;
  transform: rotate(1deg);
}

.hero {
  position: relative;
  width: min(calc(100% - 28px), 1240px);
  margin: 0 auto;
  padding: 34px 0 24px;
  text-align: center;
}

.hero-doodles {
  position: absolute;
  z-index: 0;
  top: 74px;
  left: 50%;
  width: min(1420px, 118vw);
  height: auto;
  overflow: visible;
  pointer-events: none;
  transform: translateX(-50%) rotate(-0.4deg);
}

.doodle-stroke {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url("#rough-line");
}

.doodle-black {
  stroke: var(--ink);
  opacity: 0.16;
}

.doodle-green {
  stroke: var(--green);
  opacity: 0.24;
}

.doodle-red {
  stroke: var(--red);
  opacity: 0.2;
}

.title-lockup {
  position: relative;
  z-index: 3;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto -34px;
}

.eyebrow {
  margin: 0 0 -4px;
  font-weight: 900;
  font-size: clamp(15px, 1.7vw, 21px);
  letter-spacing: 0.13em;
  transform: rotate(-2deg);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: -3px;
  font-family: var(--marker-font);
  font-weight: 900;
  font-size: clamp(48px, 8.2vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  transform: rotate(-0.5deg) skewX(-1deg);
}

.ticker {
  width: fit-content;
  margin: 0 auto;
  padding: 3px 20px 5px;
  color: #fff;
  background: var(--red);
  border: 3px solid var(--ink);
  font-family: var(--marker-font);
  font-weight: 900;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1;
  transform: rotate(1.7deg);
  filter: url("#rough-line");
}

.title-scribble {
  position: absolute;
  right: 6%;
  bottom: -23px;
  width: 70%;
  overflow: visible;
}

.title-scribble path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 4;
  stroke-linecap: round;
  filter: url("#rough-line");
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  min-height: 750px;
  margin: 0 auto;
}

.trump-figure {
  position: absolute;
  z-index: 1;
  bottom: -36px;
  left: 50%;
  width: min(76vw, 860px);
  margin: 0;
  transform: translateX(-50%);
}

.trump-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.doodle-button {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 158px;
  padding: 16px 20px;
  cursor: pointer;
  color: var(--ink);
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 23% 8% 20% 6% / 14% 19% 9% 24%;
  box-shadow: 5px 6px 0 var(--ink);
  font-family: var(--marker-font);
  font-weight: 900;
  font-size: 19px;
  line-height: 1;
  text-align: left;
  filter: url("#rough-line");
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.doodle-button small {
  font-size: 22px;
}

.doodle-button:hover,
.doodle-button:focus-visible {
  box-shadow: 2px 3px 0 var(--ink);
  outline: none;
}

.doodle-button:active {
  box-shadow: 0 1px 0 var(--ink);
}

.doodle-button.is-offline {
  color: #575757;
  background: var(--muted);
}

.button-buy {
  top: 210px;
  left: 2.5%;
  color: #fff;
  background: var(--green);
  transform: rotate(-5deg);
}

.button-buy:hover,
.button-buy:focus-visible {
  transform: rotate(-7deg) translate(3px, 3px);
}

.button-x {
  top: 185px;
  right: 0;
  transform: rotate(4deg);
}

.button-x:hover,
.button-x:focus-visible {
  transform: rotate(2deg) translate(3px, 3px);
}

.button-telegram {
  top: 410px;
  left: 0;
  color: #fff;
  background: var(--blue);
  transform: rotate(3deg);
}

.button-telegram:hover,
.button-telegram:focus-visible {
  transform: rotate(5deg) translate(3px, 3px);
}

.button-ca {
  top: 390px;
  right: 1%;
  transform: rotate(-4deg);
}

.button-ca:hover,
.button-ca:focus-visible {
  transform: rotate(-2deg) translate(3px, 3px);
}

.button-source {
  right: 5%;
  bottom: 75px;
  background: #fff;
  transform: rotate(3deg);
}

.button-source:hover,
.button-source:focus-visible {
  transform: rotate(5deg) translate(3px, 3px);
}

.blast-lines {
  position: absolute;
  z-index: 0;
  top: 290px;
  width: 150px;
  height: 190px;
}

.blast-lines-left {
  left: 18%;
  transform: rotate(-13deg);
}

.blast-lines-right {
  right: 17%;
  transform: scaleX(-1) rotate(-12deg);
}

.blast-lines span {
  position: absolute;
  display: block;
  width: 110px;
  height: 4px;
  background: var(--ink);
  transform-origin: left;
  filter: url("#rough-line");
}

.blast-lines span:nth-child(1) {
  top: 20px;
  transform: rotate(18deg);
}

.blast-lines span:nth-child(2) {
  top: 85px;
  left: 24px;
  width: 122px;
}

.blast-lines span:nth-child(3) {
  top: 150px;
  transform: rotate(-18deg);
}

.hook {
  position: relative;
  z-index: 5;
  width: fit-content;
  max-width: 680px;
  margin: -21px auto 0;
  padding: 11px 18px 13px;
  background: #fff;
  border: 3px solid var(--ink);
  font-weight: 900;
  font-size: clamp(18px, 2.3vw, 28px);
  line-height: 1.15;
  transform: rotate(-1deg);
  filter: url("#rough-line");
}

.chart-section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 44px auto 92px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 27px;
  margin-bottom: 18px;
  text-align: center;
}

.section-heading p {
  margin-bottom: -3px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: rotate(1deg);
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: var(--marker-font);
  font-weight: 900;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.heading-arrow {
  font-family: var(--marker-font);
  font-size: 72px;
  line-height: 0.8;
  transform: rotate(10deg);
}

.heading-arrow-right {
  transform: rotate(-13deg);
}

.chart-frame {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: #fff;
  border: 5px solid var(--ink);
  border-radius: 2% 1% 3% 1% / 2% 3% 1% 2%;
  box-shadow: 8px 9px 0 var(--ink);
  filter: url("#rough-line");
}

#dex-chart {
  display: block;
  width: 100%;
  height: 570px;
  border: 0;
}

.chart-empty {
  display: grid;
  min-height: 570px;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 28px;
}

.chart-empty[hidden],
#dex-chart[hidden] {
  display: none;
}

.chart-empty svg {
  width: min(100%, 920px);
  height: auto;
}

.grid-line,
.rocket-path {
  fill: none;
  stroke: #d8d8d0;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 9 12;
}

.rocket-path {
  stroke: var(--green);
  stroke-width: 7;
  stroke-dasharray: none;
}

.chart-candles path {
  fill: var(--green);
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linejoin: round;
}

.rocket {
  fill: var(--red);
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linejoin: round;
}

.chart-empty strong {
  padding: 7px 16px 9px;
  color: #fff;
  background: var(--ink);
  font-family: var(--marker-font);
  font-weight: 900;
  font-size: 23px;
  transform: rotate(-2deg);
}

footer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 24px;
  width: min(calc(100% - 44px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 3px solid var(--ink);
  filter: url("#rough-line");
}

footer p {
  max-width: 570px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 800;
}

footer p:first-child {
  font-family: var(--marker-font);
  font-weight: 900;
  font-size: 16px;
}

@media (max-width: 880px) {
  .title-lockup {
    margin-bottom: -10px;
  }

  .hero-stage {
    min-height: 680px;
  }

  .trump-figure {
    bottom: -26px;
    width: min(92vw, 760px);
  }

  .doodle-button {
    min-width: 135px;
    padding: 13px 15px;
    font-size: 15px;
  }

  .button-buy {
    top: 135px;
    left: 1%;
  }

  .button-x {
    top: 130px;
    right: 1%;
  }

  .button-telegram {
    top: 340px;
  }

  .button-ca {
    top: 330px;
  }

  .button-source {
    right: 3%;
    bottom: 40px;
  }

  .blast-lines {
    display: none;
  }
}

@media (max-width: 600px) {
  .site-header {
    width: min(calc(100% - 28px), var(--max-width));
    padding-top: 14px;
  }

  .wordmark span,
  .header-source {
    font-size: 11px;
  }

  .wordmark {
    gap: 6px;
  }

  .wordmark small {
    font-size: 10px;
  }

  .hero {
    padding-top: 30px;
  }

  h1 {
    font-size: clamp(46px, 16vw, 68px);
  }

  .title-scribble {
    bottom: -17px;
  }

  .hero-stage {
    min-height: 560px;
    margin-top: 18px;
  }

  .trump-figure {
    bottom: -10px;
    width: min(112vw, 620px);
  }

  .doodle-button {
    min-width: 0;
    padding: 11px 12px;
    border-width: 3px;
    box-shadow: 3px 4px 0 var(--ink);
    font-size: 12px;
  }

  .doodle-button small {
    font-size: 15px;
  }

  .button-buy {
    top: 70px;
    left: 1%;
  }

  .button-x {
    top: 56px;
    right: 0;
  }

  .button-telegram {
    top: 244px;
    left: -1%;
  }

  .button-ca {
    top: 228px;
    right: -1%;
  }

  .button-source {
    right: 2%;
    bottom: 4px;
  }

  .hook {
    margin-top: -8px;
    font-size: 17px;
  }

  .chart-section {
    margin-top: 34px;
    margin-bottom: 72px;
  }

  .section-heading {
    gap: 10px;
  }

  .section-heading p {
    font-size: 11px;
  }

  .heading-arrow {
    font-size: 44px;
  }

  .chart-frame,
  .chart-empty {
    min-height: 420px;
  }

  #dex-chart {
    height: 420px;
  }

  .chart-empty {
    padding: 15px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .doodle-button {
    transition: none;
  }
}
