﻿/* ========== 甯佺墰甯?路 榛戦噾 meme 瀹樼綉 ========== */
:root {
  --bg: #070708;
  --bg-elevated: #0e0e10;
  --bg-card: rgba(22, 18, 12, 0.72);
  --gold: #f5c518;
  --gold-bright: #ffe066;
  --gold-deep: #c9960a;
  --amber: #ff9f1c;
  --orange: #ff6b00;
  --purple: #a78bfa;
  --blue: #38bdf8;
  --fire: #ff5a3c;
  --text: #f5f0e6;
  --text-muted: #a89f8f;
  --border: rgba(245, 197, 24, 0.18);
  --border-strong: rgba(245, 197, 24, 0.4);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-gold: 0 0 40px rgba(245, 197, 24, 0.15);
  --font: "Noto Sans SC", system-ui, -apple-system, sans-serif;
  --font-display: "Orbitron", "Noto Sans SC", sans-serif;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  color: var(--gold-bright);
  font-weight: 700;
}

/* Background orbs */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.5), transparent 70%);
  top: -10%;
  right: -5%;
  animation: float 18s ease-in-out infinite;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.35), transparent 70%);
  bottom: 20%;
  left: -8%;
  animation: float 22s ease-in-out infinite reverse;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.25), transparent 70%);
  top: 50%;
  left: 40%;
  animation: float 26s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(7, 7, 8, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 16px rgba(245, 197, 24, 0.45);
  border: 1.5px solid var(--border-strong);
}

.brand-text {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 24px;
  flex: 1;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.25s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 24px;
  background: rgba(7, 7, 8, 0.95);
  border-bottom: 1px solid var(--border);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a:not(.btn) {
  color: var(--text-muted);
  padding: 8px 0;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: #1a1200;
  box-shadow: 0 4px 24px rgba(245, 197, 24, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 6px 32px rgba(245, 197, 24, 0.55);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(245, 197, 24, 0.08);
  color: var(--gold);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(245, 197, 24, 0.15);
  border-color: var(--border-strong);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  background: rgba(245, 197, 24, 0.1);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Layout */
main {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(245, 197, 24, 0.03), transparent);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.9;
}

.section-head h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.gold-text {
  background: linear-gradient(135deg, #fff6c8, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.highlight {
  color: var(--gold-bright);
  font-weight: 900;
  text-shadow: 0 0 24px rgba(245, 197, 24, 0.5);
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-gold);
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(245, 197, 24, 0.12);
  color: var(--gold);
  border: 1px solid var(--border);
}

.badge-purple {
  background: rgba(167, 139, 250, 0.15);
  color: var(--purple);
  border-color: rgba(167, 139, 250, 0.35);
}

.badge-outline {
  background: transparent;
  color: var(--text-muted);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-shadow: 0 0 60px rgba(245, 197, 24, 0.35);
}

.hero-slogan {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 480px;
}

.ca-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 28px;
  max-width: 520px;
  box-shadow: 0 0 30px rgba(245, 197, 24, 0.12);
}

.ca-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ca-row code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.78rem;
  color: var(--gold-bright);
  word-break: break-all;
  flex: 1;
  min-width: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.bull-glow {
  position: absolute;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.35) 0%, transparent 70%);
  filter: blur(20px);
  animation: pulse-glow 3.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.bull-img {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  animation: bull-bob 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(245, 197, 24, 0.35));
}

@keyframes bull-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.float-chip {
  position: absolute;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(12, 10, 6, 0.85);
  border: 1px solid var(--border-strong);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-bright);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: chip-float 4s ease-in-out infinite;
}

.chip-1 {
  top: 12%;
  left: 0;
}

.chip-2 {
  bottom: 18%;
  right: 0;
  animation-delay: 1.2s;
  color: var(--purple);
  border-color: rgba(167, 139, 250, 0.4);
}

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-card {
  padding: 28px 24px;
  transition: transform 0.25s, border-color 0.25s;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.about-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--gold-bright);
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Fee cards */
.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.fee-card {
  position: relative;
  padding: 32px 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(14, 12, 8, 0.8);
  text-align: center;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.fee-card:hover {
  transform: translateY(-6px);
}

.fee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
}

.fee-gold::before {
  background: radial-gradient(circle at 50% 0%, var(--gold), transparent 70%);
}

.fee-fire::before {
  background: radial-gradient(circle at 50% 0%, var(--fire), transparent 70%);
}

.fee-blue::before {
  background: radial-gradient(circle at 50% 0%, var(--blue), transparent 70%);
}

.fee-gold:hover {
  box-shadow: 0 12px 40px rgba(245, 197, 24, 0.2);
  border-color: rgba(245, 197, 24, 0.5);
}

.fee-fire:hover {
  box-shadow: 0 12px 40px rgba(255, 90, 60, 0.2);
  border-color: rgba(255, 90, 60, 0.45);
}

.fee-blue:hover {
  box-shadow: 0 12px 40px rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.45);
}

.fee-pct {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.fee-gold .fee-pct { color: var(--gold-bright); }
.fee-fire .fee-pct { color: var(--fire); }
.fee-blue .fee-pct { color: var(--blue); }

.fee-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.fee-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.fee-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.mechanism-banner {
  overflow: hidden;
  padding: 0;
}

.mechanism-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Dividend */
.dividend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.dividend-card {
  padding: 32px 28px;
}

.dividend-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.dividend-badge.ok {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.dividend-badge.warn {
  background: rgba(251, 191, 36, 0.12);
  color: var(--gold-bright);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.dividend-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.dividend-card p {
  color: var(--text-muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.12), rgba(255, 107, 0, 0.08));
  border: 1px solid var(--border-strong);
}

.cta-band h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.cta-band p {
  color: var(--text-muted);
}

/* Contracts */
.contract-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.contract-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contract-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contract-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-strong);
}

.spcx-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  color: #1a1200;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
}

.contract-name {
  font-weight: 800;
  font-size: 1.1rem;
}

.contract-chain {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contract-addr {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.85rem;
  color: var(--gold-bright);
  word-break: break-all;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.contract-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Final CTA */
.final-cta {
  padding-top: 40px;
}

.final-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-gold);
}

.final-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.final-overlay {
  position: relative;
  z-index: 1;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.final-overlay h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.final-slogan {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 28px;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 0 48px;
  background: rgba(0, 0, 0, 0.4);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand .brand-logo {
  width: 36px;
  height: 36px;
}

.footer-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 520px;
  margin: 0 auto 12px;
}

.footer-copy {
  color: #666;
  font-size: 0.8rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1a1200;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 999px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.45);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .ca-box {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .badge-row {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    min-height: 300px;
  }

  .bull-img {
    width: min(100%, 300px);
  }

  .float-chip {
    font-size: 0.7rem;
    padding: 8px 12px;
  }

  .about-grid,
  .fee-grid {
    grid-template-columns: 1fr;
  }

  .dividend-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 24px);
  }

  .ca-row code {
    font-size: 0.7rem;
  }

  .fee-pct {
    font-size: 2.4rem;
  }
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
  gap: 2px;
}

.lang-switch-mobile {
  align-self: flex-start;
  margin-bottom: 4px;
}

.lang-btn {
  min-width: 36px;
  padding: 6px 10px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.lang-btn:hover {
  color: var(--gold-bright);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1a1200;
  box-shadow: 0 2px 12px rgba(245, 197, 24, 0.35);
}

/* Footer social links */
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.x-link:hover {
  border-color: rgba(245, 197, 24, 0.45);
  background: rgba(245, 197, 24, 0.08);
  color: var(--gold-bright);
}

.x-icon {
  flex-shrink: 0;
}

.dex-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* Footer QQ groups */
.footer-community {
  margin: 8px 0 20px;
}

.footer-community-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.qq-groups {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.qq-card {
  flex: 1 1 300px;
  max-width: 460px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(22, 18, 12, 0.72);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.qq-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.qq-card-banner {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  background: #f0f0f0;
}

.qq-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 0 4px 2px;
}

.qq-number-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.qq-number {
  color: var(--gold-bright);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-weight: 700;
}
