:root {
  --bg: #180817;
  --panel: #261020;
  --panel-2: #34172d;
  --line: rgba(255, 137, 190, 0.34);
  --line-strong: rgba(255, 196, 226, 0.72);
  --gold: #ff7ab6;
  --gold-soft: #ffd7ea;
  --text: #fff8fc;
  --muted: #cfaec0;
  --danger: #ff6d9d;
  --green: #7ce7d1;
  --cream: #fff0c7;
  --shadow: 0 0 28px rgba(255, 122, 182, 0.24);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 122, 182, 0.18), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(185, 132, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #210a1e 0%, var(--bg) 44%, #0d0610 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px clamp(16px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  background: rgba(24, 8, 23, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 122, 182, 0.42));
}

.brand-kicker {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  margin-top: 2px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-wag,
.hero-wag {
  display: inline-block;
  color: #ff7ab6;
  background: linear-gradient(120deg, #9d335f 0%, #ff7ab6 24%, #ffe5f2 46%, #ff9ccc 62%, #b84372 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 7px rgba(255, 122, 182, 0.38));
  -webkit-text-fill-color: transparent;
  animation: brand-wag-pulse 1.55s ease-in-out infinite;
}

.hero-wag {
  filter: drop-shadow(0 0 18px rgba(255, 122, 182, 0.46));
}

@keyframes brand-wag-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(255, 122, 182, 0.3));
    opacity: 0.86;
  }

  50% {
    filter: drop-shadow(0 0 13px rgba(255, 196, 226, 0.78));
    opacity: 1;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.nav-links a,
.primary-btn {
  border: 1px solid var(--line);
  background: rgba(55, 23, 47, 0.88);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-links a {
  padding: 9px 12px;
}

.nav-links a:hover {
  border-color: var(--gold);
}

.x-follow {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 231, 102, 0.7) !important;
  border-color: rgba(255, 231, 102, 0.7) !important;
  background: linear-gradient(135deg, #fff0c7, #ff7ab6) !important;
  color: #2a1024 !important;
  box-shadow: 0 0 22px rgba(255, 122, 182, 0.24);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.x-follow:hover,
.x-follow:focus-visible {
  border-color: #fff0c7 !important;
  background: linear-gradient(135deg, #fff7dd, #ff94c5) !important;
  outline: 0;
}

.nav-x {
  justify-self: center;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 122, 182, 0.18), transparent 38%),
    radial-gradient(circle at 18% 20%, rgba(255, 240, 199, 0.12), transparent 24%),
    radial-gradient(circle at 82% 28%, rgba(185, 132, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #240c21 0%, #120713 100%);
}

.pitch-lines {
  position: absolute;
  inset: 4%;
  opacity: 0.08;
  border: 3px solid var(--gold);
  pointer-events: none;
}

.pitch-lines::before {
  content: "";
  position: absolute;
  inset: 0 50% auto auto;
  width: 3px;
  height: 100%;
  background: var(--gold);
}

.pitch-lines::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(24vw, 240px);
  aspect-ratio: 1;
  border: 3px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.float-zone {
  position: absolute;
  inset-block: 54px 60px;
  width: min(22vw, 230px);
  pointer-events: none;
}

.float-zone.left {
  left: 14px;
}

.float-zone.right {
  right: 14px;
}

.float-card {
  position: absolute;
  width: clamp(76px, 9vw, 118px);
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line-strong);
  background: var(--panel-2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.float-card img {
  width: 100%;
  height: 100%;
  object-fit: var(--image-fit, cover);
  object-position: var(--image-focus, top center);
}

.float-card span {
  position: absolute;
  left: 6px;
  bottom: 6px;
  max-width: calc(100% - 12px);
  padding: 3px 5px;
  background: rgba(35, 12, 30, 0.82);
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.float-a { animation: float-a 5.2s ease-in-out infinite; }
.float-b { animation: float-b 6.1s ease-in-out -1.4s infinite; }
.float-c { animation: float-c 4.8s ease-in-out -2.7s infinite; }
.float-d { animation: float-d 7s ease-in-out -0.8s infinite; }

@keyframes float-a {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(-4deg); }
}

@keyframes float-b {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}

@keyframes float-c {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes float-d {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-16px) rotate(5deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  padding: 86px 0 78px;
  text-align: center;
}

.eyebrow,
.section-kicker,
.countdown-title,
.card-label {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(54px, 9vw, 116px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 38px rgba(255, 122, 182, 0.46);
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  color: #d6d6d6;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.65;
}

.hero-note {
  max-width: 660px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: 1.55;
}

.presented-by {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.presented-word {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.presented-word span,
.presented-action {
  letter-spacing: 0.16em;
}

.presented-word .gold-or {
  display: inline-block;
  color: #ffd84a;
  background: linear-gradient(115deg, #a86d12 0%, #fff6bd 28%, #ffc83d 52%, #fff8ca 72%, #b87318 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(255, 216, 74, 0.48));
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero-ball-button {
  position: relative;
  top: -12px;
  left: -6px;
  display: grid;
  width: clamp(44px, 5vw, 72px);
  height: clamp(44px, 5vw, 72px);
  place-items: center;
  margin: 0 -12px 0 -9px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  animation: hero-ball-drop 1.75s cubic-bezier(0.2, 0.82, 0.25, 1) both;
}

.presented-by img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 122, 182, 0.45));
}

.hero-ball-button.is-bouncing img {
  animation: hero-ball-click-bounce 1.25s both;
}

@keyframes hero-ball-drop {
  0%, 22% {
    opacity: 0;
    transform: translateY(-62vh) scale(1);
  }

  38% {
    opacity: 1;
    transform: translateY(0) scale(1.08, 0.92);
  }

  52% { transform: translateY(-58px) scale(0.98, 1.04); }
  64% { transform: translateY(0) scale(1.05, 0.95); }
  76% { transform: translateY(-34px) scale(0.99, 1.03); }
  86% { transform: translateY(0) scale(1.03, 0.97); }
  94% { transform: translateY(-16px) scale(1); }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-ball-click-bounce {
  0% { transform: translateY(0) scale(1); }
  14% { transform: translateY(-58px) scale(0.98, 1.04); }
  28% { transform: translateY(0) scale(1.08, 0.92); }
  42% { transform: translateY(-34px) scale(0.99, 1.03); }
  56% { transform: translateY(0) scale(1.05, 0.95); }
  70% { transform: translateY(-16px) scale(1); }
  84% { transform: translateY(0) scale(1.03, 0.97); }
  100% { transform: translateY(0) scale(1); }
}

.primary-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}

.primary-btn {
  background: linear-gradient(135deg, var(--gold), #ffd1df);
  color: #2a1024;
  border-color: var(--gold);
}

.primary-btn:hover {
  transform: translateY(-1px);
}

.eco-stats {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(840px, calc(100% - 24px));
  grid-template-columns: 0.62fr 1fr 1fr 0.92fr;
  gap: 0;
  margin: 28px auto 0;
  border-block: 1px solid var(--line-strong);
  background: rgba(18, 7, 17, 0.72);
  text-align: left;
}

.eco-stat {
  min-width: 0;
  padding: 14px clamp(12px, 1.8vw, 22px);
  border-right: 1px solid rgba(255, 221, 113, 0.46);
}

.eco-stat:last-child {
  border-right: 0;
}

.eco-stat span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eco-stat strong {
  display: block;
  margin-top: 8px;
  color: #ffe8f4;
  font-family: var(--mono);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 22px rgba(255, 122, 182, 0.58);
}

.eco-stat:first-child strong {
  color: #ffd64d;
}

.eco-gainer {
  color: #16d96b !important;
  font-size: clamp(16px, 2.2vw, 24px) !important;
  text-transform: uppercase;
}

.main-token-card {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(860px, 100%);
  grid-template-columns: minmax(0, 1.45fr) minmax(230px, 0.8fr);
  align-items: stretch;
  margin: 34px auto 0;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: rgba(41, 15, 35, 0.98);
  box-shadow: var(--shadow);
  text-align: left;
  overflow: hidden;
}

.main-token-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.main-token-topline {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.main-token-topline span,
.main-token-copy p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(8px, 0.9vw, 11px);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  background: rgba(255, 122, 182, 0.1);
  color: var(--gold-soft) !important;
}

.live-heart {
  color: #ff4f9a !important;
  font-size: 13px !important;
  letter-spacing: 0 !important;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 79, 154, 0.8);
  animation: heart-pulse 1.05s ease-in-out infinite;
}

@keyframes heart-pulse {
  0%, 100% {
    opacity: 0.42;
    transform: scale(0.8);
  }

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

.main-token-identity {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 22px;
}

.main-token-logo-frame {
  display: grid;
  width: clamp(118px, 14vw, 164px);
  min-height: 100%;
  place-items: center;
  border: 2px solid var(--gold);
  background: #230d1f;
  box-shadow: inset 0 0 22px rgba(255, 122, 182, 0.16);
}

.main-token-logo-frame img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 122, 182, 0.45));
}

.main-token-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.main-token-copy strong {
  display: block;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.main-token-copy p {
  margin: 8px 0 0;
  color: var(--gold);
  font-size: 12px;
}

.main-token-copy .main-token-description {
  max-width: 410px;
  margin-top: 10px;
  color: var(--gold-soft);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.48;
  text-transform: none;
}

.main-token-market {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 28px;
}

.main-token-market .metric {
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.main-token-market .metric:last-child {
  border-bottom: 0;
}

.main-token-market .metric strong {
  color: var(--text);
  font-size: clamp(20px, 2.6vw, 32px);
  font-family: var(--mono);
}

#main-price {
  font-size: clamp(17px, 2.2vw, 28px);
}

.main-token-market .metric .market-change.positive {
  color: var(--green);
}

.main-token-market .metric .market-change.negative {
  color: var(--danger);
}

.main-token-market .metric .market-change.neutral {
  color: var(--text);
}

.main-contract-block {
  display: grid;
  width: min(520px, 100%);
  gap: 8px;
}

.main-contract-block > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-ca-copy {
  width: min(480px, 100%);
  height: 46px;
  min-height: 46px;
  border: 1px solid var(--line);
  background: #210c1e;
}

.main-ca-copy:disabled {
  cursor: default;
  opacity: 0.72;
}

.main-token-action {
  margin-top: 16px;
}

.countdown {
  position: relative;
  z-index: 2;
  width: min(600px, 100%);
  margin: 38px auto 0;
  padding: 26px clamp(18px, 3vw, 32px);
  border: 1px solid var(--line);
  background: rgba(42, 14, 36, 0.94);
}

.countdown-subtitle {
  margin-top: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.timer-cell {
  min-width: 0;
  padding: 14px 8px;
  border: 1px solid var(--line);
  background: #21101e;
}

.timer-cell strong {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: clamp(24px, 5vw, 42px);
  line-height: 1;
}

.timer-cell span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.board-section {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
  scroll-margin-top: 106px;
}

.board-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 24px;
  align-items: end;
}

.board-head h2 {
  margin: 6px 0 10px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.board-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.controls {
  display: grid;
  gap: 8px;
}

.search-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.controls input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #210c1e;
  color: var(--text);
  outline: 0;
}

.controls input:focus {
  border-color: var(--gold);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.partner-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.partner-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.partner-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.image-wrap {
  position: relative;
  height: 220px;
  border-bottom: 1px solid var(--line);
  background: #1d0b1b;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: var(--image-fit, cover);
  object-position: var(--image-focus, top center);
  transition: transform 260ms ease;
}

.partner-card:hover .image-wrap img {
  transform: scale(1.035);
}

.placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 122, 182, 0.18), transparent 42%),
    #1d0b1b;
}

.placeholder-inner {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 2px solid var(--line-strong);
  color: rgba(255, 215, 234, 0.52);
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 900;
}

.rank-badge,
.symbol-badge,
.country-ribbon {
  position: absolute;
  background: rgba(31, 10, 27, 0.86);
  font-family: var(--mono);
  font-weight: 900;
}

.top-card-logo {
  position: absolute;
  top: 42px;
  right: 9px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.top-card-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 122, 182, 0.58));
}

.rank-badge {
  top: 10px;
  right: 10px;
  padding: 4px 7px;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-size: 13px;
}

.country-ribbon {
  top: 10px;
  left: 10px;
  max-width: calc(100% - 78px);
  padding: 5px 9px;
  border: 1px solid rgba(255, 215, 234, 0.64);
  background: linear-gradient(135deg, rgba(31, 10, 27, 0.92), rgba(255, 122, 182, 0.18));
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(255, 122, 182, 0.2);
}

.symbol-badge {
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 4px 7px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.card-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.name-row,
.dialog-title-row {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 8px;
}

.name-row h3,
.dialog-title-row h2 {
  flex: 1;
  min-width: 0;
}

.social-links {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 6px;
}

.social-link {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 122, 182, 0.08);
  color: var(--gold-soft);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 122, 182, 0.18);
  color: var(--gold);
  outline: 0;
  transform: translateY(-1px);
}

.social-link.tiktok:hover,
.social-link.tiktok:focus-visible {
  color: var(--green);
}

.social-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  border-radius: 5px;
}

.player-meta {
  margin: 5px 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.market-row {
  margin-top: 10px;
}

.metric {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  background: #210c1e;
}

.ca-metric {
  display: flex;
  align-items: stretch;
  padding: 0;
}

.ca-copy,
.ca-placeholder {
  display: flex;
  width: 100%;
  min-height: 100%;
  align-items: center;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: none;
  overflow-wrap: anywhere;
}

.ca-copy {
  cursor: url("./assets/copy-cursor.svg") 8 8, pointer;
}

.card-ca-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  align-items: stretch;
  border: 1px solid var(--line);
  background: #210c1e;
}

.card-ca-value {
  display: block;
  min-width: 0;
  padding: 9px 10px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  overflow: hidden;
  text-align: left;
  text-overflow: clip;
  text-transform: none;
  white-space: nowrap;
}

.card-ca-button {
  min-width: 52px;
  padding: 0 10px;
  border: 0;
  border-left: 1px solid var(--line);
  background: rgba(255, 122, 182, 0.1);
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-ca-button.ca-copy {
  cursor: url("./assets/copy-cursor.svg") 8 8, pointer;
}

.card-ca-bar.is-empty .card-ca-value,
.card-ca-bar.is-empty .card-ca-button {
  color: var(--muted);
  cursor: default;
  opacity: 0.76;
}

.card-ca-value.ca-copy:hover,
.card-ca-value.ca-copy:focus-visible,
.card-ca-button.ca-copy:hover,
.card-ca-button.ca-copy:focus-visible {
  background: rgba(255, 122, 182, 0.16);
  color: var(--gold-soft);
  outline: 0;
}

.main-token-card .main-ca-copy {
  display: inline-flex;
  width: min(540px, 100%);
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: #210c1e;
  font-size: 10px;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.ca-copy:hover,
.ca-copy:focus-visible {
  background: rgba(255, 122, 182, 0.14);
  outline: 0;
}

.metric span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.empty-value {
  text-align: center;
}

.onlyfans-section {
  width: min(780px, calc(100% - 32px));
  margin: 8px auto 58px;
  text-align: center;
}

.onlyfans-line {
  width: min(620px, 100%);
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, rgba(0, 175, 240, 0.86), transparent);
  box-shadow: 0 0 18px rgba(0, 175, 240, 0.32);
}

.onlyfans-line-bottom {
  margin: 18px auto 0;
  opacity: 0.62;
}

.onlyfans-gate {
  display: flex;
  width: min(560px, 100%);
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 22px;
  border: 1px solid rgba(0, 175, 240, 0.84);
  background:
    linear-gradient(135deg, rgba(0, 175, 240, 0.3), rgba(0, 99, 153, 0.18) 52%, rgba(0, 175, 240, 0.14)),
    rgba(5, 25, 36, 0.98);
  color: var(--text);
  cursor: pointer;
  margin: 0 auto;
  box-shadow: 0 0 26px rgba(0, 175, 240, 0.2);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  animation: onlyfans-blue-pulse 2.2s ease-in-out infinite;
}

.onlyfans-gate:hover,
.onlyfans-gate:focus-visible {
  border-color: #00aff0;
  box-shadow: 0 0 34px rgba(0, 175, 240, 0.34);
  outline: 0;
  transform: translateY(-2px);
}

.onlyfans-gate span {
  min-width: 0;
  color: #e8f9ff;
  font-family: var(--mono);
  font-size: clamp(11px, 1.4vw, 15px);
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.onlyfans-gate .onlyfans-arrow {
  flex: 0 0 auto;
  color: #00aff0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 0 14px rgba(0, 175, 240, 0.72);
}

.onlyfans-gate img {
  flex: 0 0 auto;
  width: clamp(68px, 8vw, 92px);
  max-width: 22%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 175, 240, 0.56));
}

@keyframes onlyfans-blue-pulse {
  0%, 100% {
    box-shadow: 0 0 22px rgba(0, 175, 240, 0.18);
  }

  50% {
    box-shadow: 0 0 38px rgba(0, 175, 240, 0.38), inset 0 0 18px rgba(0, 175, 240, 0.12);
  }
}

.horny-jail-panel {
  width: min(520px, 100%);
  margin: 18px auto 0;
  border: 1px solid var(--line-strong);
  background: rgba(38, 16, 32, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.horny-jail-panel[hidden] {
  display: none;
}

.horny-jail-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.detail-dialog {
  width: min(920px, calc(100% - 28px));
  padding: 0;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.78);
}

.detail-dialog::backdrop {
  background: rgba(18, 5, 16, 0.8);
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  background: #210c1e;
  color: var(--gold);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.dialog-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
}

.dialog-media {
  min-height: 420px;
  border-right: 1px solid var(--line);
  background: #1d0b1b;
}

.dialog-media img,
.dialog-media .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.dialog-copy {
  padding: 34px;
}

.dialog-copy h2 {
  margin: 0 0 6px;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
}

.dialog-title-row {
  align-items: center;
  margin-top: 6px;
}

.dialog-title-row .social-link {
  width: 32px;
  height: 32px;
}

.dialog-title-row .social-link img {
  width: 18px;
  height: 18px;
}

.dialog-copy p {
  color: #d6d6d6;
  line-height: 1.65;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-link + .detail-link {
  margin-left: 10px;
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .float-zone {
    opacity: 0.42;
  }
}

@media (max-width: 820px) {
  .topbar,
  .board-head,
  .main-token-card,
  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-x {
    align-self: center;
  }

  .hero {
    min-height: 700px;
  }

  .float-zone {
    display: none;
  }

  .main-token-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .main-token-market {
    gap: 10px;
  }

  .main-token-market .metric {
    padding: 12px;
    border: 1px solid var(--line);
    background: #210c1e;
  }

  .timer,
  .main-token-market,
  .card-grid,
  .detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dialog-media {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .nav-links {
    width: 100%;
  }

  .nav-links a {
    flex: 1;
    text-align: center;
  }

  .hero-inner {
    padding-top: 84px;
  }

  .presented-by {
    gap: 10px;
    font-size: clamp(20px, 7vw, 30px);
  }

  .hero-ball-button {
    width: 44px;
    height: 44px;
  }

  .eco-stats {
    grid-template-columns: 1fr;
  }

  .eco-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 221, 113, 0.36);
  }

  .eco-stat:last-child {
    border-bottom: 0;
  }

  .main-token-identity {
    grid-template-columns: 1fr;
  }

  .timer,
  .main-token-market,
  .card-grid,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .onlyfans-gate {
    gap: 10px;
    min-height: 64px;
    padding: 10px 12px;
  }

  .onlyfans-gate span {
    font-size: 9px;
    text-align: left;
  }

  .onlyfans-gate img {
    width: 58px;
    max-width: 22%;
  }

  .image-wrap {
    height: 260px;
  }
}
