/* GTA VI Meme Coin — Official Rockstar VI styling */

:root {
  /* Official VI palette — rockstargames.com/VI */
  --pink: #ffb2c6;
  --pink-light: #ffc2d0;
  --coral: #efaa9c;
  --cyan: #8cdadd;
  --teal: #62b0c0;
  --purple: #988bd0;
  --orange: #f5c875;
  --yellow: #ffdf9e;
  --cream: #fefbf9;
  --dark: #111117;
  --dark-2: #0d0c1a;
  --dark-3: #1d1d23;
  --dark-4: #29292e;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.55);
  --gradient-vice: linear-gradient(135deg, var(--coral) 0%, var(--pink) 45%, var(--cyan) 100%);
  --gradient-sunset: linear-gradient(180deg, #1a1220 0%, #111117 55%, #0d0c1a 100%);
  --gradient-warm: linear-gradient(180deg, rgba(239, 170, 156, 0.18) 0%, rgba(255, 178, 198, 0.06) 35%, transparent 70%);
  --font-display: 'ArtDecoCondensedBold', 'ArtDecoCondensedBold Fallback', sans-serif;
  --font-body: 'ArtDecoBold', 'ArtDecoBold Fallback', serif;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: linear-gradient(165deg, #1a1220 0%, #14131f 30%, #111117 55%, #0f1424 80%, #12101c 100%);
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background layers — Leonida sunset atmosphere */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% -15%, rgba(239, 170, 156, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 75% 50% at 92% 18%, rgba(255, 178, 198, 0.12) 0%, transparent 52%),
    radial-gradient(ellipse 65% 45% at 8% 55%, rgba(140, 218, 221, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse 55% 40% at 72% 88%, rgba(152, 139, 208, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 80% 35% at 20% 95%, rgba(245, 200, 117, 0.06) 0%, transparent 50%);
  z-index: -4;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(239, 170, 156, 0.07) 0%, transparent 42%),
    linear-gradient(245deg, rgba(140, 218, 221, 0.06) 0%, transparent 48%),
    linear-gradient(15deg, rgba(152, 139, 208, 0.05) 0%, transparent 40%);
  z-index: -3;
  pointer-events: none;
}

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

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.015) 3px,
    rgba(0, 0, 0, 0.015) 4px
  );
  opacity: 0.25;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
}

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

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: var(--cream);
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  font-family: var(--font-body);
}

.gradient-text {
  background: linear-gradient(135deg, var(--coral) 0%, var(--pink) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(17, 17, 23, 0.92);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.logo-gta {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 0.12em;
  font-weight: 400;
}

.logo-vi {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 0.12em;
  font-weight: 400;
}

.logo-token {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--coral);
  margin-left: 10px;
  padding: 3px 8px;
  border: 1px solid rgba(239, 170, 156, 0.35);
  border-radius: 2px;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--glass);
}

.btn-nav {
  background: var(--cream) !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 2px !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn-primary {
  background: var(--cream);
  color: var(--dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  border-radius: 2px;
}

.btn-primary:hover {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35); }
  50% { box-shadow: 0 4px 32px rgba(239, 170, 156, 0.25), 0 0 48px rgba(140, 218, 221, 0.1); }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    var(--gradient-warm),
    linear-gradient(180deg, rgba(17, 17, 23, 0.35) 0%, rgba(17, 17, 23, 0.75) 55%, var(--dark) 100%),
    linear-gradient(90deg, rgba(17, 17, 23, 0.5) 0%, transparent 45%, rgba(17, 17, 23, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  max-width: 900px;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-1 3s infinite linear alternate-reverse;
  color: var(--coral);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
  animation: glitch-2 2s infinite linear alternate-reverse;
  color: var(--cyan);
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-3px, 1px); }
  94% { transform: translate(3px, -1px); }
  96% { transform: translate(-2px, 0); }
}

@keyframes glitch-2 {
  0%, 90%, 100% { transform: translate(0); }
  91% { transform: translate(2px, 1px); }
  93% { transform: translate(-2px, -1px); }
  95% { transform: translate(1px, 0); }
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 24px;
}

.title-line {
  display: block;
  font-size: clamp(3rem, 10vw, 6.5rem);
  letter-spacing: 0.06em;
  font-weight: 400;
  animation: title-reveal 1s ease-out both;
}

.title-line:nth-child(2) {
  animation-delay: 0.15s;
}

.title-accent {
  color: var(--cream);
  background: none;
  -webkit-text-fill-color: var(--cream);
}

@keyframes title-reveal {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.05rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  animation: title-reveal 1s ease-out 0.3s both;
}

.hero-subtitle strong {
  color: var(--text);
}

.hero-contract {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: title-reveal 1s ease-out 0.45s both;
}

.contract-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.hero-contract code {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--coral);
}

.copy-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.copy-btn:hover {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  animation: title-reveal 1s ease-out 0.6s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  animation: title-reveal 1s ease-out 0.75s both;
}

.stat {
  text-align: center;
  padding: 16px 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  min-width: 100px;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--coral), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Trailers */
.trailers {
  background: linear-gradient(180deg, rgba(17, 17, 23, 0.5) 0%, rgba(13, 12, 26, 0.35) 100%);
}

.trailer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.trailer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.trailer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.trailer-card .gta-player {
  border-radius: 0;
}

.trailer-info {
  padding: 20px 24px;
}

.trailer-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.trailer-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Character Clips — The Crew grid */
.characters {
  background:
    linear-gradient(180deg, rgba(26, 18, 32, 0.6) 0%, rgba(13, 12, 26, 0.4) 50%, rgba(17, 17, 23, 0.5) 100%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(239, 170, 156, 0.08) 0%, transparent 70%);
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.crew-card {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}

.crew-card--lead {
  grid-column: span 2;
}

.crew-card:hover,
.crew-card.is-playing {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(239, 170, 156, 0.4);
}

.crew-media {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: var(--dark-3);
}

.crew-card--lead .crew-media {
  height: 400px;
}

.crew-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.crew-card:hover .crew-media video,
.crew-card.is-playing .crew-media video {
  transform: scale(1.04);
}

.crew-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17, 17, 23, 0.85) 100%);
  pointer-events: none;
  transition: opacity 0.3s;
}

.crew-card:hover .crew-media::after,
.crew-card.is-playing .crew-media::after {
  opacity: 0.6;
}

.crew-play-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(17, 17, 23, 0.65);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s;
  z-index: 1;
}

.crew-card:hover .crew-play-hint,
.crew-card.is-playing .crew-play-hint {
  opacity: 0;
  transform: scale(0.9);
}

.crew-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--cream);
  padding: 14px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.crew-name::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-vice);
  transition: width 0.35s ease;
}

.crew-card:hover .crew-name::before,
.crew-card.is-playing .crew-name::before {
  width: 48px;
}

/* About */
.about {
  background: linear-gradient(180deg, rgba(13, 12, 26, 0.45) 0%, rgba(20, 16, 28, 0.4) 100%);
}

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

.about-image-stack {
  position: relative;
  height: 480px;
}

.stack-img {
  position: absolute;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.stack-1 {
  width: 70%;
  height: 75%;
  top: 0;
  left: 0;
  z-index: 3;
  animation: float-1 6s ease-in-out infinite;
}

.stack-2 {
  width: 55%;
  height: 60%;
  top: 20%;
  right: 0;
  z-index: 2;
  animation: float-2 7s ease-in-out infinite;
}

.stack-3 {
  width: 50%;
  height: 45%;
  bottom: 0;
  left: 25%;
  z-index: 1;
  animation: float-3 8s ease-in-out infinite;
}

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

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

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

.floating-badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--dark);
  padding: 12px 20px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  animation: badge-pulse 3s ease-in-out infinite;
}

.badge-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(78%) sepia(18%) saturate(900%) hue-rotate(152deg) brightness(95%) contrast(92%);
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.about-content .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-content .lead strong {
  color: var(--coral);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-list li {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-list li:hover {
  border-color: rgba(239, 170, 156, 0.3);
  transform: translateX(8px);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

/* Themed icons — Vice City gradient */
.site-icon {
  display: block;
  width: 28px;
  height: 28px;
  background: var(--gradient-vice);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.site-icon--community {
  -webkit-mask-image: url('assets/icons/community.svg');
  mask-image: url('assets/icons/community.svg');
}

.site-icon--city {
  -webkit-mask-image: url('assets/icons/palm-city.svg');
  mask-image: url('assets/icons/palm-city.svg');
}

.site-icon--tax {
  -webkit-mask-image: url('assets/icons/no-tax.svg');
  mask-image: url('assets/icons/no-tax.svg');
}

.site-icon--token {
  -webkit-mask-image: url('assets/icons/token.svg');
  mask-image: url('assets/icons/token.svg');
}

.site-icon--eth {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-mask-image: url('assets/icons/eth-diamond.svg');
  mask-image: url('assets/icons/eth-diamond.svg');
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-icon .site-icon {
  width: 40px;
  height: 40px;
}

.step-icon img.icon-brand {
  filter: saturate(1.15) brightness(1.05);
}

.step-icon img.icon-ethereum {
  filter: brightness(0) saturate(100%) invert(78%) sepia(18%) saturate(900%) hue-rotate(152deg) brightness(95%) contrast(92%);
}

.step-icon img.icon-uniswap {
  filter: saturate(1.2) hue-rotate(-8deg) brightness(1.08);
}

.step-icon img.icon-metamask {
  filter: saturate(1.1) brightness(1.05);
}

.step-icon img.icon-token {
  width: 70%;
  height: 70%;
}

.feature-list h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-list p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Gallery */
.gallery {
  background: linear-gradient(180deg, rgba(13, 12, 26, 0.4) 0%, rgba(17, 17, 23, 0.45) 100%);
  overflow: hidden;
}

.gallery-marquee {
  overflow: hidden;
  margin-bottom: 16px;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.gallery-marquee.reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 45s;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-track img {
  height: 180px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--glass-border);
  transition: transform 0.3s;
}

.marquee-track img:hover {
  transform: scale(1.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 40px rgba(239, 170, 156, 0.2);
  z-index: 1;
}

/* How to Buy */
.howtobuy {
  background: linear-gradient(180deg, rgba(29, 29, 35, 0.5) 0%, rgba(17, 17, 23, 0.4) 100%);
  position: relative;
}

.howtobuy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155, 48, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.step-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-vice);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 170, 156, 0.3);
  box-shadow: 0 16px 50px rgba(239, 170, 156, 0.1);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  background: var(--gradient-vice);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  position: absolute;
  top: 12px;
  right: 16px;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 12px;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-card a {
  color: var(--cyan);
  text-decoration: none;
}

.step-card a:hover {
  text-decoration: underline;
}

.buy-cta {
  text-align: center;
}

/* Chart */
.chart {
  background: linear-gradient(180deg, rgba(17, 17, 23, 0.45) 0%, rgba(15, 20, 36, 0.4) 100%);
}

.chart-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--dark-2);
}

.chart-glow {
  position: absolute;
  inset: -2px;
  background: var(--gradient-vice);
  border-radius: 18px;
  z-index: -1;
  opacity: 0.3;
  filter: blur(20px);
}

.chart-wrapper iframe {
  width: 100%;
  height: 500px;
  display: block;
  border: none;
}

.chart-actions {
  text-align: center;
  margin-top: 24px;
}

/* Join Us */
.joinus {
  background: linear-gradient(180deg, rgba(17, 17, 23, 0.4) 0%, rgba(13, 12, 26, 0.5) 100%);
}

.joinus-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.joinus-bg {
  position: absolute;
  inset: 0;
  background:
    url('assets/images/joinus-bg.jpg') center/cover no-repeat,
    var(--gradient-sunset);
  opacity: 0.3;
}

.joinus-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 23, 0.92) 0%, rgba(13, 12, 26, 0.88) 100%);
}

.joinus-content {
  position: relative;
  z-index: 1;
  padding: 60px 40px;
  text-align: center;
}

.joinus-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.joinus-content > p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
}

.social-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  text-decoration: none;
  color: var(--cream);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.social-card:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.social-card--x:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.social-card--uniswap:hover {
  border-color: rgba(239, 170, 156, 0.55);
  box-shadow: 0 8px 32px rgba(239, 170, 156, 0.15);
}

.social-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-card-icon--x {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.social-card-icon--uniswap {
  background: rgba(239, 170, 156, 0.12);
  padding: 8px;
}

.social-card-icon--uniswap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.social-card-text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-card-text small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.social-card-arrow {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--coral);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-card:hover .social-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--glass-border);
  background: linear-gradient(180deg, rgba(17, 17, 23, 0.6) 0%, rgba(10, 9, 18, 0.8) 100%);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--coral);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--cream);
  color: var(--dark);
  padding: 12px 24px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10000;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .crew-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .crew-card--lead {
    grid-column: span 1;
  }

  .crew-media,
  .crew-card--lead .crew-media {
    height: 340px;
  }
}

@media (max-width: 520px) {
  .crew-grid {
    gap: 14px;
  }

  .crew-media,
  .crew-card--lead .crew-media {
    height: 280px;
  }

  .crew-name {
    font-size: 0.85rem;
    padding: 12px 8px;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-stack {
    height: 360px;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .joinus-content {
    padding: 40px 24px;
  }

  .chart-wrapper iframe {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 12px;
  }

  .stat {
    padding: 12px 16px;
    min-width: 80px;
  }

  .stat-value {
    font-size: 1.4rem;
  }
}
