@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg: #020705;
  --panel: #08110c;
  --panel-2: #0d1811;
  --panel-3: #122018;
  --line: rgba(87, 255, 155, 0.14);
  --green: #13f47d;
  --green-soft: #8affbc;
  --green-deep: #00bd5b;
  --white: #f2fff7;
  --text: #d8e9df;
  --muted: #7f9d8b;
  --danger: #ff5d6c;
  --shadow: rgba(0, 0, 0, 0.46);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 82% 4%, rgba(19,244,125,.14), transparent 24%),
    radial-gradient(circle at 8% 58%, rgba(19,244,125,.06), transparent 24%),
    linear-gradient(180deg, #020705 0%, #061009 48%, #020705 100%);
  overflow-x: hidden;
}

a { color: inherit; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.shell {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
}

.grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(87,255,155,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87,255,155,.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.topbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(19,244,125,.36);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(19,244,125,.06);
  box-shadow: 0 0 26px rgba(19,244,125,.11);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: -.03em;
}

.brand small {
  margin-top: 2px;
  color: var(--green-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
}

.nav a {
  color: #bfd4c6;
  text-decoration: none;
}

.nav a:hover {
  color: var(--green);
}

.button {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(19,244,125,.52);
  background: linear-gradient(180deg, #18f886, #00c861);
  color: #031008;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  font-family: "Archivo Black", sans-serif;
  letter-spacing: .015em;
  box-shadow: 0 0 26px rgba(19,244,125,.11), 6px 6px 0 rgba(0,0,0,.3);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 0 0 30px rgba(19,244,125,.18), 3px 3px 0 rgba(0,0,0,.3);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 12px;
}

.button-secondary {
  background: var(--panel-3);
  color: var(--green);
}

.button-ghost {
  background: transparent;
  color: var(--green-soft);
}

.hero {
  min-height: 720px;
  padding: 58px 0 100px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--green-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(19,244,125,.8);
  animation: pulse 1.7s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.72); }
}

.hero h1,
h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  line-height: .91;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(70px, 8vw, 126px);
}

.hero h1 span,
h2 span {
  color: var(--green);
  text-shadow: 0 0 26px rgba(19,244,125,.18);
}

.lead {
  max-width: 690px;
  margin: 30px 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contract-line {
  margin-top: 28px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(8,17,12,.7);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.contract-line span:first-child {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.contract-line code {
  color: var(--green-soft);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
}

#copyStatus {
  margin-left: auto;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.hero-visual {
  min-height: 620px;
  position: relative;
  display: grid;
  place-items: center;
}

.visual-glow {
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,244,125,.18) 0 20%, rgba(19,244,125,.06) 20% 48%, transparent 72%);
  filter: blur(2px);
}

.portrait {
  width: min(430px, 86vw);
  position: relative;
  z-index: 2;
  padding: 14px;
  border: 1px solid rgba(19,244,125,.3);
  background: linear-gradient(180deg, rgba(12,25,17,.98), rgba(6,12,8,.98));
  box-shadow: 0 36px 100px rgba(0,0,0,.55), 0 0 40px rgba(19,244,125,.07);
  transform: rotate(-2deg);
}

.portrait-head,
.portrait-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 8px 2px;
  color: var(--green-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.06);
}

.portrait-foot strong {
  color: var(--green);
  font-family: "Archivo Black", sans-serif;
  font-size: 27px;
  letter-spacing: -.03em;
}

.floating-price {
  position: absolute;
  z-index: 4;
  right: -14px;
  bottom: 74px;
  min-width: 190px;
  padding: 16px 18px;
  border: 1px solid rgba(19,244,125,.36);
  background: rgba(4,12,7,.88);
  box-shadow: 0 18px 50px rgba(0,0,0,.42);
  backdrop-filter: blur(12px);
}

.floating-price span,
.floating-price strong,
.floating-price small {
  display: block;
}

.floating-price span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.floating-price strong {
  margin-top: 7px;
  color: var(--white);
  font-family: "Archivo Black", sans-serif;
  font-size: 25px;
}

.floating-price small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.market-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 12%, rgba(19,244,125,.08), transparent 24%),
    rgba(4,10,6,.65);
}

.section {
  padding: 110px 0;
  position: relative;
  z-index: 2;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

h2 {
  margin-top: 15px;
  font-size: clamp(54px, 7vw, 102px);
}

.updated {
  color: var(--muted);
  text-align: right;
  font-size: 12px;
  line-height: 1.7;
}

.updated span {
  color: var(--green-soft);
}

.market-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.market-card {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14,27,18,.92), rgba(8,16,11,.96));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.market-card.primary {
  border-color: rgba(19,244,125,.38);
  box-shadow: inset 0 0 40px rgba(19,244,125,.035);
}

.market-card span,
.market-card strong,
.market-card small {
  display: block;
}

.market-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.market-card strong {
  margin: 16px 0 8px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(27px, 3.2vw, 44px);
  overflow-wrap: anywhere;
}

.market-card small {
  color: var(--muted);
  font-weight: 700;
}

.positive { color: var(--green) !important; }
.negative { color: var(--danger) !important; }

.market-actions {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.market-actions a {
  padding: 20px 22px;
  text-decoration: none;
  background: rgba(10,20,13,.72);
}

.market-actions a + a {
  border-left: 1px solid var(--line);
}

.market-actions span,
.market-actions strong {
  display: block;
}

.market-actions span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.market-actions strong {
  margin-top: 6px;
  color: var(--green);
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
}

.market-actions a:hover {
  background: rgba(19,244,125,.055);
}

.community-heading p {
  max-width: 480px;
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.72;
  font-weight: 600;
}

.meme-wall {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: 245px 190px;
  gap: 16px;
}

.meme-card {
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.image-card {
  grid-row: 1 / 3;
  position: relative;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card > div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 15px 16px;
  background: rgba(2,8,4,.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(19,244,125,.25);
}

.image-card span,
.image-card strong {
  display: block;
}

.image-card span,
.phrase-card span,
.pulse-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.image-card strong {
  margin-top: 6px;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
}

.phrase-card,
.pulse-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phrase-card strong {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(27px, 3vw, 44px);
  line-height: .95;
}

.phrase-card.inverse {
  background: var(--green);
  color: #041008;
}

.phrase-card.inverse span {
  color: rgba(4,16,8,.6);
}

.pulse-card {
  grid-column: 2 / 4;
  background:
    radial-gradient(circle at 90% 20%, rgba(19,244,125,.1), transparent 35%),
    var(--panel-2);
}

.pulse-card strong {
  margin: 14px 0 6px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(26px, 3.2vw, 46px);
}

.pulse-card i {
  color: var(--muted);
  font-style: normal;
}

.pulse-card small {
  color: var(--muted);
  font-weight: 700;
}

.affiliate-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  padding: 54px;
  border: 1px solid rgba(19,244,125,.3);
  background:
    radial-gradient(circle at 85% 20%, rgba(19,244,125,.11), transparent 34%),
    linear-gradient(180deg, rgba(13,25,17,.98), rgba(6,13,8,.98));
  box-shadow: 16px 16px 0 rgba(0,0,0,.3);
}

.affiliate-copy p {
  max-width: 680px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 600;
}

.feature-row {
  margin: 28px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.feature-row span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  color: var(--green-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.affiliate-button {
  margin-top: 4px;
}

.disclosure {
  margin-top: 22px !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  line-height: 1.65 !important;
  font-weight: 600 !important;
}

.affiliate-visual {
  display: grid;
  place-items: center;
}

.terminal {
  width: 100%;
  padding: 16px 18px 22px;
  border: 1px solid rgba(19,244,125,.26);
  background: #020805;
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
}

.terminal-top {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
}

.terminal-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2c4836;
}

.terminal code {
  display: block;
  margin-top: 12px;
  color: #99bba6;
  font-family: "Space Mono", monospace;
  font-size: 12px;
}

.terminal code.success {
  color: var(--green);
}

.official-section h2 {
  margin-bottom: 44px;
}

.official-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.official-grid a {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.official-grid a:hover {
  border-color: rgba(19,244,125,.34);
  background: var(--panel-2);
}

.official-grid span,
.official-grid strong,
.official-grid small {
  display: block;
}

.official-grid span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.official-grid strong {
  color: var(--green);
  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
}

.official-grid small {
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  overflow-wrap: anywhere;
}

.footer {
  padding: 48px 0 68px;
  display: grid;
  grid-template-columns: .7fr 1.7fr .6fr;
  gap: 30px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 20px;
}

.footer span {
  color: var(--green-soft);
  font-size: 12px;
  font-weight: 900;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  align-items: start;
}

.footer-links a {
  color: var(--green-soft);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1000px) {
  .nav { display: none; }

  .hero,
  .affiliate-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-visual {
    min-height: 570px;
  }

  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .meme-wall {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 220px 190px;
  }

  .image-card {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .pulse-card {
    grid-column: 1 / 3;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 24px, 1200px);
  }

  .topbar {
    min-height: 76px;
  }

  .brand strong { font-size: 13px; }
  .brand small { display: none; }
  .brand-icon { width: 42px; height: 42px; font-size: 11px; }
  .button-small { min-height: 38px; padding-inline: 12px; font-size: 10px; }

  .hero {
    padding: 35px 0 72px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contract-line {
    align-items: flex-start;
    flex-direction: column;
  }

  #copyStatus {
    margin-left: 0;
  }

  .hero-visual {
    min-height: 500px;
  }

  .visual-glow {
    width: 380px;
    height: 380px;
  }

  .floating-price {
    right: 0;
    bottom: 38px;
  }

  .market-section,
  .section {
    padding: 76px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  h2 {
    font-size: 49px;
  }

  .updated {
    text-align: left;
  }

  .market-grid,
  .market-actions,
  .official-grid {
    grid-template-columns: 1fr;
  }

  .market-actions a + a {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .meme-wall {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .image-card,
  .pulse-card {
    grid-column: auto;
    grid-row: auto;
  }

  .image-card {
    min-height: 440px;
  }

  .phrase-card,
  .pulse-card {
    min-height: 210px;
  }

  .affiliate-card {
    padding: 28px;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* HOOD GACHA HEADER PROMO START */

.hood-gacha-header-promo {
  position: relative;
  z-index: 50;
  isolation: isolate;

  display: grid;
  grid-template-columns:
    52px
    minmax(0, 1fr)
    auto
    auto;
  align-items: center;
  gap: 18px;

  width: min(
    calc(100% - 36px),
    1180px
  );

  min-height: 86px;
  margin: 18px auto 0;
  padding: 14px 16px;

  overflow: hidden;

  border:
    1px solid rgba(170, 255, 0, 0.32);
  border-radius: 13px;

  background:
    linear-gradient(
      105deg,
      rgba(8, 18, 11, 0.98),
      rgba(12, 27, 16, 0.97) 57%,
      rgba(8, 17, 11, 0.99)
    );

  color: inherit;
  text-decoration: none;

  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);

  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.hood-gacha-header-promo::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 78% 50%,
      rgba(170, 255, 0, 0.12),
      transparent 28%
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 39px,
      rgba(170, 255, 0, 0.022) 40px
    );
}

.hood-gacha-header-promo::after {
  content: "";

  position: absolute;
  top: 0;
  left: 10%;

  width: 80%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #aaff00,
      transparent
    );

  opacity: 0.68;
}

.hood-gacha-header-promo:hover {
  transform: translateY(-2px);

  border-color:
    rgba(170, 255, 0, 0.68);

  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.40),
    0 0 35px rgba(170, 255, 0, 0.055);
}

.hood-gacha-header-promo__logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  border:
    1px solid rgba(170, 255, 0, 0.48);
  border-radius: 9px;

  background:
    linear-gradient(
      145deg,
      rgba(170, 255, 0, 0.16),
      rgba(170, 255, 0, 0.035)
    );

  color: #aaff00;

  font-family:
    "Archivo Black",
    sans-serif;
  font-size: 17px;
  letter-spacing: -0.05em;

  box-shadow:
    inset 0 0 18px rgba(170, 255, 0, 0.07);
}

.hood-gacha-header-promo__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  min-width: 0;
}

.hood-gacha-header-promo__kicker {
  display: flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 4px;

  color: #aaff00;

  font-family:
    "Space Mono",
    monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.hood-gacha-header-promo__kicker i {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #aaff00;

  box-shadow:
    0 0 10px rgba(170, 255, 0, 0.85);

  animation:
    gacha-header-pulse
    1.8s ease-in-out infinite;
}

@keyframes gacha-header-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.hood-gacha-header-promo__copy > strong {
  overflow: hidden;

  max-width: 100%;

  color: #f3f6f3;

  font-family:
    "Archivo Black",
    sans-serif;
  font-size:
    clamp(16px, 2vw, 23px);
  line-height: 1.05;
  letter-spacing: -0.035em;

  white-space: nowrap;
  text-overflow: ellipsis;
}

.hood-gacha-header-promo__copy small {
  margin-top: 5px;

  color:
    rgba(228, 236, 230, 0.53);

  font-family:
    "Space Mono",
    monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hood-gacha-header-promo__price {
  display: flex;
  align-items: flex-end;
  gap: 6px;

  padding: 0 22px;

  border-right:
    1px solid rgba(170, 255, 0, 0.12);
  border-left:
    1px solid rgba(170, 255, 0, 0.12);
}

.hood-gacha-header-promo__price strong {
  color: #aaff00;

  font-family:
    "Archivo Black",
    sans-serif;
  font-size: 37px;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.hood-gacha-header-promo__price span {
  margin-bottom: 3px;

  color:
    rgba(235, 241, 236, 0.58);

  font-family:
    "Space Mono",
    monospace;
  font-size: 8px;
  font-weight: 700;
}

.hood-gacha-header-promo__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 158px;
  min-height: 46px;
  padding: 0 16px;

  border:
    1px solid #aaff00;
  border-radius: 7px;

  background: #aaff00;
  color: #071007;

  font-family:
    "Inter",
    sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.055em;

  transition:
    transform 150ms ease,
    filter 150ms ease,
    box-shadow 150ms ease;
}

.hood-gacha-header-promo__button b {
  font-size: 15px;
}

.hood-gacha-header-promo:hover
.hood-gacha-header-promo__button {
  transform: translateX(2px);
  filter: brightness(1.07);

  box-shadow:
    0 8px 25px rgba(170, 255, 0, 0.16);
}

@media (max-width: 760px) {
  .hood-gacha-header-promo {
    grid-template-columns:
      42px
      minmax(0, 1fr)
      auto;

    gap: 12px;

    width:
      calc(100% - 24px);
    min-height: 74px;
    margin-top: 12px;
    padding: 11px 12px;
  }

  .hood-gacha-header-promo__logo {
    width: 42px;
    height: 42px;

    font-size: 14px;
  }

  .hood-gacha-header-promo__price {
    display: none;
  }

  .hood-gacha-header-promo__button {
    min-width: 44px;
    width: 44px;
    min-height: 42px;
    padding: 0;

    font-size: 0;
  }

  .hood-gacha-header-promo__button b {
    font-size: 17px;
  }

  .hood-gacha-header-promo__copy small {
    display: none;
  }

  .hood-gacha-header-promo__copy > strong {
    white-space: normal;

    font-size:
      clamp(13px, 4vw, 17px);
  }
}

@media (max-width: 420px) {
  .hood-gacha-header-promo__kicker {
    font-size: 6px;
  }

  .hood-gacha-header-promo__copy > strong {
    font-size: 13px;
  }
}

/* HOOD GACHA HEADER PROMO END */

/* GACHA PROMO POSITION SIZE OVERRIDE START */

/*
 * Навигация теперь расположена выше баннера.
 * Баннер увеличен примерно на 25%.
 */

.hood-gacha-header-promo {
  grid-template-columns:
    62px
    minmax(0, 1fr)
    auto
    auto;

  gap: 22px;

  min-height: 110px;
  margin: 24px auto 26px;
  padding: 18px 20px;

  border-radius: 15px;
}

.hood-gacha-header-promo__logo {
  width: 62px;
  height: 62px;

  border-radius: 11px;

  font-size: 20px;
}

.hood-gacha-header-promo__copy > strong {
  font-size:
    clamp(19px, 2.2vw, 27px);
}

.hood-gacha-header-promo__copy small {
  margin-top: 7px;

  font-size: 8px;
}

.hood-gacha-header-promo__kicker {
  margin-bottom: 7px;

  font-size: 9px;
}

.hood-gacha-header-promo__price {
  padding: 0 27px;
}

.hood-gacha-header-promo__price strong {
  font-size: 45px;
}

.hood-gacha-header-promo__price span {
  margin-bottom: 5px;

  font-size: 9px;
}

.hood-gacha-header-promo__button {
  min-width: 190px;
  min-height: 57px;
  padding: 0 22px;

  border-radius: 8px;

  font-size: 11px;
}

@media (max-width: 760px) {
  .hood-gacha-header-promo {
    grid-template-columns:
      50px
      minmax(0, 1fr)
      auto;

    gap: 14px;

    min-height: 88px;
    margin: 16px auto 22px;
    padding: 14px;
  }

  .hood-gacha-header-promo__logo {
    width: 50px;
    height: 50px;

    font-size: 16px;
  }

  .hood-gacha-header-promo__button {
    width: 50px;
    min-width: 50px;
    min-height: 50px;
  }
}

/* GACHA PROMO POSITION SIZE OVERRIDE END */

/* Gacha banner below navigation */

.hood-gacha-header-promo {
  clear: both;
  margin-top: 18px !important;
  margin-bottom: 34px !important;
}



.site-dog-logo-badge {
  overflow: hidden !important;
  padding: 4px !important;
  display: grid !important;
  place-items: center !important;
}

.site-dog-logo-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  border-radius: inherit !important;
}

/* BASED BOT HERO BUTTON START */

.hero-buy-cluster {
  display: inline-flex;
  align-items: stretch;
  gap: 12px;
}

.hero-buy-cluster > .button {
  flex: 1 1 auto;
}

.based-bot-logo-link {
  position: relative;

  width: 58px;
  min-width: 58px;
  min-height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border:
    1px solid rgba(185, 255, 41, 0.72);

  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(185, 255, 41, 0.14),
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(13, 30, 17, 0.98),
      rgba(4, 13, 7, 0.98)
    );

  box-shadow:
    6px 6px 0 rgba(0, 0, 0, 0.3),
    inset 0 0 22px rgba(185, 255, 41, 0.05),
    0 0 24px rgba(185, 255, 41, 0.06);

  text-decoration: none;

  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.based-bot-logo-link::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      transparent 38%
    );
}

.based-bot-logo-link img {
  position: relative;
  z-index: 1;

  width: 44px;
  height: 44px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 0 7px
      rgba(185, 255, 41, 0.34)
    );

  transition:
    transform 160ms ease,
    filter 160ms ease;
}

.based-bot-logo-link:hover {
  transform: translate(3px, 3px);

  border-color: #b9ff29;

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(185, 255, 41, 0.22),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      rgba(15, 36, 19, 0.99),
      rgba(5, 16, 8, 0.99)
    );

  box-shadow:
    3px 3px 0 rgba(0, 0, 0, 0.3),
    inset 0 0 28px rgba(185, 255, 41, 0.08),
    0 0 30px rgba(185, 255, 41, 0.11);
}

.based-bot-logo-link:hover img {
  transform: scale(1.07);

  filter:
    drop-shadow(
      0 0 10px
      rgba(185, 255, 41, 0.5)
    );
}

.based-bot-logo-link:focus-visible {
  outline:
    2px solid #b9ff29;

  outline-offset: 4px;
}

@media (max-width: 700px) {
  .hero-buy-cluster {
    width: 100%;
    display: grid;
    grid-template-columns:
      minmax(0, 1fr)
      58px;
  }

  .hero-buy-cluster > .button {
    width: 100%;
  }

  .based-bot-logo-link {
    width: 58px;
    min-width: 58px;
  }
}

/* BASED BOT HERO BUTTON END */

/* BASED BOT TOPBAR BUTTON START */

.topbar-buy-cluster {
  display: inline-flex;
  align-items: stretch;
  gap: 9px;
  flex-shrink: 0;
}

.topbar-buy-cluster > .button-small {
  min-height: 42px;
}

.topbar-based-bot-link {
  position: relative;

  width: 44px;
  min-width: 44px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border:
    1px solid rgba(19, 244, 125, 0.68);

  border-radius: 3px;

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(185, 255, 41, 0.14),
      transparent 66%
    ),
    linear-gradient(
      180deg,
      rgba(12, 29, 17, 0.98),
      rgba(3, 13, 7, 0.98)
    );

  box-shadow:
    4px 4px 0 rgba(0, 0, 0, 0.28),
    inset 0 0 16px rgba(185, 255, 41, 0.045),
    0 0 18px rgba(19, 244, 125, 0.06);

  text-decoration: none;

  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.topbar-based-bot-link::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07),
      transparent 42%
    );
}

.topbar-based-bot-link img {
  position: relative;
  z-index: 1;

  width: 33px;
  height: 33px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 0 6px
      rgba(185, 255, 41, 0.34)
    );

  transition:
    transform 160ms ease,
    filter 160ms ease;
}

.topbar-based-bot-link:hover {
  transform: translate(2px, 2px);

  border-color: #b9ff29;

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(185, 255, 41, 0.22),
      transparent 68%
    ),
    linear-gradient(
      180deg,
      rgba(14, 36, 19, 0.99),
      rgba(4, 16, 8, 0.99)
    );

  box-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.28),
    inset 0 0 20px rgba(185, 255, 41, 0.07),
    0 0 24px rgba(185, 255, 41, 0.11);
}

.topbar-based-bot-link:hover img {
  transform: scale(1.07);

  filter:
    drop-shadow(
      0 0 9px
      rgba(185, 255, 41, 0.5)
    );
}

.topbar-based-bot-link:focus-visible {
  outline:
    2px solid #b9ff29;

  outline-offset: 3px;
}

@media (max-width: 700px) {
  .topbar-buy-cluster {
    gap: 6px;
  }

  .topbar-based-bot-link {
    width: 40px;
    min-width: 40px;
    height: 38px;
  }

  .topbar-based-bot-link img {
    width: 29px;
    height: 29px;
  }
}

/* HG BUYBACK EXPLANATION LINK END */

/* OPENSEA TOPBAR BUTTON START */

.topbar-opensea-link {
  position: relative;

  width: 44px;
  min-width: 44px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border:
    1px solid rgba(32, 129, 226, 0.72);

  border-radius: 3px;

  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(32, 129, 226, 0.18),
      transparent 68%
    ),
    linear-gradient(
      180deg,
      rgba(10, 28, 43, 0.98),
      rgba(3, 13, 21, 0.98)
    );

  box-shadow:
    4px 4px 0 rgba(0, 0, 0, 0.28),
    inset 0 0 18px rgba(32, 129, 226, 0.06),
    0 0 18px rgba(32, 129, 226, 0.08);

  text-decoration: none;

  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.topbar-opensea-link::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      transparent 42%
    );
}

.topbar-opensea-link img {
  position: relative;
  z-index: 1;

  width: 31px;
  height: 31px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 0 6px
      rgba(32, 129, 226, 0.4)
    );

  transition:
    transform 160ms ease,
    filter 160ms ease;
}

.topbar-opensea-link:hover {
  transform: translate(2px, 2px);

  border-color: #15b2e5;

  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(32, 129, 226, 0.28),
      transparent 70%
    ),
    linear-gradient(
      180deg,
      rgba(12, 38, 58, 0.99),
      rgba(4, 18, 29, 0.99)
    );

  box-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.28),
    inset 0 0 22px rgba(32, 129, 226, 0.1),
    0 0 26px rgba(32, 129, 226, 0.16);
}

.topbar-opensea-link:hover img {
  transform: scale(1.08);

  filter:
    drop-shadow(
      0 0 9px
      rgba(21, 178, 229, 0.6)
    );
}

.topbar-opensea-link:focus-visible {
  outline:
    2px solid #15b2e5;

  outline-offset: 3px;
}

@media (max-width: 700px) {
  .topbar-opensea-link {
    width: 40px;
    min-width: 40px;
    height: 38px;
  }

  .topbar-opensea-link img {
    width: 28px;
    height: 28px;
  }
}

/* =========================================================
   DOG IN HOOD — WOW V2
   ========================================================= */

:root {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
}

body {
  overflow-x: clip;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 120;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--green-deep), var(--green), #baffd4);
  box-shadow: 0 0 16px rgba(19,244,125,.68);
  will-change: transform;
}

.cursor-spotlight {
  position: fixed;
  top: -310px;
  left: -310px;
  z-index: 1;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .42;
  background: radial-gradient(circle, rgba(19,244,125,.085), rgba(19,244,125,.025) 34%, transparent 68%);
  filter: blur(10px);
  will-change: transform;
}

.topbar {
  transition: min-height .3s ease, background .3s ease, border-color .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}

.topbar.is-scrolled {
  position: sticky;
  top: 10px;
  min-height: 72px;
  padding-inline: 16px;
  border: 1px solid rgba(87,255,155,.13);
  background: rgba(3,11,7,.76);
  box-shadow: 0 18px 50px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.025);
  backdrop-filter: blur(18px) saturate(135%);
}

.hero {
  position: relative !important;
  overflow: visible !important;
  isolation: isolate;
  background: transparent !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 5% 2% 5% 46%;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  opacity: .74;
  background: radial-gradient(ellipse, rgba(19,244,125,.105), rgba(19,244,125,.025) 45%, transparent 72%);
  filter: blur(14px);
  transform: translate3d(calc(var(--hero-shift-x) * -.55), calc(var(--hero-shift-y) * -.55), 0);
  transition: transform .12s linear;
}

.hero::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: -90px !important;
  z-index: 1 !important;
  pointer-events: none !important;
  display: block !important;
  visibility: visible !important;
  opacity: 0;
  background-image: url("./images/dog-in-hood-cutout.png") !important;
  background-repeat: no-repeat !important;
  background-size: auto 99% !important;
  background-position: right 0 bottom 0 !important;
  transform: translate3d(calc(24px + var(--hero-shift-x)), calc(8px + var(--hero-shift-y)), 0) scale(.985);
  filter: blur(8px) saturate(.94);
  transition: opacity .85s cubic-bezier(.2,.7,.2,1) .20s, transform 1.1s cubic-bezier(.16,.8,.2,1) .12s, filter .9s ease .18s;
  will-change: transform;
}

.site-ready .hero::after {
  opacity: 1;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(1);
  filter: blur(0) saturate(1);
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition: opacity .62s ease, transform .72s cubic-bezier(.2,.75,.2,1), filter .62s ease;
}
.site-ready .hero-copy > * { opacity: 1; transform: none; filter: none; }
.site-ready .hero-copy > :nth-child(1) { transition-delay: .05s; }
.site-ready .hero-copy > :nth-child(2) { transition-delay: .13s; }
.site-ready .hero-copy > :nth-child(3) { transition-delay: .22s; }
.site-ready .hero-copy > :nth-child(4) { transition-delay: .31s; }
.site-ready .hero-copy > :nth-child(5) { transition-delay: .40s; }

.hero h1 span {
  position: relative;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: -3%;
  top: 48%;
  width: 106%;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(184,255,216,.9), transparent);
  box-shadow: 0 0 18px rgba(19,244,125,.55);
  transform: translateX(-45%) scaleX(.35);
}

.site-ready .hero h1 span::after {
  animation: title-scan 1.2s cubic-bezier(.2,.7,.2,1) .62s 1 both;
}

@keyframes title-scan {
  0% { opacity: 0; transform: translateX(-45%) scaleX(.35); }
  32% { opacity: .72; }
  100% { opacity: 0; transform: translateX(45%) scaleX(.55); }
}

.button {
  position: relative;
  overflow: hidden;
  transform: translate(var(--magnetic-x, 0), var(--magnetic-y, 0));
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle 90px at var(--button-x, 50%) var(--button-y, 50%), rgba(255,255,255,.36), transparent 70%);
  transition: opacity .22s ease;
}

.button::after {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -35%;
  width: 25%;
  opacity: 0;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
}

.button:hover::before { opacity: .72; }
.button:hover::after { animation: button-sweep .72s ease both; }
.button.is-copied { border-color: #c6ffdd; box-shadow: 0 0 36px rgba(19,244,125,.32); }

@keyframes button-sweep {
  0% { left: -35%; opacity: 0; }
  20% { opacity: .85; }
  100% { left: 115%; opacity: 0; }
}

.hood-ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(87,255,155,.13);
  border-bottom: 1px solid rgba(87,255,155,.13);
  background: rgba(5,14,9,.84);
  box-shadow: inset 0 1px rgba(255,255,255,.02);
}

.hood-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 48px;
  white-space: nowrap;
  animation: ticker-move 30s linear infinite;
}

.hood-ticker span, .hood-ticker i {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}
.hood-ticker span { color: #9eb7a7; padding: 0 22px; }
.hood-ticker i { color: var(--green); font-style: normal; text-shadow: 0 0 12px rgba(19,244,125,.7); }

@keyframes ticker-move { to { transform: translateX(-50%); } }

.market-status {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  color: var(--green-soft) !important;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
}
.market-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8c85a;
  box-shadow: 0 0 12px rgba(232,200,90,.7);
  animation: pulse 1.7s ease-in-out infinite;
}
.market-status.is-online::before { background: var(--green); box-shadow: 0 0 12px rgba(19,244,125,.8); }
.market-status.negative::before { background: var(--danger); box-shadow: 0 0 12px rgba(255,93,108,.65); }

.market-card, .meme-card, .affiliate-card, .official-grid a {
  position: relative;
  isolation: isolate;
}
.market-card::after, .meme-card::after, .affiliate-card::after, .official-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle 220px at var(--card-x, 50%) var(--card-y, 50%), rgba(19,244,125,.085), transparent 70%);
  transition: opacity .25s ease;
}
.market-card:hover::after, .meme-card:hover::after, .affiliate-card:hover::after, .official-grid a:hover::after { opacity: 1; }
.market-card, .meme-card, .official-grid a { transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.market-card:hover, .meme-card:hover, .official-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(19,244,125,.32);
  box-shadow: 0 22px 56px rgba(0,0,0,.24), inset 0 1px rgba(255,255,255,.025);
}

.stat-flash { animation: stat-flash .55s ease; }
@keyframes stat-flash {
  0% { color: #fff; text-shadow: 0 0 0 transparent; }
  45% { color: var(--green-soft); text-shadow: 0 0 20px rgba(19,244,125,.52); }
  100% { text-shadow: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(7px);
  transition: opacity .7s ease var(--reveal-delay, 0ms), transform .8s cubic-bezier(.2,.72,.2,1) var(--reveal-delay, 0ms), filter .7s ease var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

.official-grid { grid-template-columns: repeat(2, 1fr); }

.closing-scene {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(2,7,5,.97), rgba(2,7,5,.66)),
    radial-gradient(circle at 72% 45%, rgba(19,244,125,.14), transparent 32%);
}

.closing-scene::after {
  content: "$DIH";
  position: absolute;
  right: -2vw;
  bottom: -6vw;
  color: rgba(19,244,125,.025);
  font-family: "Archivo Black", sans-serif;
  font-size: min(34vw, 520px);
  line-height: .72;
  letter-spacing: -.09em;
  pointer-events: none;
}

.closing-scene-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,244,125,.14), rgba(19,244,125,.025) 42%, transparent 70%);
  filter: blur(14px);
  animation: closing-breathe 5s ease-in-out infinite;
}
@keyframes closing-breathe { 50% { transform: translateY(-50%) scale(1.08); opacity: .72; } }

.closing-scene-inner { position: relative; z-index: 2; }
.closing-scene h2 { max-width: 950px; font-size: clamp(65px, 10vw, 156px); }
.closing-scene p {
  margin: 28px 0 0;
  color: var(--green-soft);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}
.closing-actions { display: flex; gap: 14px; margin-top: 34px; }

@media (max-width: 1000px) {
  .hero { min-height: 760px; grid-template-columns: 1fr; padding-bottom: 310px; }
  .hero::after {
    right: -24% !important;
    bottom: -2% !important;
    background-size: auto 67% !important;
    background-position: right bottom !important;
    opacity: .82;
  }
  .official-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .cursor-spotlight { display: none; }
  .topbar.is-scrolled { top: 6px; min-height: 66px; padding-inline: 8px; }
  .topbar-buy-cluster { gap: 6px; }
  .hero { min-height: 760px; padding-bottom: 310px; }
  .hero::before { inset: 45% -30% 0 5%; }
  .hero::after {
    left: -34% !important;
    right: -38% !important;
    bottom: -2% !important;
    background-size: auto 59% !important;
    background-position: 72% bottom !important;
    opacity: .64;
  }
  .hero-copy { max-width: 100%; }
  .hero .lead { max-width: 94%; }
  .hood-ticker-track { min-height: 42px; animation-duration: 23s; }
  .official-grid { grid-template-columns: 1fr; }
  .closing-scene { min-height: 560px; }
  .closing-scene h2 { font-size: 56px; }
  .closing-actions { flex-direction: column; }
  .closing-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .hero::after, .hero-copy > *, .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .cursor-spotlight { display: none; }
}


/* ===== DIH BUY OPTIONS: UNISWAP + BASED BOT ===== */

.topbar-buy-label {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.trade-icon-link {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.035);

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.trade-icon-link img {
  display: block;
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.trade-icon-link:hover {
  transform: translateY(-2px);

  border-color: rgba(38, 255, 132, 0.55);
  background: rgba(38, 255, 132, 0.08);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.28);
}

.trade-icon-link:focus-visible,
.buy-choice-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}


.buy-choice {
  display: inline-flex;
  min-height: 52px;
  align-items: stretch;
  overflow: hidden;

  border: 1px solid rgba(38, 255, 132, 0.42);
  border-radius: 13px;

  background: rgba(3, 15, 9, 0.74);

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 18px 45px rgba(0, 0, 0, 0.22);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.buy-choice-label {
  display: inline-flex;
  align-items: center;
  padding: 0 17px;

  color: var(--green);

  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.buy-choice-link {
  display: inline-flex;
  min-width: 116px;
  align-items: center;
  justify-content: center;
  gap: 9px;

  border-left: 1px solid rgba(255, 255, 255, 0.11);

  color: #ffffff;

  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;

  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.buy-choice-link img {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.buy-choice-link:hover {
  color: var(--green);
  background: rgba(38, 255, 132, 0.105);
}

.buy-choice-link:active {
  transform: translateY(1px);
}

.buy-choice-closing {
  background: rgba(2, 10, 6, 0.82);
}


@media (max-width: 1000px) {
  .topbar-buy-label {
    display: none;
  }

  .trade-icon-link {
    width: 38px;
    height: 38px;
  }
}


@media (max-width: 700px) {
  .hero-actions,
  .closing-actions {
    align-items: stretch;
  }

  .buy-choice {
    width: 100%;
  }

  .buy-choice-label {
    flex: 1 1 auto;
  }

  .buy-choice-link {
    min-width: 0;
    flex: 1 1 0;
    padding: 0 10px;
  }
}


@media (max-width: 430px) {
  .buy-choice-label {
    padding-inline: 12px;
    font-size: 9px;
  }

  .buy-choice-link {
    gap: 6px;
    font-size: 8px;
  }

  .buy-choice-link img {
    width: 18px;
    height: 18px;
  }
}



/* ===== HEADER BUY CONTROL — CLEAN ===== */

.topbar-buy-cluster {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: nowrap;
}

.topbar-buy-label {
  display: inline-flex !important;
  width: auto;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;

  border: 1px solid rgba(38, 255, 132, 0.72);
  border-radius: 11px;

  background:
    linear-gradient(
      135deg,
      #25ff83 0%,
      #10d96a 100%
    );

  color: #031109 !important;

  font-family: var(--mono);
  font-size: 11px !important;
  font-weight: 950 !important;
  line-height: 1;
  letter-spacing: 0.09em !important;
  white-space: nowrap;

  box-shadow:
    0 10px 28px rgba(20, 232, 112, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.trade-icon-link {
  width: 44px !important;
  height: 44px !important;

  border-radius: 11px !important;
  border-color: rgba(255, 255, 255, 0.15) !important;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.025)
    ) !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 10px 25px rgba(0, 0, 0, 0.18);
}

.trade-icon-link img {
  width: 22px !important;
  height: 22px !important;
}

.trade-icon-based:hover {
  border-color: rgba(38, 255, 132, 0.65) !important;
  background: rgba(38, 255, 132, 0.1) !important;
}

.trade-icon-uniswap:hover {
  border-color: rgba(255, 105, 180, 0.68) !important;
  background: rgba(255, 105, 180, 0.1) !important;
}

.topbar-opensea-link {
  position: relative;
  display: inline-grid;
  width: 44px !important;
  height: 44px !important;
  margin-left: 8px;
  place-items: center;

  border: 1px solid rgba(32, 129, 226, 0.55);
  border-radius: 11px;

  background: rgba(32, 129, 226, 0.1);

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.topbar-opensea-link::before {
  content: "";
  position: absolute;
  left: -13px;
  width: 1px;
  height: 25px;
  background: rgba(255, 255, 255, 0.11);
}

.topbar-opensea-link img {
  width: 25px !important;
  height: 25px !important;
  object-fit: contain;
}

.topbar-opensea-link:hover {
  transform: translateY(-2px);
  border-color: rgba(64, 157, 245, 0.9);
  background: rgba(32, 129, 226, 0.17);
}

@media (max-width: 1050px) {
  .topbar-buy-label {
    height: 40px;
    padding-inline: 13px;
    font-size: 9px !important;
  }

  .trade-icon-link,
  .topbar-opensea-link {
    width: 40px !important;
    height: 40px !important;
  }
}

@media (max-width: 760px) {
  .topbar-buy-label {
    display: none !important;
  }

  .topbar-buy-cluster {
    gap: 6px;
  }

  .topbar-opensea-link {
    margin-left: 4px;
  }

  .topbar-opensea-link::before {
    display: none;
  }
}



/* ===== HEADER BUY SEGMENTED CONTROL ===== */

.topbar-buy-cluster {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0 !important;
  flex-wrap: nowrap !important;
}

/* BUY $DIH — левая часть капсулы */
.topbar-buy-label {
  display: inline-flex !important;
  width: auto !important;
  height: 46px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 20px !important;

  border: 1px solid rgba(38, 255, 132, 0.58) !important;
  border-right: 0 !important;
  border-radius: 15px 0 0 15px !important;

  background: rgba(2, 16, 10, 0.62) !important;

  color: #25ff83 !important;

  font-family: var(--mono) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: 0.12em !important;
  white-space: nowrap !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 14px 35px rgba(0, 0, 0, 0.18) !important;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Общие параметры двух торговых иконок */
.trade-icon-link {
  display: inline-grid !important;
  width: 54px !important;
  height: 46px !important;
  flex: 0 0 54px !important;
  place-items: center !important;

  margin: 0 !important;

  border: 1px solid rgba(38, 255, 132, 0.58) !important;
  border-right: 0 !important;
  border-radius: 0 !important;

  background: rgba(2, 16, 10, 0.62) !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025) !important;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease !important;
}

/* Тонкие внутренние разделители */
.trade-icon-link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 25px;
  background: rgba(255, 255, 255, 0.09);
}

/* Последний сегмент — Uniswap */
.trade-icon-uniswap {
  border-right: 1px solid rgba(38, 255, 132, 0.58) !important;
  border-radius: 0 15px 15px 0 !important;
}

/* Иконки */
.trade-icon-link img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  object-fit: contain !important;
}

/* Hover Based Bot */
.trade-icon-based:hover {
  z-index: 2;
  transform: translateY(-1px) !important;

  background: rgba(38, 255, 132, 0.12) !important;

  box-shadow:
    inset 0 0 22px rgba(38, 255, 132, 0.06),
    0 10px 26px rgba(0, 0, 0, 0.18) !important;
}

/* Hover Uniswap */
.trade-icon-uniswap:hover {
  z-index: 2;
  transform: translateY(-1px) !important;

  background: rgba(255, 91, 174, 0.12) !important;

  box-shadow:
    inset 0 0 22px rgba(255, 91, 174, 0.07),
    0 10px 26px rgba(0, 0, 0, 0.18) !important;
}

/* OpenSea остаётся отдельной кнопкой */
.topbar-opensea-link {
  position: relative !important;
  display: inline-grid !important;
  width: 46px !important;
  height: 46px !important;
  margin-left: 12px !important;
  place-items: center !important;

  border: 1px solid rgba(32, 129, 226, 0.55) !important;
  border-radius: 13px !important;

  background: rgba(32, 129, 226, 0.11) !important;

  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease !important;
}

.topbar-opensea-link::before {
  display: none !important;
}

.topbar-opensea-link img {
  width: 26px !important;
  height: 26px !important;
  object-fit: contain !important;
}

.topbar-opensea-link:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(74, 165, 255, 0.9) !important;
  background: rgba(32, 129, 226, 0.18) !important;
}

@media (max-width: 1050px) {
  .topbar-buy-label {
    height: 42px !important;
    padding-inline: 15px !important;
    font-size: 9px !important;
  }

  .trade-icon-link {
    width: 48px !important;
    height: 42px !important;
    flex-basis: 48px !important;
  }

  .topbar-opensea-link {
    width: 42px !important;
    height: 42px !important;
  }
}

@media (max-width: 760px) {
  .topbar-buy-label {
    display: none !important;
  }

  .trade-icon-based {
    border-left: 1px solid rgba(38, 255, 132, 0.58) !important;
    border-radius: 13px 0 0 13px !important;
  }

  .trade-icon-uniswap {
    border-radius: 0 13px 13px 0 !important;
  }

  .topbar-opensea-link {
    margin-left: 8px !important;
  }
}



/* ===== OPENSEA NFT LABEL + AYUTHAYA ACCENT ===== */

/* OpenSea + NFT как единый мини-сегмент */
.topbar-opensea-link {
  margin-left: 12px !important;
  margin-right: 0 !important;
  border-radius: 13px 0 0 13px !important;
  border-right: 0 !important;

  background: rgba(32, 129, 226, 0.11) !important;
  border: 1px solid rgba(32, 129, 226, 0.55) !important;
}

.topbar-nft-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 16px;
  margin-left: 0;

  border: 1px solid rgba(32, 129, 226, 0.55);
  border-left: 0;
  border-radius: 0 13px 13px 0;

  background: rgba(5, 18, 31, 0.78);

  color: #8ecbff;

  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 24px rgba(0, 0, 0, 0.15);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}



/* Ayuthaya как акцент на большие заголовки */
:root {
  --dih-accent-serif:
    "Cinzel",
    "Palatino Linotype",
    Georgia,
    serif;
}

h1,
h2 {
  font-family: var(--dih-accent-serif);
  letter-spacing: 0.02em;
}

/* чтобы крупные заголовки не стали слишком рыхлыми */
h1 {
  line-height: 0.92;
}

h2 {
  line-height: 0.98;
}

@media (max-width: 1050px) {
  .topbar-opensea-link {
    width: 42px !important;
    height: 42px !important;
  }

  .topbar-nft-label {
    height: 42px;
    padding-inline: 13px;
    font-size: 10px;
  }
}

@media (max-width: 760px) {
  .topbar-opensea-link {
    border-radius: 13px !important;
    border-right: 1px solid rgba(32, 129, 226, 0.55) !important;
    margin-left: 8px !important;
  }

  .topbar-nft-label {
    display: none;
  }
}



/* ===== CINZEL FONT + STATIC NFT LABEL ===== */

/*
  NFT является подписью, а не отдельной кнопкой.
  Отключаем hover и события указателя.
*/
.topbar-nft-label {
  pointer-events: none !important;
  user-select: none;

  background: rgba(5, 18, 31, 0.78) !important;
  color: #8ecbff !important;

  transform: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 24px rgba(0, 0, 0, 0.15) !important;
}

/*
  Декоративный шрифт используется только в крупных заголовках.
  Текст, навигация и кнопки сохраняют прежнюю читаемость.
*/
h1,
h2 {
  font-family: var(--dih-accent-serif) !important;
  font-weight: 900;
  font-style: normal;
  text-rendering: optimizeLegibility;
}

h1 {
  letter-spacing: -0.025em !important;
}

h2 {
  letter-spacing: -0.012em !important;
}

/* ===== HEADER NAV CINZEL ===== */

header nav a,
.topbar-nav a,
.site-nav a,
.main-nav a {
  font-family: var(--dih-accent-serif) !important;
  font-weight: 800 !important;
  font-style: normal;
  letter-spacing: 0.015em !important;
  text-rendering: optimizeLegibility;

  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

header nav a:hover,
.topbar-nav a:hover,
.site-nav a:hover,
.main-nav a:hover {
  color: var(--green) !important;
  transform: translateY(-1px);
}

/* ===== GLOBAL CINZEL — ALL SITE ===== */

#dihApp,
#dihApp *,
#dihApp *::before,
#dihApp *::after {
  font-family:
    "Cinzel",
    "Palatino Linotype",
    "Book Antiqua",
    Georgia,
    serif !important;
}

/* Обычный текст — более лёгкий и читаемый */
#dihApp p,
#dihApp li,
#dihApp small,
#dihApp label,
#dihApp input,
#dihApp textarea,
#dihApp select {
  font-weight: 500;
  letter-spacing: 0.005em;
}

/* Кнопки, ссылки и интерфейс */
#dihApp a,
#dihApp button,
#dihApp nav,
#dihApp strong {
  font-weight: 700;
}

/* Крупные заголовки */
#dihApp h1,
#dihApp h2,
#dihApp h3 {
  font-weight: 900;
  text-rendering: optimizeLegibility;
}

/* Контракт и технические значения */
#dihApp code,
#dihApp pre,
#dihApp .contract-line,
#dihApp .market-value {
  font-weight: 600;
  letter-spacing: 0.015em;
}

/* ===== X PLACEHOLDER IN HEADER ===== */

.topbar-x-link {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-left: 10px;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.022)
    );

  color: rgba(255, 255, 255, 0.72);

  cursor: pointer;
  pointer-events: auto;
  user-select: none;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 10px 24px rgba(0, 0, 0, 0.16);

  opacity: 0.78;
}

.topbar-x-link img {
  display: block;
  width: 21px;
  height: 21px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

@media (max-width: 1050px) {
  .topbar-x-link {
    width: 42px;
    height: 42px;
  }

  .topbar-x-link img {
    width: 19px;
    height: 19px;
  }
}

@media (max-width: 760px) {
  .topbar-x-link {
    margin-left: 7px;
  }
}



/* ===== X OFFICIAL LINK — SAFE ===== */

.topbar-x-link {
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.topbar-x-link:hover {
  transform: translateY(-2px);
  opacity: 1;

  border-color: rgba(255, 255, 255, 0.48);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.045)
    );
}

.topbar-x-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
