/* $BLING – IT PAYS WELL – Glossy Black Rich */

:root {
  --font-serif: "Libre Baskerville", Georgia, "Times New Roman", Times, serif;
  --bg-black: #0a0a0a;
  --bg-dark: #111111;
  --bg-darker: #080808;
  --white: #ffffff;
  --white-soft: #f5f5f5;
  --white-glow: rgba(255, 255, 255, 0.95);
  --accent-teal: #14b8a6;
  --accent-teal-glow: rgba(20, 184, 166, 0.4);
  --text-dark: #e5e5e5;
  --text-muted: #a3a3a3;
  --text-muted-dark: #737373;
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-dark: rgba(0, 0, 0, 0.3);
  --border-glow: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px rgba(255, 255, 255, 0.15), 0 0 120px rgba(20, 184, 166, 0.08);
  --shadow-glow-dark: 0 0 30px rgba(255, 255, 255, 0.08), 0 0 60px rgba(20, 184, 166, 0.1);
  --glare: 0 0 80px rgba(255, 255, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  --glossy: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.02) 100%);
  --glossy-strong: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  --radius-lg: 24px;
  --transition-fast: 0.2s ease-out;
  --transition-med: 0.35s ease-out;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  background: var(--bg-black);
  color: var(--text-dark);
  font-family: var(--font-serif);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(20, 184, 166, 0.08), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(20, 184, 166, 0.05), transparent 60%);
  z-index: -3;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: -200px 0 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 0),
    radial-gradient(circle, rgba(20, 184, 166, 0.05) 1px, transparent 0);
  background-size: 140px 200px, 180px 260px;
  background-position: 0 0, 90px 70px;
  animation: moneyRain 25s linear infinite;
  opacity: 0.6;
  z-index: -2;
}

@keyframes moneyRain {
  from { transform: translateY(-100px); }
  to { transform: translateY(100px); }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

section {
  position: relative;
  padding: 80px 5vw;
}

@media (min-width: 1200px) {
  section {
    padding-inline: 12vw;
  }
}

.max-width {
  max-width: 1180px;
  margin: 0 auto;
}

/* HERO â€“ Clean, Centered, Lambo Background */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero.png"), linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
  background-size: cover, 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-logo {
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.7), 0 0 160px rgba(255, 255, 255, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.5));
  margin: 0;
  font-family: var(--font-serif);
}

.hero-tagline {
  margin-top: 12px;
  font-size: clamp(1.1rem, 2.8vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.98;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
  font-family: var(--font-serif);
}

.hero-timer {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-timer .time-block {
  min-width: 90px;
}

.hero-timer .time-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.countdown-launched {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid var(--border-glow);
  background: var(--glossy-strong), linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font-serif);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--glare), 0 0 30px var(--accent-teal-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.countdown-launched:hover {
  transform: translateY(-2px);
  box-shadow: var(--glare), 0 0 40px var(--accent-teal-glow);
}

/* LAUNCH SECTION â€“ Countdown to launch */
.launch-section {
  padding: 70px 5vw;
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
}

.launch-inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.launch-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 12px 20px;
}

.launch-label {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-serif);
}

.launch-date {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.24em;
  color: var(--white);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  font-family: var(--font-serif);
}

.countdown-timer {
  display: flex;
  gap: 16px;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.time-block {
  min-width: 80px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--card-bg), var(--card-dark));
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-glow-dark), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.time-flip {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  padding: 12px 12px 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  color: var(--white);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.time-label {
  text-align: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 0 8px;
  color: var(--text-muted-dark);
  background: rgba(0, 0, 0, 0.3);
  font-family: var(--font-serif);
}

.btn-primary {
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-serif);
  border: 1px solid var(--border-glow);
  background: var(--glossy-strong), linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--glare), 0 0 30px var(--accent-teal-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--glare), 0 0 40px var(--accent-teal-glow), 0 8px 30px rgba(0, 0, 0, 0.5);
  background: var(--glossy-strong), linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
}

/* Section title styling */
.section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 3.3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-family: var(--font-serif);
}

.section-sub {
  color: var(--text-muted);
  max-width: 620px;
  font-size: 0.95rem;
  margin-bottom: 28px;
  font-family: var(--font-serif);
}

.section-sub-center {
  margin-inline: auto;
  text-align: center;
}

/* Scroll reveal + smooth section transitions */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  transition: opacity 0.5s ease-out;
}

/* SECTION â€“ WHAT IS $BLING */
#what, #utility {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-black) 40%, var(--bg-darker) 100%);
}

.what-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .what-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.what-points {
  list-style: none;
  display: grid;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.what-points li::before {
  content: "";
  margin-right: 8px;
  color: var(--text-dark);
}

.what-highlight {
  color: var(--text-dark);
  font-weight: 700;
}

.what-bg {
  position: relative;
  border-radius: 28px;
  padding: 22px 22px 20px;
  border: 1px solid var(--border-glow);
  background: var(--glossy-strong), linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  overflow: hidden;
  box-shadow: var(--glare), 0 0 40px rgba(20, 184, 166, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.what-bg::after {
  content: "";
  position: absolute;
  inset: -30%;
  background-image: repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 12px);
  mix-blend-mode: overlay;
  opacity: 0.6;
  animation: moneySlide 24s linear infinite;
}

@keyframes moneySlide {
  from { transform: translate3d(0, 0, 0) rotate(2deg); }
  to { transform: translate3d(-120px, -60px, 0) rotate(2deg); }
}

.what-bg-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.what-bg-main {
  position: relative;
  z-index: 1;
}

.what-bg-copy {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.badge-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.badge-label {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glow);
  color: var(--text-muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.badge-label:nth-child(2) {
  border-color: rgba(20, 184, 166, 0.5);
  color: var(--accent-teal);
  box-shadow: 0 0 20px var(--accent-teal-glow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* SECTION â€“ LORE (Timeline) */
.lore {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-black) 50%, var(--bg-dark) 100%);
}

.lore-container {
  min-height: 40vh;
}

.lore-item[data-lore] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lore-item[data-lore].visible,
.lore-item.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline {
  position: relative;
  margin-top: 24px;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-teal), rgba(255, 255, 255, 0.05));
  box-shadow: 0 0 20px var(--accent-teal-glow);
  opacity: 0.9;
}

.timeline-item {
  position: relative;
  margin-bottom: 26px;
  padding-left: 18px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -1px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--glossy-strong), linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  box-shadow: var(--glare), 0 0 20px var(--accent-teal-glow), 0 0 0 1px var(--border-glow);
}

.timeline-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.timeline-text {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.timeline-first .timeline-text {
  font-style: italic;
  color: var(--text-muted);
}

.lore-visuals {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.lore-card {
  position: relative;
  border-radius: 22px;
  padding: 16px 16px 18px;
  background: var(--glossy-strong), linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--border-glow);
  box-shadow: var(--glare), 0 0 30px rgba(20, 184, 166, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.lore-card::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 0 0, rgba(20, 184, 166, 0.1), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.08), transparent 50%);
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.lore-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-teal);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.lore-main {
  font-size: 0.92rem;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

/* SECTION 4 â€” UTILITY */
.utility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.utility-card {
  position: relative;
  border-radius: 22px;
  padding: 18px 18px 20px;
  background: var(--glossy-strong), linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--border-glow);
  box-shadow: var(--glare), 0 0 40px rgba(20, 184, 166, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.utility-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med), transform var(--transition-med);
  transform: translate3d(-30px, -20px, 0);
}

.utility-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--glare), 0 0 50px var(--accent-teal-glow), 0 12px 40px rgba(0, 0, 0, 0.5);
}

.utility-card:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.utility-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--glossy-strong), linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  box-shadow: var(--glare), 0 0 20px rgba(20, 184, 166, 0.2), 0 0 0 1px var(--border-glow);
  margin-bottom: 10px;
}

.utility-title {
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.utility-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.utility-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  opacity: 0;
  mix-blend-mode: overlay;
  transform: translateX(-120%);
  animation: shimmer 4.6s linear infinite;
  pointer-events: none;
}

.utility-card:nth-child(2) .utility-shimmer { animation-delay: 1.1s; }
.utility-card:nth-child(3) .utility-shimmer { animation-delay: 2s; }
.utility-card:nth-child(4) .utility-shimmer { animation-delay: 3.1s; }

@keyframes shimmer {
  0% { opacity: 0; transform: translateX(-120%); }
  18% { opacity: 0.8; }
  28% { opacity: 0; transform: translateX(120%); }
  100% { opacity: 0; transform: translateX(120%); }
}

/* SECTION â€“ WHITEPAPER / DEEP DIVE */
.whitepaper-section {
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
}

.deep-dive-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .deep-dive-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .whitepaper-icon-link {
    order: -1;
  }
}

.whitepaper-article {
  text-align: left;
}

.whitepaper-body {
  margin-bottom: 18px;
}

.whitepaper-body:last-of-type {
  margin-bottom: 0;
}

.whitepaper-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.whitepaper-icon-wrap {
  width: 220px;
  height: 220px;
  border-radius: 28px;
  border: 1px solid var(--border-glow);
  background: var(--glossy-strong), linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  box-shadow: var(--glare), 0 0 50px var(--accent-teal-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.whitepaper-icon-link:hover .whitepaper-icon-wrap {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--glare), 0 0 60px var(--accent-teal-glow), 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.whitepaper-icon-wrap i {
  font-size: 5rem;
  opacity: 0.95;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.whitepaper-icon-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
}

/* SECTION â€“ RAIDERS */
.raiders-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 50%, var(--bg-black) 100%);
}

.raiders-copy {
  margin-bottom: 20px;
}

.raiders-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-telegram,
.btn-google-form {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(44, 168, 226, 0.5);
  background: var(--glossy-strong), linear-gradient(145deg, rgba(44, 168, 226, 0.2), rgba(44, 168, 226, 0.08));
  color: #7dd3fc;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-serif);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  box-shadow: 0 0 30px rgba(44, 168, 226, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-telegram i,
.btn-google-form i {
  font-size: 1.4rem;
}

.btn-google-form {
  border-color: rgba(66, 133, 244, 0.5);
  background: var(--glossy-strong), linear-gradient(145deg, rgba(66, 133, 244, 0.2), rgba(66, 133, 244, 0.08));
  color: #93c5fd;
}

.btn-google-form:hover {
  transform: translateY(-2px);
  background: var(--glossy-strong), linear-gradient(145deg, rgba(66, 133, 244, 0.25), rgba(66, 133, 244, 0.12));
  box-shadow: var(--glare), 0 0 40px rgba(66, 133, 244, 0.35), 0 8px 30px rgba(0, 0, 0, 0.5);
}

.btn-telegram:hover {
  transform: translateY(-2px);
  background: var(--glossy-strong), linear-gradient(145deg, rgba(44, 168, 226, 0.25), rgba(44, 168, 226, 0.12));
  box-shadow: var(--glare), 0 0 40px rgba(44, 168, 226, 0.35), 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* SECTION â€“ SOCIAL HUB (Emphasized, bigger, glowing) */
.social-hub {
  text-align: center;
  padding: 120px 5vw;
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
}

@media (min-width: 1200px) {
  .social-hub {
    padding-inline: 12vw;
  }
}

.social-hub .section-title {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  letter-spacing: 0.1em;
}

.social-grid {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.social-icon {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--white);
  box-shadow: var(--glare), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  background: var(--glossy-strong), linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.social-hover-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(0, 0, 0, 0.85);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-glow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 10;
}

.social-icon:hover .social-hover-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-12px);
}

.social-icon.twitter {
  border-color: rgba(29, 161, 242, 0.5);
  box-shadow: 0 0 50px rgba(29, 161, 242, 0.35), 0 0 100px rgba(29, 161, 242, 0.15), var(--glare);
}

.social-icon.telegram {
  border-color: rgba(44, 168, 226, 0.5);
  box-shadow: 0 0 50px rgba(44, 168, 226, 0.35), 0 0 100px rgba(44, 168, 226, 0.15), var(--glare);
}

.social-icon.whitepaper {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1), var(--glare);
}

.social-icon.twitch {
  border-color: rgba(145, 70, 255, 0.5);
  box-shadow: 0 0 50px rgba(145, 70, 255, 0.35), 0 0 100px rgba(145, 70, 255, 0.15), var(--glare);
}

.social-icon.shill {
  cursor: default;
  border-color: rgba(20, 184, 166, 0.5);
  box-shadow: 0 0 50px rgba(20, 184, 166, 0.25), 0 0 100px rgba(20, 184, 166, 0.1), var(--glare);
}

.social-icon.shill:hover {
  cursor: default;
}

.social-icon.shill .social-hover-label {
  white-space: normal;
  max-width: 220px;
  text-align: center;
}

.social-icon:hover {
  transform: translateY(-10px) scale(1.1);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: var(--glare), 0 0 60px rgba(255, 255, 255, 0.15), 0 16px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-handle {
  margin-top: 28px;
  font-size: 1rem;
  color: var(--text-muted);
}

.social-handle span {
  color: var(--accent-teal);
  font-weight: 700;
  text-shadow: 0 0 20px var(--accent-teal-glow);
}

/* SECTION â€“ CTA */
.cta {
  text-align: center;
  padding-block: 90px;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-black) 50%, var(--bg-dark) 100%);
}

.cta-banner {
  position: relative;
  display: inline-block;
  padding: 18px 28px;
  border-radius: 999px;
  border: 1px solid var(--border-glow);
  background: var(--glossy-strong), linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  box-shadow: var(--glare), 0 0 50px var(--accent-teal-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
}

.cta-banner-text {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-serif);
  color: var(--white);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.cta-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.cta-btn {
  position: relative;
  z-index: 1;
}

/* SECTION â€“ FOOTER */
footer {
  padding: 26px 5vw 30px;
  background: linear-gradient(180deg, var(--bg-darker) 0%, #050505 100%);
  font-size: 0.76rem;
  color: var(--text-muted);
}

@media (min-width: 1200px) {
  footer {
    padding-inline: 12vw;
  }
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.footer-disclaimer {
  margin-top: 4px;
  color: var(--text-muted);
}

.footer-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--glossy-strong), linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: var(--glare), 0 0 20px var(--accent-teal-glow), 0 0 0 1px var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  animation: footerSpin 14s linear infinite;
}

@keyframes footerSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.footer-right {
  text-align: right;
  max-width: 360px;
}

.sparkle-strip {
  width: 100%;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
  box-shadow: 0 0 20px var(--accent-teal-glow);
  opacity: 0.6;
}

@media (max-width: 600px) {
  .cta-banner-text {
    white-space: normal;
  }
  .social-icon {
    width: 76px;
    height: 76px;
    font-size: 2rem;
  }
}
