/* #social / #designer replacement section */
.social-section-rec {
  position: relative;
  z-index: 5;
}

.social-section {
  --bg: #8bc400;
  --ink: #27360d;
  --ink-soft: #3a4d14;
  --panel: #9ad10a;
  --line: rgba(39, 54, 13, 0.2);
  --accent: #c73125;
  position: relative;
  z-index: 5;
  width: 100%;
  min-height: auto;
  padding: 56px 20px 48px;
  box-sizing: border-box;
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 10px 10px;
  color: var(--ink);
  font-family: 'Press Start 2P', monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.social-section__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border: 4px solid var(--ink);
  background: var(--bg);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  margin-top: 8px;
}

.social-section__x:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.social-section__x:hover svg {
  fill: var(--bg);
}

.social-section__x svg {
  width: 34px;
  height: 34px;
  fill: var(--ink);
}

.social-section__label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Temporarily hide DexScreener stats + chart — X logo only */
.social-section__label,
.social-section__stats,
.social-section__chart,
.social-section__hint {
  display: none !important;
}

.social-section {
  min-height: 60vh;
  justify-content: center;
}

.social-section__stats {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.social-stat {
  border: 3px solid var(--ink);
  background: rgba(139, 196, 0, 0.55);
  padding: 14px 12px;
  min-height: 78px;
}

.social-stat__k {
  display: block;
  font-size: 9px;
  color: var(--ink-soft);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.social-stat__v {
  display: block;
  font-size: 14px;
  color: var(--ink);
  word-break: break-word;
}

.social-stat__v.is-placeholder {
  opacity: 0.45;
}

.social-section__chart {
  width: min(1100px, 100%);
  border: 4px solid var(--ink);
  background: #0f1606;
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.social-section__chart-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
  min-height: 420px;
}

.social-section__chart-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.social-section__chart-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  color: #8bc400;
  background:
    radial-gradient(circle at 50% 40%, rgba(139, 196, 0, 0.12), transparent 55%),
    #121a08;
}

.social-section__chart-placeholder strong {
  font-size: 14px;
  color: #b6e23a;
}

.social-section__chart-placeholder p {
  margin: 0;
  max-width: 420px;
  font-size: 10px;
  line-height: 1.7;
  color: #6f9a14;
}

.social-section__chart-placeholder code {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: #9ad10a;
  word-break: break-all;
}

.social-section__hint {
  margin: 0;
  font-size: 9px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-align: center;
  max-width: 640px;
}

@media (max-width: 900px) {
  .social-section__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-section__chart-frame {
    padding-bottom: 110%;
  }
}

@media (max-width: 520px) {
  .social-section {
    padding-top: 32px;
  }
  .social-section__x {
    width: 60px;
    height: 60px;
  }
  .social-section__stats {
    grid-template-columns: 1fr 1fr;
  }
  .social-stat__v {
    font-size: 12px;
  }
}
