/* Trump UFC — Freedom 250 / White House Octagon */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --navy: #0a1628;
  --navy-deep: #050d1a;
  --red: #c8102e;
  --red-bright: #ff1a3d;
  --blue: #1e3a8a;
  --blue-electric: #3b82f6;
  --gold: #d4af37;
  --gold-light: #f5d76e;
  --white: #f8fafc;
  --silver: #94a3b8;
  --octagon: 12px;
  --glow-red: 0 0 30px rgba(200, 16, 46, 0.6);
  --glow-gold: 0 0 40px rgba(212, 175, 55, 0.5);
  --glow-blue: 0 0 35px rgba(59, 130, 246, 0.4);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Background layers ── */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(30, 58, 138, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(200, 16, 46, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
}

.bg-stars {
  position: fixed;
  inset: 0;
  z-index: -9;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 15%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 45%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 15% 85%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 90%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 35%, rgba(255,255,255,0.7) 0%, transparent 100%);
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.bg-cage {
  position: fixed;
  inset: 0;
  z-index: -8;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.5) 39px, rgba(255,255,255,0.5) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.5) 39px, rgba(255,255,255,0.5) 40px);
  pointer-events: none;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -7;
  pointer-events: none;
}

/* ── Spotlight sweeps ── */
.spotlight {
  position: fixed;
  top: -20%;
  width: 200px;
  height: 120vh;
  background: linear-gradient(180deg, rgba(59,130,246,0.12) 0%, transparent 70%);
  transform-origin: top center;
  z-index: -6;
  pointer-events: none;
  filter: blur(2px);
}

.spotlight-1 { left: 15%; animation: sweep 12s ease-in-out infinite; }
.spotlight-2 { right: 20%; animation: sweep 15s ease-in-out infinite reverse; animation-delay: -4s; }

@keyframes sweep {
  0%, 100% { transform: rotate(-8deg); opacity: 0.5; }
  50% { transform: rotate(8deg); opacity: 0.9; }
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 13, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5), var(--glow-gold);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  box-shadow: var(--glow-gold);
  animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(212,175,55,0.4); }
  50% { box-shadow: 0 0 30px rgba(212,175,55,0.8), 0 0 60px rgba(200,16,46,0.3); }
}

.nav-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--red-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 70%;
}

.nav-cta {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  color: white;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--glow-red);
  transition: transform 0.2s, box-shadow 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(200,16,46,0.8);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Section shared ── */
section {
  padding: 6rem 2rem;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-tag img {
  width: 20px;
  height: 20px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.section-title .gold { color: var(--gold-light); text-shadow: var(--glow-gold); }
.section-title .red { color: var(--red-bright); text-shadow: var(--glow-red); }

.octagon-frame {
  position: relative;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold), var(--red), var(--blue-electric), var(--gold));
  background-size: 300% 300%;
  animation: border-flow 6s ease infinite;
  clip-path: polygon(8% 0%, 92% 0%, 100% 8%, 100% 92%, 92% 100%, 8% 100%, 0% 92%, 0% 8%);
}

@keyframes border-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.octagon-inner {
  background: rgba(10, 22, 40, 0.95);
  clip-path: polygon(8% 0%, 92% 0%, 100% 8%, 100% 92%, 92% 100%, 8% 100%, 0% 92%, 0% 8%);
  padding: 2.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 7rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,13,26,0.08) 0%, rgba(5,13,26,0.2) 30%, rgba(5,13,26,0.65) 65%, rgba(5,13,26,0.95) 100%),
    radial-gradient(ellipse 90% 50% at 50% 10%, transparent 0%, rgba(5,13,26,0.35) 100%);
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.65;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(30,58,138,0.25) 0%, transparent 55%),
    url('../logo.png') top center / cover no-repeat;
  opacity: 0.5;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  width: 100%;
  max-width: 1180px;
  position: relative;
  z-index: 2;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0.5rem;
}

.hero-body {
  text-align: left;
  padding-bottom: 0.25rem;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

.octagon-ring {
  position: absolute;
  inset: -18px;
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, var(--gold), var(--red), var(--blue-electric), var(--gold)) 1;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  animation: ring-spin 20s linear infinite;
  opacity: 0.7;
}

@keyframes ring-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-logo {
  width: clamp(160px, 20vw, 280px);
  height: clamp(160px, 20vw, 280px);
  border-radius: 50%;
  border: 4px solid var(--gold);
  object-fit: cover;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 60px rgba(212,175,55,0.5), 0 0 120px rgba(200,16,46,0.2);
  animation: hero-float 4s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,16,46,0.2);
  border: 1px solid rgba(200,16,46,0.5);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: badge-glow 2s ease-in-out infinite alternate;
}

@keyframes badge-glow {
  from { box-shadow: 0 0 10px rgba(200,16,46,0.3); }
  to { box-shadow: 0 0 25px rgba(200,16,46,0.6); }
}

.hero-badge img { width: 18px; height: 18px; }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 0.5rem;
}

.hero h1 .line1 {
  display: block;
  background: linear-gradient(180deg, #e8e8e8 0%, #a0a0a0 50%, #d4d4d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

.hero h1 .line2 {
  display: block;
  color: var(--red-bright);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.5), var(--glow-red);
  font-style: italic;
  animation: ufc-pulse 2.5s ease-in-out infinite;
}

@keyframes ufc-pulse {
  0%, 100% { text-shadow: 3px 3px 0 rgba(0,0,0,0.5), 0 0 20px rgba(255,26,61,0.4); }
  50% { text-shadow: 3px 3px 0 rgba(0,0,0,0.5), 0 0 50px rgba(255,26,61,0.9), 0 0 80px rgba(212,175,55,0.3); }
}

.hero-sub {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.hero-bio {
  font-size: 1.1rem;
  color: var(--silver);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn img, .btn svg-icon {
  width: 22px;
  height: 22px;
}

.icon-dex {
  width: 20px;
  height: auto;
  object-fit: contain;
}

.btn-primary .icon-dex {
  filter: brightness(0) invert(1);
}

.btn-gold .icon-dex {
  filter: brightness(0) saturate(100%);
}

.icon-dex-lg {
  width: 32px;
  height: auto;
  object-fit: contain;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  color: white;
  box-shadow: var(--glow-red);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 40px rgba(200,16,46,0.7);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep);
  box-shadow: var(--glow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 40px rgba(212,175,55,0.6);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: var(--glow-gold);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: flex-start;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.stat-value img { width: 28px; height: 28px; }

.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
}

/* Floating emojis in hero */
.float-emoji {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.7;
  animation: float-drift 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
}

.float-emoji:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.float-emoji:nth-child(2) { top: 25%; right: 10%; animation-delay: -2s; width: 50px; height: 50px; }
.float-emoji:nth-child(3) { bottom: 30%; left: 12%; animation-delay: -4s; }
.float-emoji:nth-child(4) { bottom: 20%; right: 8%; animation-delay: -1s; width: 35px; height: 35px; }
.float-emoji:nth-child(5) { top: 40%; left: 5%; animation-delay: -3s; width: 32px; height: 32px; }
.float-emoji:nth-child(6) { top: 50%; right: 5%; animation-delay: -5s; }

@keyframes float-drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

/* ── About ── */
.about {
  background: linear-gradient(180deg, transparent 0%, rgba(30,58,138,0.08) 50%, transparent 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--silver);
  margin-bottom: 1.25rem;
}

.about-text .highlight {
  color: var(--gold-light);
  font-weight: 600;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
  background: rgba(212,175,55,0.05);
}

.feature-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--silver);
}

.ko-banner {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, rgba(200,16,46,0.2), rgba(212,175,55,0.1), rgba(200,16,46,0.2));
  border-left: 4px solid var(--red);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  animation: ko-flash 3s ease-in-out infinite;
}

@keyframes ko-flash {
  0%, 90%, 100% { opacity: 1; }
  95% { opacity: 0.5; color: var(--red-bright); }
}

/* ── How to Buy ── */
.howtobuy {
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.step {
  position: relative;
  text-align: center;
  padding: 2rem 1.25rem;
  background: rgba(10,22,40,0.8);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 16px;
  transition: all 0.4s;
}

.step:hover {
  border-color: var(--blue-electric);
  box-shadow: var(--glow-blue);
  transform: translateY(-8px);
}

.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  box-shadow: var(--glow-red);
}

.step img {
  width: 56px;
  height: 56px;
  margin: 1rem auto 1rem;
  display: block;
}

.step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--silver);
}

.buy-cta-wrap {
  text-align: center;
  margin-top: 3rem;
}

.buy-cta-wrap .btn {
  font-size: 1.15rem;
  padding: 1.1rem 2.5rem;
}

.buy-cta-wrap .btn img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

/* ── Chart ── */
.chart-section {
  background: linear-gradient(180deg, transparent 0%, rgba(0,192,118,0.05) 50%, transparent 100%);
}

.chart-wrap {
  margin-top: 2rem;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(0,192,118,0.3);
  box-shadow: 0 0 40px rgba(0,192,118,0.15);
}

#dexscreener-embed {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
}

@media (min-width: 1400px) {
  #dexscreener-embed { padding-bottom: 65%; }
}

#dexscreener-embed iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.chart-header img {
  width: auto;
  height: 36px;
  object-fit: contain;
}

.section-tag .icon-dex {
  width: 20px;
  height: auto;
  filter: none;
}

.social-card .icon-dex-lg {
  width: 48px;
  height: auto;
}

/* ── Join Us ── */
.joinus {
  padding-bottom: 4rem;
}

.joinus-banner-wrap {
  position: relative;
  margin-bottom: 3rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-red);
}

.joinus-banner-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,13,26,0.9) 100%);
  z-index: 1;
}

.joinus-banner {
  width: 100%;
  display: block;
  animation: banner-shine 8s ease-in-out infinite;
}

@keyframes banner-shine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.1); }
}

.joinus-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: -8rem;
  padding: 0 2rem;
}

.joinus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(10,22,40,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.4s;
}

.social-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

.social-card img {
  width: 48px;
  height: 48px;
}

.social-card.x-card img {
  filter: invert(1);
}

.social-card h3 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-card p {
  font-size: 0.9rem;
  color: var(--silver);
}

.contract-box {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(0,0,0,0.4);
  border: 1px dashed rgba(212,175,55,0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contract-label {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.contract-address {
  font-family: 'Rajdhani', monospace;
  font-size: 1rem;
  color: var(--silver);
  word-break: break-all;
}

.copy-btn {
  background: rgba(212,175,55,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.copy-btn:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ── Section rope dividers ── */
.rope-divider {
  height: 6px;
  margin: 0 auto;
  max-width: 600px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px, var(--red) 30px,
    var(--white) 30px, var(--white) 60px,
    var(--blue) 60px, var(--blue) 90px
  );
  opacity: 0.6;
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(200,16,46,0.3);
  animation: rope-shimmer 4s linear infinite;
}

@keyframes rope-shimmer {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
  100% { filter: brightness(1); }
}

/* ── Footer ── */
.footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.3);
}

.footer p {
  font-size: 0.85rem;
  color: var(--silver);
}

.footer .motto {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    align-items: flex-end;
    padding: 6.5rem 1.5rem 2.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .hero-visual {
    order: -1;
    padding-bottom: 0;
  }

  .hero-body {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.25rem 1.5rem;
  }

  .hero-bio {
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5,13,26,0.98);
    padding: 1rem;
    border-bottom: 1px solid rgba(212,175,55,0.2);
  }

  .nav-links.open { display: flex; }

  .nav-toggle { display: block; }

  .nav-cta { display: none; }

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

  .about-features { grid-template-columns: 1fr; }

  .hero-stats { gap: 1.5rem; }

  section { padding: 4rem 1.25rem; }

  .joinus-content { margin-top: -4rem; }
}
