/* ============================================
   REVÉRSÉ SOCIETY HUB — Design System
   Ultra-premium dark chrome aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --black: #000000;
  --black-rich: #020202;
  --dark-panel: #050505;
  --dark-card: rgba(15, 15, 20, 0.6);
  --dark-border: rgba(255, 255, 255, 0.05);
  --dark-border-light: rgba(255, 255, 255, 0.1);
  --chrome-dark: #52525b;
  --chrome-mid: #a1a1aa;
  --chrome-light: #ffffff;
  --chrome-bright: #ffffff;
  --chrome-white: #ffffff;
  --accent-glow: rgba(124, 58, 237, 0.15);
  --accent-glow-strong: rgba(124, 58, 237, 0.3);
  --neon-purple: #7C3AED;
  --neon-indigo: #6366F1;
  --danger: #ef4444;
  --success: #10b981;
  --font-primary: 'Outfit', -apple-system, 'Segoe UI', sans-serif;
  --nav-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #000000;
  color-scheme: dark;
  min-height: 100%;
  min-height: 100dvh;
}

body {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #000000;
  background-attachment: fixed;
  font-family: var(--font-primary);
  color: #a0a0a0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

/* Canvas Animation Background */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
}

#sparkle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* --- Ambient Global Glows --- */
.ambient-glow {
  display: none;
}

.ambient-glow-1 {
  width: 60vw;
  height: 60vw;
  top: -10vh;
  left: -20vw;
  background: radial-gradient(circle, var(--neon-purple), transparent 70%);
}

.ambient-glow-2 {
  width: 70vw;
  height: 70vw;
  bottom: -20vh;
  right: -20vw;
  background: radial-gradient(circle, var(--neon-indigo), transparent 70%);
  animation-delay: -12s;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(10vw, 5vh) scale(1.2); opacity: 0.8; }
}

::selection {
  background: rgba(200, 200, 200, 0.2);
  color: var(--chrome-white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--dark-border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--chrome-dark); }

/* ============================================
   NAVIGATION
   ============================================ */
.hub-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(200, 200, 200, 0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.nav-logo img {
  height: 64px;
  width: auto;
  background: transparent;
}

.nav-logo-text {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--chrome-mid);
}

/* Nav Tagline Bar */
.nav-tagline {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-tagline-hero {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--chrome-dark) 0%,
    var(--chrome-mid) 20%,
    var(--chrome-white) 40%,
    var(--chrome-bright) 50%,
    var(--chrome-mid) 60%,
    var(--chrome-dark) 80%,
    var(--chrome-mid) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chromeShimmer 6s ease-in-out infinite;
}

.nav-tagline-divider {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.15);
}

.nav-tagline-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--chrome-dark) 0%,
    var(--chrome-mid) 20%,
    var(--chrome-white) 40%,
    var(--chrome-bright) 50%,
    var(--chrome-mid) 60%,
    var(--chrome-dark) 80%,
    var(--chrome-mid) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chromeShimmer 6s ease-in-out infinite;
}

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

.nav-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome-dark);
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--chrome-white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--chrome-mid);
}

.nav-cta {
  padding: 10px 28px;
  border: 1px solid rgba(200, 200, 200, 0.15);
  background: transparent;
  color: var(--chrome-light);
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta:hover {
  background: rgba(200, 200, 200, 0.06);
  border-color: rgba(200, 200, 200, 0.3);
  color: var(--chrome-white);
}

/* --- Casino Nav Link (gold accent) --- */
.nav-link-casino {
  color: #f59e0b !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.nav-link-casino:hover {
  color: #fbbf24 !important;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}
.nav-link-casino::after { display: none !important; }

/* --- Mobile Nav Toggle --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--chrome-mid);
  transition: all 0.3s;
}

/* ============================================
   PAGE VIEWS
   ============================================ */
.page-view {
  display: none;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: calc(var(--nav-height) + 32px);
  position: relative;
  z-index: 2;
}

.page-view.active {
  display: block;
  animation: pageIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HOME PAGE
   ============================================ */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-height));
  height: calc(100dvh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #000 url('hero-bg.png') center/cover no-repeat;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.hero-logo {
  width: clamp(200px, 28vw, 400px);
  margin-bottom: 28px;
  filter: drop-shadow(0 0 40px rgba(180, 180, 180, 0.12));
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 200;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--chrome-dark), var(--chrome-mid), var(--chrome-white), var(--chrome-mid), var(--chrome-dark));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both, chromeShimmer 6s ease-in-out infinite 2s;
}

.hero-subtitle {
  font-size: clamp(13px, 1.6vw, 17px);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome-dark);
  margin-bottom: 48px;
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* --- Buttons & Inputs --- */
.btn-primary, .gate-btn, .form-submit {
  display: inline-block;
  padding: 18px 48px;
  background: var(--neon-purple);
  border: none;
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-primary:hover, .gate-btn:hover, .form-submit:hover {
  background: #8b5cf6;
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.6);
  transform: translateY(-2px);
}

.btn-ghost {
  padding: 16px 40px;
  border: none;
  background: none;
  color: var(--chrome-dark);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s;
}

.btn-ghost:hover { color: var(--chrome-white); }

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome-dark);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--chrome-white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--chrome-dark);
  max-width: 600px;
  margin-bottom: 60px;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--chrome-dark), var(--chrome-mid), var(--chrome-dark), transparent);
  margin: 0 auto 80px;
}

/* --- Feature Cards & Bento Layout --- */
.features-grid {
  display: grid;
  gap: 24px;
}

.protocol-grid {
  grid-template-columns: repeat(3, 1fr);
}

.vault-grid {
  grid-template-columns: repeat(6, 1fr);
}

.vault-1, .vault-2 { grid-column: span 3; }
.vault-3 { grid-column: span 4; }
.vault-4 { grid-column: span 2; }

@media (max-width: 900px) {
  .protocol-grid { grid-template-columns: 1fr; }
  .vault-grid { grid-template-columns: 1fr; }
  .vault-1, .vault-2, .vault-3, .vault-4 { grid-column: span 1; }
}

.feature-card {
  background: rgba(12, 12, 14, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
  z-index: 0;
  transition: transform 1.5s ease-out;
}

.feature-card:hover .feature-bg {
  transform: scale(1.05);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 40%, transparent 60%, rgba(255,255,255,0.05));
  z-index: -1;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transform: skewX(-20deg);
  transition: 0.7s;
  z-index: 1;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 40px var(--accent-glow);
  border-color: rgba(124, 58, 237, 0.3);
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { left: 150%; }

.feature-card > * {
  position: relative;
  z-index: 2;
}

.feature-num, .vault-icon {
  font-size: 56px;
  font-weight: 200;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  margin-bottom: auto;
  font-variant-numeric: tabular-nums;
  padding-bottom: 40px;
}

.vault-icon {
  font-size: 48px;
  -webkit-text-stroke: 0;
  color: var(--chrome-mid);
  opacity: 0.8;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--chrome-white);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--chrome-mid);
}

/* --- Division Tiers --- */
.divisions-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.division-card {
  text-align: center;
  background: rgba(12, 12, 14, 0.5);
  border: 1px solid var(--dark-border-light);
  border-top: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 32px;
  padding: 56px 32px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.division-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top, rgba(255,255,255,0.03), transparent 70%);
  pointer-events: none;
}

.division-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255,255,255,0.03);
}

.division-shield {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.division-shield img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.division-card:hover .division-shield img {
  transform: scale(1.1) translateY(-5px);
}

.division-card h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chrome-light);
  margin-bottom: 8px;
}

.division-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--chrome-dark);
  line-height: 1.6;
}

/* ============================================
   THE GATE
   ============================================ */
.gate-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100dvh - var(--nav-height));
  padding: 60px 20px;
  background: radial-gradient(ellipse at center, rgba(20, 20, 20, 1) 0%, var(--black) 70%);
}

.gate-card {
  max-width: 480px;
  width: 100%;
  text-align: center;
  background: rgba(12, 12, 14, 0.45);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 32px;
  padding: 60px 48px;
  position: relative;
  animation: floatCard 6s ease-in-out infinite alternate;
}

@keyframes floatCard {
  0% { transform: translateY(0); box-shadow: 0 40px 100px rgba(0,0,0,0.8); }
  100% { transform: translateY(-10px); box-shadow: 0 50px 120px rgba(0,0,0,0.9), 0 0 60px rgba(255,255,255,0.02); }
}

.gate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 200, 200, 0.15), transparent);
}

.gate-lock {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  opacity: 0.7;
}

.gate-card h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--chrome-white);
  margin-bottom: 12px;
}

.gate-card .gate-req {
  font-size: 14px;
  font-weight: 300;
  color: var(--chrome-dark);
  margin-bottom: 40px;
  line-height: 1.6;
}

.gate-card .gate-req strong {
  color: var(--chrome-white);
  font-weight: 500;
}

.gate-input-group {
  margin-bottom: 20px;
}

.gate-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--dark-border);
  color: var(--chrome-white);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  outline: none;
  text-align: center;
  transition: border-color 0.3s;
}

.gate-input::placeholder {
  color: rgba(150, 150, 150, 0.3);
  letter-spacing: 0.15em;
}

.gate-input:focus {
  border-color: rgba(200, 200, 200, 0.2);
}

.gate-btn {
  width: 100%;
  padding: 16px;
  margin-top: 12px;
}

.gate-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  color: var(--dark-border-light);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gate-divider::before,
.gate-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--dark-border);
}

/* ============================================
   REGISTER FORM
   ============================================ */
.register-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100dvh - var(--nav-height));
  padding: 80px 20px;
}

.register-card {
  max-width: 500px;
  width: 100%;
  background: rgba(12, 12, 14, 0.5);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 40px 100px rgba(0,0,0,0.95), inset 0 1px 20px rgba(255,255,255,0.02);
  border-radius: 32px;
  padding: 60px 48px;
  text-align: center;
}

.register-card > img.hero-logo {
  width: 120px;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(255,255,255,0.1));
}

.register-card h2 {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #e0e0e0;
  margin-bottom: 4px;
}

.register-card .register-sub {
  font-size: 14px;
  font-weight: 300;
  color: #707070;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 1px; /* Tightly pack inputs like the image */
}

.form-label {
  display: none; /* Hide labels, rely on placeholders like the image */
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(20, 20, 24, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.2); 
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: all 0.3s;
}

.form-input:focus {
  background: rgba(30, 30, 36, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

.form-input::placeholder {
  color: #444;
  letter-spacing: 0.05em;
}

.form-row {
  display: flex;
  flex-direction: column;
}

/* Specific styling for the multiline inputs like Car / Mods */
textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

/* Division Checkboxes (styled to match image) */
.division-select {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 30px;
  justify-content: center;
}

.division-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.division-radio input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  cursor: pointer;
  position: relative;
}

.division-radio input:checked::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 8px; height: 8px;
  background: #ffffff;
}

.division-radio span {
  font-size: 13px;
  font-weight: 300;
  color: #888;
}

.division-radio input:checked ~ span {
  color: #fff;
}

/* File Upload */
.file-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s;
  font-size: 11px;
  color: #a0a0a0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.file-upload:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* ============================================
   HUD DASHBOARD — "Glass Obsidian" Design
   ============================================ */

/* Dashboard page wrapper — depth background */
#dash-main {
  position: relative;
  overflow: hidden;
}

/* Geometric wireframe crystal */
.dash-geo-wireframe {
  position: absolute;
  left: -80px;
  top: 60px;
  width: 500px;
  height: 500px;
  pointer-events: none;
  opacity: 0.7;
  animation: geo-drift 25s ease-in-out infinite;
  z-index: 0;
}
@keyframes geo-drift {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50%      { transform: rotate(6deg) scale(1.03); }
}

/* Particle canvas */
.dash-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Main dashboard glass container */
.hud-dashboard {
  position: relative;
  z-index: 1;
  max-width: 1020px;
  margin: 36px auto;
  background: rgba(14, 10, 24, 0.55);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.15);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.85),
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.4);
  border-radius: 28px;
  overflow: hidden;
  padding-bottom: 20px;
}

/* Header */
.hud-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hud-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hud-logo-wrap img { width: 64px; }
.hud-logo-wrap span { font-size: 14px; font-weight: 500; letter-spacing: 0.22em; line-height: 1.1; color: rgba(255,255,255,0.9); }

.hud-profile-mini {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hud-avatar-mini {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(201,168,76,0.35);
}
.hud-edit-profile-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  transition: all 0.2s;
}
.hud-edit-profile-btn:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
  color: #C9A84C;
}

/* Title bar */
.hud-title-bar {
  padding: 20px 28px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hud-title-bar h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 4px;
}
.hud-tier-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
}

/* 2-column layout */
.hud-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.hud-left {
  border-right: 1px solid rgba(255,255,255,0.04);
  padding: 24px 28px;
}

.hud-right {
  display: flex;
  flex-direction: column;
}



.hud-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.hud-user-id { font-size: 11px; letter-spacing: 0.1em; color: #a0a0a0; }
.hud-small-btn { 
  background: transparent; border: 1px solid rgba(255,255,255,0.2); 
  padding: 4px 8px; font-size: 9px; color: #888; letter-spacing: 0.1em;
  cursor: pointer; transition: 0.3s;
}
.hud-small-btn:hover { border-color: #fff; color: #fff; }
.hud-icon-group { display: flex; gap: 8px; margin-left: auto; color: #666; font-size: 12px; }

.hud-run-info {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.hud-label { font-size: 10px; color: #666; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.hud-data-large { font-size: 14px; color: #ccc; }
.hud-data-mid { font-size: 12px; color: #888; margin-top: 4px; }
.hud-data-huge { font-size: 24px; color: #fff; font-weight: 300; margin-top: 2px; }

.hud-stats-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hud-stat-1 { font-size: 10px; color: #888; }
.hud-stat-bar { flex: 1; height: 1px; background: rgba(255,255,255,0.1); position: relative; }
.hud-stat-bar::after { content:''; position:absolute; left:0; top:0; height:1px; width:40%; background:#fff; }
.hud-stat-2 { font-size: 10px; color: #fff; border: 1px solid rgba(255,255,255,0.2); padding: 2px 6px; }

.hud-car-preview { margin-top: 16px; }
.hud-car-preview img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.05);
}

.hud-feed-wrap {

  display: flex;
  flex-direction: column;
}

.hud-feed-card {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  height: 180px;
}
.hud-feed-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hud-feed-header {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(0,0,0,0.7);
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hud-feed-id { font-size: 9px; color: #888; letter-spacing: 0.1em; }
.hud-feed-name { font-size: 13px; color: #fff; }
.hud-feed-sub { font-size: 8px; color: #666; max-width: 150px; line-height: 1.4; }

.hud-invite-section {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hud-invite-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.hud-invite-label { font-size: 9px; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; text-transform: uppercase; }
.hud-invite-code {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  padding: 6px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-family: monospace;
  letter-spacing: 0.1em;
  border-radius: 6px;
}
.hud-gen-btn {
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.08);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  color: #C9A84C;
  cursor: pointer;
  transition: 0.25s;
  letter-spacing: 0.1em;
  border-radius: 6px;
  text-transform: uppercase;
}
.hud-gen-btn:hover { background: rgba(201,168,76,0.15); box-shadow: 0 0 10px rgba(201,168,76,0.1); }

.hud-logs {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  padding: 0 24px;
}
.hud-log-title { font-size: 10px; color: rgba(255,255,255,0.6); margin-bottom: 8px; letter-spacing: 0.12em; text-transform: uppercase; }
.hud-log-text { line-height: 1.6; margin-bottom: 8px; }
.hud-log-text strong { color: rgba(255,255,255,0.7); font-weight: 500; }

.hud-log-nav {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.hud-log-nav-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 16px;
  border-radius: 20px;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
}

.hud-log-nav-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
}

/* Dashboard RƎV Token Card — Glassmorphism */
.dash-rev-token-card {
  margin: 16px 24px 0;
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-top-color: rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px;
  font-size: 12px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}

.dash-rev-token-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(201,168,76,0.03) 0%, transparent 40%);
  pointer-events: none;
  border-radius: inherit;

}

.dash-rtc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.dash-rtc-logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.dash-rtc-logo svg { width: 100%; height: 100%; }

.dash-rtc-name-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}

.dash-rtc-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.dash-rtc-ticker {
  font-size: 10px;
  color: rgba(168,85,247,0.7);
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
}

.dash-rtc-dex-link {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.3);
  transition: all 0.2s;
  cursor: pointer;
}

.dash-rtc-dex-link:hover {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}

.dash-rtc-dex-link svg { width: 14px; height: 14px; }

.dash-rtc-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dash-rtc-price {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.dash-rtc-change {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
}

.dash-rtc-change.positive { background: rgba(16,185,129,0.12); color: #10b981; }
.dash-rtc-change.negative { background: rgba(239,68,68,0.12); color: #ef4444; }

.dash-rtc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.dash-rtc-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-rtc-stat-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.dash-rtc-stat-val {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.dash-rtc-holding {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
}

.dash-rtc-holding-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}

.dash-rtc-holding-amount {
  font-size: 15px;
  font-weight: 700;
  color: #a855f7;
  font-family: monospace;
}

.dash-rtc-holding-usd {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}




@media (max-width: 800px) {
  .hud-main { grid-template-columns: 1fr; }
  .hud-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
}

/* ============================================
   CHAT (Coming Soon)
   ============================================ */
.chat-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100dvh - var(--nav-height));
  text-align: center;
  padding: 60px 20px;
}

.chat-soon {
  max-width: 400px;
}

.chat-soon-icon {
  font-size: 48px;
  margin-bottom: 24px;
  opacity: 0.4;
}

.chat-soon h2 {
  font-size: 28px;
  font-weight: 200;
  letter-spacing: 0.15em;
  color: var(--chrome-white);
  margin-bottom: 12px;
}

.chat-soon p {
  font-size: 14px;
  font-weight: 300;
  color: var(--chrome-dark);
  line-height: 1.6;
  margin-bottom: 8px;
}

.chat-soon .chat-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark-border-light);
  margin-top: 20px;
}

/* ============================================
   LOGIN
   ============================================ */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100dvh - var(--nav-height));
  padding: 60px 20px;
}

.login-card {
  max-width: 420px;
  width: 100%;
  text-align: center;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 56px 48px;
}

.login-card h2 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--chrome-white);
  margin-bottom: 8px;
}

.login-card .login-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--chrome-dark);
  margin-bottom: 36px;
}

.login-card .form-input {
  margin-bottom: 16px;
}

.login-error {
  font-size: 12px;
  color: var(--danger);
  margin-bottom: 12px;
  display: none;
}

/* ============================================
   ECOSYSTEM GRID (6 Divisions)
   ============================================ */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eco-card {
  position: relative;
  background: rgba(12, 12, 14, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 40px 32px;
  overflow: hidden;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 380px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.eco-card-large {
  grid-column: span 2;
  flex-direction: row;
  text-align: left;
  align-items: flex-start;
  gap: 40px;
  padding: 48px 40px;
}

.eco-card-large .eco-card-content { flex: 1; }

.eco-card-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--glow-color);
  filter: blur(100px);
  opacity: 0;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.eco-card:hover .eco-card-glow { opacity: 0.3; }

.eco-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
}

.eco-card-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.eco-card-large .eco-card-img {
  width: 200px;
  height: 200px;
}

.eco-card-content {
  position: relative;
  z-index: 1;
}

.eco-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome-mid);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.eco-card h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 10px;
}

.eco-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--chrome-mid);
}

@media (max-width: 900px) {
  .ecosystem-grid { grid-template-columns: 1fr; }
  .eco-card-large { grid-column: span 1; flex-direction: column; text-align: center; }
}

/* ============================================
   REV TOKEN SECTION
   ============================================ */
.token-section {
  overflow: hidden;
}

.token-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

.token-info { flex: 1; }

.token-visual {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.token-coin {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(124, 58, 237, 0.4), 0 0 160px rgba(99, 102, 241, 0.2);
  position: relative;
}

.token-coin::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--neon-purple), var(--neon-indigo), #ec4899, var(--neon-purple));
  z-index: -1;
  animation: tokenSpin 4s linear infinite;
}

@keyframes tokenSpin {
  to { transform: rotate(360deg); }
}

.token-coin-inner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1a1a2e, #000);
  display: flex;
  align-items: center;
  justify-content: center;
}

.token-coin-inner span {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.token-mechanics {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.token-mech {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
}

.token-mech-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.token-mech h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.token-mech p {
  font-size: 13px;
  font-weight: 300;
  color: var(--chrome-mid);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .token-layout { flex-direction: column; gap: 40px; }
  .token-visual { flex: none; }
  .token-mechanics { flex-direction: column; }
}

/* ============================================
   TIER REQUIREMENT BADGE
   ============================================ */
.tier-req {
  font-size: 13px;
  color: var(--neon-purple);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.tier-req strong {
  color: #fff;
}

/* ============================================
   VISION SECTION
   ============================================ */
.vision-section {
  text-align: center;
  padding: 160px 48px;
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   WALLET BUTTON (Phantom)
   ============================================ */
.btn-wallet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #AB9FF2, #7C3AED);
  border: none;
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

.btn-wallet:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(124, 58, 237, 0.6);
}

.btn-outline {
  display: inline-block;
  padding: 18px 48px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: var(--chrome-mid);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  transform: translateY(-2px);
}

.wallet-status {
  font-size: 12px;
  font-weight: 400;
  color: var(--success);
  margin-top: 12px;
  min-height: 20px;
}

/* ============================================
   ANIMATION UTILITY CLASSES
   ============================================ */
.anim-reveal {
  opacity: 0;
  transform: translateY(40px);
}

.anim-float {
  /* AnimeJS handles this */
}

/* ============================================
   SECTION DIVIDER (Animated Line)
   ============================================ */
.section-divider {
  width: 0%;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--neon-purple), var(--neon-indigo), transparent);
  opacity: 0;
}

/* ============================================
   GHOST BUTTON
   ============================================ */
.btn-ghost {
  display: inline-block;
  padding: 18px 48px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: var(--chrome-mid);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}


/* ============================================
   SCROLLING MARQUEE
   ============================================ */
.marquee-wrap {
  overflow: hidden;
  background: rgba(124, 58, 237, 0.05);
  border-top: 1px solid rgba(124, 58, 237, 0.15);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chrome-mid);
  padding: 0 20px;
}

.marquee-dot {
  color: #7C3AED !important;
  font-size: 8px !important;
  padding: 0 10px !important;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   MANIFESTO SECTION
   ============================================ */
.manifesto-section {
  overflow: hidden;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.manifesto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.manifesto-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(124,58,237,0.1));
  pointer-events: none;
}

.manifesto-text {
  padding: 20px 0;
}

.philosophy-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.philosophy-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(192,192,192,0.08);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.philosophy-item:hover {
  background: rgba(124,58,237,0.06);
  border-color: rgba(124,58,237,0.2);
  transform: translateX(8px);
}

.philosophy-keyword {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--chrome-white), var(--chrome-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.philosophy-over {
  font-size: 24px;
  color: #7C3AED;
  font-weight: 200;
}

.philosophy-vs {
  font-size: 16px;
  color: rgba(192,192,192,0.3);
  text-decoration: line-through;
  font-weight: 200;
}

/* ============================================
   WHAT IS REVÉRSE SECTION
   ============================================ */
.what-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.what-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.what-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.9) 100%);
}

.what-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.what-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.pillar-pill {
  padding: 10px 22px;
  border: 1px solid rgba(192,192,192,0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--chrome-mid);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.pillar-pill:hover {
  border-color: #7C3AED;
  box-shadow: 0 0 20px rgba(124,58,237,0.2);
  transform: translateY(-4px);
  color: var(--chrome-white);
}

/* ============================================
   EXPANDABLE DIVISION ACCORDIONS
   ============================================ */
.eco-expand-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome-mid);
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.eco-expand-btn:hover {
  background: rgba(124,58,237,0.15);
  border-color: #7C3AED;
  color: var(--chrome-white);
}

.eco-accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}

.eco-accordion.open {
  max-height: 300px;
  opacity: 1;
}

.eco-tier {
  padding: 10px 0;
  font-size: 13px;
  color: rgba(192,192,192,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  line-height: 1.5;
}

.eco-tier strong {
  color: var(--chrome-white);
}

/* ============================================
   LIFESTYLE GALLERY
   ============================================ */
.gallery-section {
  overflow: hidden;
}

.gallery-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 400px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: grab;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome-white);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* ============================================
   ACCESS & ENTRY SECTION
   ============================================ */
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 48px auto 0;
}

.access-card {
  text-align: center;
  padding: 48px 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(192,192,192,0.06);
  border-radius: 20px;
  transition: all 0.5s ease;
}

.access-card:hover {
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 0 40px rgba(124,58,237,0.08);
  transform: translateY(-8px);
}

.access-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.access-card h3 {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--chrome-white), var(--chrome-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.access-card p {
  font-size: 13px;
  color: rgba(192,192,192,0.5);
  line-height: 1.6;
}

/* ============================================
   ROADMAP TIMELINE
   ============================================ */
.roadmap-timeline {
  position: relative;
  max-width: 700px;
  margin: 60px auto 0;
  padding-left: 40px;
}

.roadmap-svg-line {
  position: absolute;
  left: 12px;
  top: 0;
  width: 4px;
  height: 100%;
}

.roadmap-phase {
  position: relative;
  padding: 0 0 48px 40px;
}

.roadmap-dot {
  position: absolute;
  left: -35px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7C3AED;
  border: 2px solid rgba(124,58,237,0.4);
  box-shadow: 0 0 15px rgba(124,58,237,0.5);
  z-index: 1;
}

.roadmap-badge {
  display: inline-block;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7C3AED;
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 100px;
  margin-bottom: 12px;
}

.roadmap-content h3 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--chrome-white), var(--chrome-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roadmap-content p {
  font-size: 14px;
  color: rgba(192,192,192,0.5);
  line-height: 1.7;
}

/* ============================================
   IS / IS NOT CONTRAST SECTION
   ============================================ */
.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.contrast-col {
  padding: 48px 40px;
  border-radius: 20px;
  border: 1px solid rgba(192,192,192,0.06);
}

.contrast-not {
  background: rgba(239, 68, 68, 0.03);
  border-color: rgba(239, 68, 68, 0.1);
}

.contrast-is {
  background: rgba(124, 58, 237, 0.04);
  border-color: rgba(124, 58, 237, 0.15);
}

.contrast-header {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  color: var(--chrome-white);
}

.contrast-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contrast-list li {
  font-size: 16px;
  font-weight: 300;
  color: var(--chrome-mid);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ============================================
   VISION SECTION (Enhanced with BG)
   ============================================ */
.vision-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vision-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vision-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.6), rgba(0,0,0,0.9));
}

.vision-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ============================================
   ENHANCED FOOTER
   ============================================ */
.hub-footer {
  padding: 80px 40px 30px;
  border-top: 1px solid rgba(192,192,192,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome-mid);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(192,192,192,0.4);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--chrome-white);
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}

.footer-social-icon:hover {
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.1);
  transform: scale(1.1);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.35);
  transition: fill 0.3s;
}

.footer-social-icon:hover svg {
  fill: #a855f7;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(192,192,192,0.04);
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(192,192,192,0.2);
  letter-spacing: 0.1em;
}

/* ============================================
   RESPONSIVE (new sections)
   ============================================ */
@media (max-width: 768px) {
  .manifesto-layout { grid-template-columns: 1fr; gap: 32px; }
  .access-grid { grid-template-columns: 1fr; gap: 20px; }
  .contrast-grid { grid-template-columns: 1fr; gap: 20px; }
  .gallery-item { flex: 0 0 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================
   DASHBOARD STATES & PROFILE SYSTEM
   ============================================ */
.dash-state { min-height: calc(100vh - 80px); min-height: calc(100dvh - 80px); }

.dash-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  min-height: calc(100dvh - 80px);
  text-align: center;
  padding: 40px;
}

.dash-prompt-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 28px;
  opacity: 0.8;
}

.dash-prompt h2 {
  font-size: 28px;
  font-weight: 200;
  letter-spacing: 0.08em;
  color: var(--chrome-white);
  margin-bottom: 12px;
}

.dash-prompt p {
  font-size: 14px;
  color: rgba(192,192,192,0.5);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Profile Editor */
.profile-editor {
  max-width: 560px;
  margin: 0 auto;
  padding: 60px 48px;
  text-align: center;
  background: rgba(8, 8, 12, 0.95);
  border: 1px solid rgba(124,58,237,0.08);
  border-radius: 20px;
  margin-top: 40px;
}

.profile-editor h2 {
  font-size: 26px;
  font-weight: 200;
  letter-spacing: 0.08em;
  color: var(--chrome-white);
  margin-bottom: 8px;
}

.profile-editor-sub {
  font-size: 13px;
  color: rgba(192,192,192,0.5);
  margin-bottom: 32px;
  line-height: 1.6;
}

.profile-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(192,192,192,0.08);
  border-radius: 16px;
  margin-bottom: 32px;
}

.profile-avatar-preview {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(124,58,237,0.3);
  flex-shrink: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-preview svg {
  width: 40px;
  height: 40px;
}

.profile-preview-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-preview-name {
  font-size: 16px;
  font-weight: 400;
  color: var(--chrome-white);
  letter-spacing: 0.05em;
}

.profile-preview-tier {
  font-size: 11px;
  color: #7C3AED;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-form {
  text-align: left;
}

.profile-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome-mid);
  margin-bottom: 8px;
  margin-top: 20px;
}

.profile-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,192,192,0.1);
  border-radius: 10px;
  font-size: 14px;
  color: var(--chrome-white);
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
  box-sizing: border-box;
}

.profile-input:focus {
  border-color: #7C3AED;
}

.profile-textarea {
  resize: none;
  height: 80px;
}

.profile-hint {
  font-size: 11px;
  color: rgba(192,192,192,0.3);
  margin-top: 6px;
}

/* Avatar upload group */
.avatar-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.avatar-input-group .profile-input {
  flex: 1;
  margin-bottom: 0;
}

.avatar-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 8px;
  color: #a855f7;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}

.avatar-upload-btn:hover {
  background: rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.5);
}

.avatar-upload-btn.uploading {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.avatar-upload-btn.success {
  background: rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.4);
  color: #10b981;
}

.profile-error {
  color: #ef4444;
  font-size: 12px;
  margin-top: 12px;
  min-height: 18px;
}

/* Profile Row (side-by-side fields) */
.profile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 4px;
}

.profile-field-half .profile-label {
  margin-top: 12px;
}

/* Select Dropdown */
.profile-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.profile-select option {
  background: #0a0a0f;
  color: #e0e0e0;
}

/* Profile save loading state */
.profile-save-loading {
  opacity: 0.6;
  pointer-events: none;
}

@media (max-width: 560px) {
  .profile-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Dashboard Profile Mini (header) */
.hud-profile-mini {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hud-avatar-mini {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(124,58,237,0.3);
}

.hud-profile-mini span {
  font-size: 13px;
  color: var(--chrome-mid);
  letter-spacing: 0.06em;
}

.hud-edit-profile-btn {
  background: none;
  border: 1px solid rgba(192,192,192,0.1);
  color: var(--chrome-mid);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}

.hud-edit-profile-btn:hover {
  border-color: #7C3AED;
  color: var(--chrome-white);
}

.hud-tier-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7C3AED;
  border: 1px solid rgba(124,58,237,0.3);
  padding: 4px 14px;
  border-radius: 100px;
}

/* Dashboard Profile Card */
/* Dashboard Profile Card — Glassmorphism */
.dash-profile-card {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-top-color: rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}

.dash-profile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(201,168,76,0.03) 0%, transparent 40%);
  pointer-events: none;
  border-radius: inherit;
}



.dash-profile-full-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.08), 0 0 24px rgba(0,0,0,0.4);
  margin-bottom: 16px;
}

.dash-profile-card h3 {
  font-size: 20px;
  font-weight: 300;
  color: var(--chrome-white);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.dash-profile-bio {
  font-size: 13px;
  color: rgba(192,192,192,0.5);
  margin-bottom: 16px;
  line-height: 1.5;
}

.dash-profile-wallet {
  font-size: 11px;
  color: rgba(192,192,192,0.3);
  font-family: monospace;
  margin-bottom: 16px;
  word-break: break-all;
}

.dash-profile-tier-display {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.dash-profile-tier-display span {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dash-profile-tier-display strong {
  font-size: 14px;
  color: #C9A84C;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.dash-quick-links h4 {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.dash-division-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-division-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.dash-division-link:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201,168,76,0.2);
  color: rgba(255,255,255,0.85);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.dash-division-link.locked {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Golden UNLOCKED shimmer text */
.dash-div-unlocked {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(
    105deg,
    #b8922e 0%,
    #e8d080 25%,
    #fffbe6 50%,
    #e8d080 75%,
    #b8922e 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-text-shine 2.5s ease-in-out infinite;
}

@keyframes gold-text-shine {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Sparkline chart in token card */
.dash-rtc-sparkline {
  width: 100%;
  height: 48px;
  margin: 4px 0 8px;
  border-radius: 6px;
  overflow: hidden;
}

/* ============================================
   LIVE CHAT ROOM
   ============================================ */
.chat-lock {
  min-height: calc(100vh - 80px);
  min-height: calc(100dvh - 80px);
}

.chat-room {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 80px);
  height: calc(100dvh - 80px);
  max-width: 900px;
  margin: 0 auto;
  background: rgba(8, 8, 12, 0.95);
  border-left: 1px solid rgba(124,58,237,0.08);
  border-right: 1px solid rgba(124,58,237,0.08);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(192,192,192,0.06);
}

.chat-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(192,192,192,0.4);
}

.chat-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16,185,129,0.5);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(124,58,237,0.2) transparent;
}

.chat-system-msg {
  text-align: center;
  font-size: 11px;
  color: rgba(192,192,192,0.3);
  padding: 8px;
  letter-spacing: 0.05em;
}

.chat-msg {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 4px 0;
}

.chat-msg-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(124,58,237,0.2);
  flex-shrink: 0;
}

.chat-msg-body {
  flex: 1;
}

.chat-msg-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.chat-msg-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--chrome-white);
  letter-spacing: 0.04em;
}

.chat-msg-tier {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7C3AED;
  border: 1px solid rgba(124,58,237,0.3);
  padding: 3px 10px;
  border-radius: 100px;
}

.chat-msg-time {
  font-size: 11px;
  color: rgba(192,192,192,0.25);
  margin-left: auto;
}

.chat-msg-text {
  font-size: 16px;
  color: rgba(192,192,192,0.8);
  line-height: 1.6;
}

.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-top: 1px solid rgba(192,192,192,0.06);
  position: relative;
}

.chat-emoji-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.3s;
}

.chat-emoji-btn:hover {
  background: rgba(124,58,237,0.1);
}

.chat-emoji-picker {
  position: absolute;
  bottom: 60px;
  left: 24px;
  background: rgba(15,15,15,0.95);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 10;
}

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

.emoji-item {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 12px;
}

.emoji-item:hover {
  background: rgba(124,58,237,0.15);
}

.emoji-item svg {
  width: 22px;
  height: 22px;
}

.chat-input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,192,192,0.08);
  border-radius: 12px;
  font-size: 14px;
  color: var(--chrome-white);
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s;
}

.chat-input:focus {
  border-color: #7C3AED;
}

.chat-send-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: #7C3AED;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.chat-send-btn:hover {
  background: #7C3AED;
  color: #fff;
}

/* Custom SVG emoji inline */
.rev-emoji {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  vertical-align: -0.15em;
}

/* VIP Badge Styles */
.chat-vip-badge {
  width: 75px;
  height: 75px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 4px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

.chat-msg-vip .chat-msg-name {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chat-msg-vip .chat-msg-avatar {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Dashboard VIP badge — Solid shiny luxury container */
.dash-vip-wrap {
  margin-top: 12px;
  text-align: center;
}

.dash-vip-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 14px 120px 14px 24px;
  min-height: 56px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a0e00;
  border-radius: 12px;
  overflow: visible;
  cursor: default;
  background:
    linear-gradient(135deg,
      #c8a84b 0%,
      #e8d080 20%,
      #c9a84c 40%,
      #f0dc90 55%,
      #b8922e 75%,
      #d4af5a 100%);
  border: 1px solid rgba(255,235,150,0.5);
  box-shadow:
    0 6px 24px rgba(0,0,0,0.6),
    0 1px 0 rgba(255,255,200,0.4) inset,
    0 -1px 0 rgba(100,70,0,0.4) inset,
    0 0 30px rgba(201,168,76,0.15);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Animated sheen sweep */
.dash-vip-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.45) 50%,
    transparent 70%
  );
  animation: vip-sheen 3s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}

/* Embossed top highlight line */
.dash-vip-badge::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,200,0.7) 40%, rgba(255,255,200,0.7) 60%, transparent);
  pointer-events: none;
}

@keyframes vip-sheen {
  0%   { left: -80%; opacity: 0; }
  10%  { opacity: 1; }
  60%  { left: 130%; opacity: 1; }
  61%  { opacity: 0; }
  100% { left: 130%; opacity: 0; }
}

.dash-vip-badge img {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  pointer-events: none;
}


/* ============================================
   RƎV Holdings Card — Glassmorphism
   ============================================ */
.dash-rev-holdings-card {
  position: relative;
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}

.dash-rev-holdings-card.is-master {
  background: rgba(255,255,255,0.035);
  border-color: rgba(201,168,76,0.2);
}

.dash-rev-holdings-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(201,168,76,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.dash-rev-holdings-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}

.dash-rev-holdings-amount {
  font-size: 18px;
  font-weight: 700;
  color: #C9A84C;
  font-family: monospace;
  letter-spacing: 0.04em;
}

.dash-rev-holdings-usd {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

.dash-rev-holdings-badge {
  margin-top: 8px;
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  color: #C9A84C;
}




/* ============================================
   SVG ANIMATION ELEMENTS
   ============================================ */

/* Hero Hex Frame (line-drawing) */
.hero-svg-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 1100px;
  height: 95%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

/* Hero Orbital Motion Path */
.hero-svg-orbit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

/* SVG Divider Between Sections */
.svg-divider-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 0;
}

.svg-line-divider {
  width: 100%;
  height: 20px;
  overflow: visible;
}

/* Morphing Shape BG (behind token) */
.svg-morph-bg {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

/* Token section needs relative for abs morph bg */
.token-section {
  position: relative;
  overflow: hidden;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hub-nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    padding: 32px;
    gap: 24px;
    border-bottom: 1px solid var(--dark-border);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta {
    font-size: 12px;
    padding: 6px 14px;
  }

  .nav-tagline {
    font-size: 9px;
    gap: 8px;
    padding: 6px 16px;
  }

  .section {
    padding: 80px 20px;
  }

  .divisions-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dash-header {
    flex-direction: column;
    text-align: center;
  }

  .dash-badge { margin-left: 0; margin-top: 12px; }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .gate-card, .register-card, .login-card {
    padding: 40px 24px;
  }

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

  .dashboard-page {
    padding: 40px 20px;
  }

  /* Chat mobile fixes */
  .chat-room {
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    max-width: 100%;
  }

  .chat-header {
    padding: 12px 16px;
  }

  .chat-messages {
    padding: 16px 12px;
    gap: 14px;
  }

  .chat-msg {
    gap: 10px;
  }

  .chat-msg-avatar {
    width: 40px;
    height: 40px;
  }

  .chat-msg-name {
    font-size: 13px;
  }

  .chat-msg-text {
    font-size: 14px;
  }

  .chat-input-bar {
    padding: 12px 12px;
    /* Add right padding to avoid music button overlap */
    padding-right: 68px;
  }

  .chat-vip-badge {
    width: 40px;
    height: 40px;
  }

  /* Music button — move up on mobile so it clears the chat input bar */
  .bg-music-toggle {
    display: none !important;
  }
}

/* ============================================
   NAV DROPDOWN
   ============================================ */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  cursor: pointer;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(12, 6, 20, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  padding: 8px 0;
  z-index: 1000;
  margin-top: 0;
  padding-top: 16px;
}
/* Invisible bridge to prevent hover gap */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
  animation: dropFade 0.3s ease;
}
@keyframes dropFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--chrome-white, #e0e0e0);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.nav-dropdown-menu a:hover {
  background: rgba(124, 58, 237, 0.15);
  color: #a855f7;
}
.nav-dropdown-menu a svg {
  flex-shrink: 0;
}

/* ============================================
   DIVISION PAGES — HERO
   ============================================ */
.div-page-hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.div-hero-content {
  max-width: 700px;
  padding: 40px 24px;
  z-index: 2;
}
.div-hero-content > img[src="relogo.png"] {
  width: min(500px, 70vw) !important;
  margin-bottom: 24px !important;
  opacity: 0.85 !important;
  filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.15));
}
.div-hero-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.3));
}
.div-hero-icon.lambo-svg {
  width: min(500px, 90vw);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.2));
}
@keyframes lamboWheelSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.lambo-spokes.spinning {
  animation: lamboWheelSpin 1.2s linear infinite;
  transform-origin: center;
}
.div-hero-label {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(200, 200, 200, 0.5);
  margin-bottom: 8px;
}
.div-hero-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 800;
  letter-spacing: 12px;
  background: linear-gradient(135deg, #e0e0e0, #9ca3af, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 24px;
  line-height: 1;
}
.div-hero-sub {
  font-size: 1rem;
  color: rgba(200, 200, 200, 0.6);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   DIVISION PAGES — BODY / SECTIONS
   ============================================ */
.div-page-body {
  padding: 80px 24px 120px;
  max-width: 1200px;
  margin: 0 auto;
}
.div-section {
  margin-bottom: 80px;
}
.div-section-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  background: linear-gradient(135deg, #e0e0e0, #9ca3af);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  text-align: center;
}
.div-section-desc {
  text-align: center;
  color: rgba(200, 200, 200, 0.55);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* ============================================
   FEATURE GRID (4 cards)
   ============================================ */
.div-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.div-feature-card {
  background: rgba(20, 10, 35, 0.6);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.div-feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s ease;
}
.div-feature-card:hover::before {
  transform: rotate(45deg) translateX(100%);
}
.div-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.1);
}
.div-feature-card svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  display: block;
}
.div-feature-card h3 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--chrome-white, #e0e0e0);
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.div-feature-card p {
  font-size: 0.82rem;
  color: rgba(200, 200, 200, 0.5);
  line-height: 1.6;
}

/* ============================================
   STATS BAR
   ============================================ */
.div-stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 48px 24px;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  margin-top: 60px;
}
.div-stat {
  text-align: center;
}
.div-stat-num {
  display: block;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.div-stat-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200, 200, 200, 0.4);
  margin-top: 4px;
}

/* ============================================
   TIER GATE LOCK SCREEN
   ============================================ */
.div-tier-gate {
  position: absolute;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 2, 12, 0.96);
  backdrop-filter: blur(10px);
}
.div-tier-gate .dash-prompt {
  text-align: center;
  max-width: 420px;
}
.div-tier-gate h2 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  color: var(--chrome-white, #e0e0e0);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.div-tier-gate p {
  color: rgba(200, 200, 200, 0.5);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ============================================
   DIVISION EXPANDED CONTENT SECTIONS
   ============================================ */

/* --- Section Divider --- */
.div-section + .div-section { margin-top: 60px; }
.div-section-desc { max-width: 700px; margin: 0 auto 36px; }

/* --- Event / Meetup Board --- */
.div-event-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.div-event-card {
  background: rgba(15,10,25,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.div-event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-purple), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.div-event-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-4px); }
.div-event-card:hover::before { opacity: 1; }

.div-event-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a855f7;
  margin-bottom: 14px;
}
.div-event-date svg { width: 14px; height: 14px; flex-shrink: 0; }

.div-event-card h3 {
  color: #e0e0e0;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.div-event-card p {
  color: rgba(200,200,200,0.5);
  font-size: 0.85rem;
  line-height: 1.5;
}
.div-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.div-event-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(200,200,200,0.45);
}
.div-event-meta svg { width: 12px; height: 12px; flex-shrink: 0; }

.div-event-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.div-event-tag.tag-live { background: rgba(16,185,129,0.15); color: #10b981; border: 1px solid rgba(16,185,129,0.25); }
.div-event-tag.tag-upcoming { background: rgba(99,102,241,0.15); color: #818cf8; border: 1px solid rgba(99,102,241,0.25); }
.div-event-tag.tag-members { background: rgba(124,58,237,0.15); color: #a855f7; border: 1px solid rgba(124,58,237,0.25); }
.div-event-tag.tag-hot { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.25); }
.div-event-tag.tag-new { background: rgba(245,158,11,0.15); color: #f59e0b; border: 1px solid rgba(245,158,11,0.25); }

/* --- Listing / Project Cards --- */
.div-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.div-listing-card {
  background: rgba(12,8,20,0.7);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.div-listing-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-3px); }

.div-listing-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.div-listing-img-placeholder {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.div-listing-body {
  padding: 18px 20px 22px;
}
.div-listing-body h3 {
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.div-listing-body p {
  color: rgba(200,200,200,0.45);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.div-listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.75rem;
}
.div-listing-footer span { color: rgba(200,200,200,0.4); }
.div-listing-footer .div-listing-price {
  color: #a855f7;
  font-weight: 600;
}

/* --- Gallery Grid (products, art, etc.) --- */
.div-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.div-gallery-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: rgba(15,10,25,0.5);
}
.div-gallery-item:hover { border-color: rgba(124,58,237,0.3); transform: scale(1.02); }
.div-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.div-gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 0.75rem;
  color: #ccc;
  font-weight: 500;
}

/* --- Timeline / Schedule --- */
.div-timeline {
  position: relative;
  padding-left: 30px;
  margin-top: 24px;
}
.div-timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(124,58,237,0.4), rgba(124,58,237,0.05));
}
.div-timeline-item {
  position: relative;
  padding-bottom: 28px;
}
.div-timeline-item::before {
  content: '';
  position: absolute;
  left: -26px; top: 5px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #7C3AED;
  border: 2px solid rgba(124,58,237,0.3);
}
.div-timeline-item h4 {
  color: #d0d0d0;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.div-timeline-item .tl-date {
  font-size: 0.72rem;
  color: #a855f7;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.div-timeline-item p {
  color: rgba(200,200,200,0.45);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* --- CTA Banner --- */
.div-cta-banner {
  text-align: center;
  padding: 48px 32px;
  border-radius: 20px;
  border: 1px solid rgba(124,58,237,0.15);
  background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(99,102,241,0.04));
  margin-top: 48px;
}
.div-cta-banner h3 {
  color: #e0e0e0;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.div-cta-banner p {
  color: rgba(200,200,200,0.5);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.div-cta-btn {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7C3AED, #6366f1);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.div-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,0.3); }

/* --- Two Column Layout --- */
.div-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

/* --- Mini Stat Row inside cards --- */
.div-mini-stats {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.div-mini-stat {
  text-align: center;
}
.div-mini-stat .val {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #a855f7;
}
.div-mini-stat .lbl {
  font-size: 0.65rem;
  color: rgba(200,200,200,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   AUTO DIVISION — EXPANDED STYLES
   ============================================ */

/* --- Hero Sliding Gallery Background --- */
.auto-hero-gallery {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.auto-hero-gallery-track {
  display: flex;
  gap: 0;
  height: 100%;
  animation: autoGallerySlide 60s linear infinite;
  will-change: transform;
}
.auto-hero-gallery-track img {
  height: 100%;
  min-width: 50vw;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.35;
  filter: grayscale(20%) brightness(0.8) contrast(1.1);
}
@keyframes autoGallerySlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.auto-hero-gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    linear-gradient(135deg, rgba(10,0,20,0.7) 0%, rgba(40,10,60,0.35) 50%, rgba(10,0,20,0.7) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
/* Ensure hero content sits above gallery */
#page-div-auto .div-page-hero .div-hero-content {
  z-index: 2;
  position: relative;
}
#page-div-auto .div-page-hero .auto-hero-scroll-hint {
  z-index: 2;
}

/* --- Hero Enhancements --- */
.auto-hero-tagline {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.7rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(168, 85, 247, 0.5);
  margin-top: 16px;
}
.auto-hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: autoScrollBounce 2s ease-in-out infinite;
  z-index: 3;
}
.auto-hero-scroll-hint svg {
  width: 28px;
  height: 28px;
  color: rgba(200,200,200,0.3);
}
@keyframes autoScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.8; }
}

/* --- Countdown Timer (Hero) --- */
.auto-countdown-hero {
  margin-top: 32px;
  text-align: center;
}
.auto-countdown-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(200,200,200,0.35);
  margin-bottom: 12px;
}
.auto-countdown-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.auto-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}
.auto-cd-unit span {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.auto-cd-unit small {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: rgba(200,200,200,0.35);
  margin-top: 2px;
}
.auto-cd-sep {
  font-size: 1.5rem;
  color: rgba(124,58,237,0.3);
  font-weight: 300;
  margin-top: -12px;
}
.auto-countdown-event {
  display: block;
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(200,200,200,0.45);
  letter-spacing: 1px;
}

/* --- Tier Benefits Grid --- */
.auto-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.auto-tier-card {
  background: rgba(15, 10, 25, 0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}
.auto-tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top, rgba(124,58,237,0.04), transparent 70%);
  pointer-events: none;
}
.auto-tier-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,0.25);
  box-shadow: 0 16px 48px rgba(124,58,237,0.1);
}
.auto-tier-88 {
  border-color: rgba(124,58,237,0.2);
  background: rgba(20, 12, 35, 0.6);
}
.auto-tier-888 {
  border-color: rgba(245,158,11,0.15);
  background: linear-gradient(135deg, rgba(20,12,30,0.7), rgba(40,20,10,0.3));
}
.auto-tier-888::before {
  background: radial-gradient(ellipse at top, rgba(245,158,11,0.06), transparent 70%);
}
.auto-tier-888:hover {
  border-color: rgba(245,158,11,0.3);
  box-shadow: 0 16px 48px rgba(245,158,11,0.08);
}
.auto-tier-shield {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(124,58,237,0.2));
}
.auto-tier-card h3 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #e0e0e0;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.auto-tier-label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(168,85,247,0.6);
  margin-bottom: 20px;
}
.auto-tier-888 .auto-tier-label {
  color: rgba(245,158,11,0.7);
}
.auto-tier-popular {
  position: absolute;
  top: 14px;
  right: -28px;
  background: linear-gradient(135deg, #7C3AED, #6366f1);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 36px;
  transform: rotate(45deg);
  text-transform: uppercase;
}
.auto-tier-elite {
  position: absolute;
  top: 14px;
  right: -24px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 36px;
  transform: rotate(45deg);
  text-transform: uppercase;
}
.auto-tier-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.auto-tier-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(200,200,200,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.auto-tier-perks li:last-child { border-bottom: none; }
.auto-tier-perks li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.auto-tier-locked {
  opacity: 0.3;
  text-decoration: line-through;
}

/* --- Event Filter Tabs --- */
.auto-event-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.auto-event-tab {
  background: rgba(15,10,25,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(200,200,200,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.auto-event-tab:hover {
  border-color: rgba(124,58,237,0.25);
  color: rgba(200,200,200,0.8);
}
.auto-event-tab.active {
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(99,102,241,0.15));
  border-color: rgba(124,58,237,0.4);
  color: #a855f7;
}

/* --- Event Card Enhancements --- */
.auto-event-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.03);
}
.auto-event-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
}
.auto-event-detail svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(168,85,247,0.6);
}
.auto-event-detail div {
  display: flex;
  flex-direction: column;
}
.auto-event-detail strong {
  font-size: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(200,200,200,0.35);
  margin-bottom: 2px;
}
.auto-event-detail span {
  color: rgba(200,200,200,0.65);
  font-size: 0.78rem;
}

/* --- Spots Progress Bar --- */
.auto-event-spots-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  margin-left: 8px;
}
.auto-event-spots-fill {
  height: 100%;
  background: linear-gradient(90deg, #7C3AED, #a855f7);
  border-radius: 4px;
  transition: width 0.6s ease;
}

/* --- RSVP Button --- */
.auto-rsvp-btn {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 10px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(99,102,241,0.1));
  border: 1px solid rgba(124,58,237,0.25);
  color: #a855f7;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.auto-rsvp-btn:hover {
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(99,102,241,0.2));
  border-color: rgba(124,58,237,0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.15);
}
.auto-rsvp-btn.confirmed {
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.1));
  border-color: rgba(16,185,129,0.3);
  color: #10b981;
}
.auto-rsvp-btn.confirmed:hover {
  background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.15));
  border-color: rgba(16,185,129,0.5);
  box-shadow: 0 6px 20px rgba(16,185,129,0.1);
}

/* --- Member-Hosted Events --- */
.auto-member-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.auto-member-header .div-section-title {
  margin-bottom: 8px;
}
.auto-post-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7C3AED, #6366f1);
  border: none;
  color: #fff;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.auto-post-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.3);
}
.auto-post-btn svg {
  width: 14px;
  height: 14px;
}

/* --- Host Info Bar --- */
.auto-host-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.auto-host-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(124,58,237,0.3);
}
.auto-host-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #d0d0d0;
}
.auto-host-tier {
  display: block;
  font-size: 0.6rem;
  color: rgba(168,85,247,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.auto-approval-badge {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
}
.auto-approval-badge.approved {
  background: rgba(16,185,129,0.12);
  color: #10b981;
  border: 1px solid rgba(16,185,129,0.2);
}
.auto-approval-badge.pending {
  background: rgba(245,158,11,0.12);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.2);
}

/* --- Post Event Modal --- */
.auto-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.auto-modal-overlay.open {
  display: flex;
}
.auto-modal {
  background: rgba(15,10,25,0.95);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
}
.auto-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.auto-modal-header h3 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #e0e0e0;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.auto-modal-close {
  background: none;
  border: none;
  color: rgba(200,200,200,0.5);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.auto-modal-close:hover { color: #ef4444; }

.auto-post-form {
  padding: 24px 28px 28px;
}
.auto-form-row {
  margin-bottom: 16px;
}
.auto-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.auto-form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.auto-form-group {
  display: flex;
  flex-direction: column;
}
.auto-form-group label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(200,200,200,0.4);
  margin-bottom: 6px;
}
.auto-form-group input,
.auto-form-group select,
.auto-form-group textarea {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 14px;
  color: #d0d0d0;
  font-size: 0.85rem;
  font-family: inherit;
  transition: border-color 0.3s;
  outline: none;
}
.auto-form-group input:focus,
.auto-form-group select:focus,
.auto-form-group textarea:focus {
  border-color: rgba(124,58,237,0.4);
}
.auto-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23888' stroke-width='1.5'%3E%3Cpath d='M3 5l3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.auto-form-group textarea {
  resize: vertical;
  min-height: 60px;
}
.auto-submit-btn {
  margin-top: 8px;
  background: linear-gradient(135deg, #7C3AED, #6366f1) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.auto-submit-btn:hover {
  box-shadow: 0 8px 24px rgba(124,58,237,0.3) !important;
}

/* --- Timeline Status Badges --- */
.auto-tl-status {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 6px;
}
.auto-tl-confirmed { color: #10b981; }
.auto-tl-tentative { color: #f59e0b; }
.auto-tl-soldout { color: #ef4444; }

/* --- Fleet Gallery Enhancements --- */
.auto-fleet-gallery .div-gallery-item {
  aspect-ratio: 16/10;
}

/* ============================================
   CAPITAL DIVISION — EXPANDED STYLES
   ============================================ */

/* --- Hero Grid Background --- */
.cap-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: 
    linear-gradient(rgba(99,102,241,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: capGridDrift 20s linear infinite;
}
@keyframes capGridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}
.cap-hero .div-hero-content { z-index: 2; position: relative; }

/* --- Animated Coin --- */
.cap-coin-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
}
.cap-coin-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, transparent 70%);
  animation: capCoinPulse 3s ease-in-out infinite;
}
@keyframes capCoinPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.cap-coin-svg {
  width: 160px;
  height: 160px;
  animation: capCoinFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(99,102,241,0.3));
}
@keyframes capCoinFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
.cap-coin-tagline {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.8rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(168,85,247,0.5);
  margin-bottom: 24px;
}

/* --- Price Display --- */
.cap-price-display {
  background: rgba(10,5,20,0.6);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 16px;
  padding: 20px 28px;
  margin: 0 auto 24px;
  max-width: 560px;
  backdrop-filter: blur(8px);
}
.cap-price-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.cap-price-value {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #e0e0e0;
}
.cap-price-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
}
.cap-price-change svg { width: 14px; height: 14px; }
.cap-price-change.positive { color: #10b981; background: rgba(16,185,129,0.12); }
.cap-price-change.negative { color: #ef4444; background: rgba(239,68,68,0.12); }
.cap-price-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cap-price-stat { text-align: center; }
.cap-price-stat-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(200,200,200,0.35);
  margin-bottom: 4px;
}
.cap-price-stat-val {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(200,200,200,0.7);
}

/* --- Hero CTAs --- */
.cap-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cap-btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7C3AED, #6366f1);
  color: #fff;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.cap-btn-buy svg { width: 14px; height: 14px; }
.cap-btn-buy:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,0.3); }
.cap-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  color: #818cf8;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.cap-btn-secondary svg { width: 14px; height: 14px; }
.cap-btn-secondary:hover { border-color: rgba(99,102,241,0.4); background: rgba(99,102,241,0.15); transform: translateY(-2px); }

/* --- Ticker Bar --- */
.cap-ticker-bar {
  overflow: hidden;
  background: rgba(5,2,12,0.8);
  border-top: 1px solid rgba(99,102,241,0.1);
  border-bottom: 1px solid rgba(99,102,241,0.1);
  padding: 10px 0;
}
.cap-ticker-track {
  display: flex;
  gap: 0;
  animation: capTickerScroll 40s linear infinite;
  width: max-content;
}
@keyframes capTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cap-ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.cap-ticker-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.cap-tk-name { font-size: 0.75rem; font-weight: 700; color: rgba(200,200,200,0.6); letter-spacing: 1px; }
.cap-tk-price { font-size: 0.75rem; color: rgba(200,200,200,0.8); font-weight: 600; }
.cap-tk-change { font-size: 0.7rem; font-weight: 700; }
.cap-tk-change.positive { color: #10b981; }
.cap-tk-change.negative { color: #ef4444; }

/* --- Coming Soon Badge --- */
/* --- The Vault: Diamond & Gold Token Showcase --- */
.vault-showcase {
  position: relative;
  max-width: 520px;
  margin: 32px auto 0;
  padding: 4px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(201,168,76,0.4), rgba(255,255,255,0.2), rgba(180,200,255,0.3), rgba(201,168,76,0.5), rgba(255,255,255,0.15));
  background-size: 300% 300%;
  animation: vaultDiamondShift 6s ease-in-out infinite;
  box-shadow:
    0 0 40px rgba(201,168,76,0.15),
    0 0 80px rgba(201,168,76,0.08),
    inset 0 0 30px rgba(255,255,255,0.03);
}
@keyframes vaultDiamondShift {
  0% { background-position: 0% 0%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 0%; }
}
.vault-diamond-border {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: conic-gradient(
    from 0deg,
    rgba(255,255,255,0.6),
    rgba(200,220,255,0.1),
    rgba(255,240,200,0.5),
    rgba(180,200,255,0.15),
    rgba(255,255,255,0.6),
    rgba(201,168,76,0.5),
    rgba(255,255,255,0.1),
    rgba(200,180,255,0.4),
    rgba(255,255,255,0.6)
  );
  z-index: -1;
  filter: blur(1px);
  animation: vaultBorderRotate 8s linear infinite;
}
@keyframes vaultBorderRotate {
  to { transform: rotate(360deg); }
}
.vault-diamond-shimmer {
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: conic-gradient(
    from 120deg,
    transparent 0%,
    rgba(255,255,255,0.25) 10%,
    transparent 20%,
    rgba(200,180,255,0.15) 35%,
    transparent 45%,
    rgba(255,240,200,0.2) 60%,
    transparent 70%,
    rgba(180,220,255,0.2) 85%,
    transparent 100%
  );
  z-index: -2;
  animation: vaultShimmerRotate 12s linear infinite;
  filter: blur(3px);
}
@keyframes vaultShimmerRotate {
  to { transform: rotate(-360deg); }
}
.vault-gold-top {
  position: absolute;
  top: -3px;
  left: 15%;
  right: 15%;
  height: 6px;
  background: linear-gradient(90deg, transparent, #f5d680, #c9a84c, #f5d680, transparent);
  border-radius: 0 0 4px 4px;
  z-index: 2;
  box-shadow: 0 0 12px rgba(201,168,76,0.4);
}
.vault-showcase-inner {
  background: linear-gradient(170deg, rgba(15,12,25,0.97), rgba(8,6,16,0.99));
  border-radius: 17px;
  padding: 40px 32px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vault-showcase-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(168,85,247,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Emblem */
.vault-emblem {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
}
.vault-emblem-glow {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
  animation: vaultEmblemPulse 3s ease-in-out infinite;
}
@keyframes vaultEmblemPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
.vault-emblem-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.3));
  animation: vaultCoinFloat 4s ease-in-out infinite;
  border: 2px solid rgba(201,168,76,0.4);
}
.vault-emblem-svg {
  width: 90px;
  height: 90px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.3));
  animation: vaultCoinFloat 4s ease-in-out infinite;
}
@keyframes vaultCoinFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Typography */
.vault-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f5d680, #c9a84c, #f5d680);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.vault-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  margin-bottom: 28px;
}
.vault-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-bottom: 8px;
  margin-top: 20px;
}

/* Contract display */
.vault-contract {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: rgba(245,214,128,0.8);
  letter-spacing: 0.5px;
  word-break: break-all;
  margin-bottom: 10px;
}
.vault-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.25));
  border: 1px solid rgba(201,168,76,0.35);
  color: #f5d680;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.vault-copy-btn:hover {
  background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.4));
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
  transform: translateY(-1px);
}

/* Tier thresholds */
.vault-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}
.vault-tier {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}
.vault-tier-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 700;
  color: #f5d680;
  margin-bottom: 2px;
}
.vault-tier-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(200,200,200,0.35);
}

/* Wallet lookup */
.vault-lookup {
  display: flex;
  gap: 0;
  margin-bottom: 8px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}
.vault-lookup-input {
  flex: 1;
  padding: 10px 14px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  outline: none;
}
.vault-lookup-input::placeholder { color: rgba(200,200,200,0.25); }
.vault-lookup-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.35));
  border: none;
  border-left: 1px solid rgba(201,168,76,0.2);
  color: #f5d680;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s;
}
.vault-lookup-btn:hover { background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(201,168,76,0.5)); }
.vault-lookup-result {
  font-size: 0.75rem;
  color: rgba(200,200,200,0.5);
  min-height: 20px;
  margin-bottom: 8px;
}

/* Launch status */
.vault-status-bar {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.vault-status-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200,200,200,0.4);
}
.vault-status-badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #10b981;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  box-shadow: 0 0 12px rgba(16,185,129,0.15);
  animation: vaultStatusPulse 2s ease-in-out infinite;
}
@keyframes vaultStatusPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(16,185,129,0.15); }
  50% { box-shadow: 0 0 24px rgba(16,185,129,0.3); }
}

/* Responsive */
@media (max-width: 540px) {
  .vault-showcase-inner { padding: 28px 18px 24px; }
  .vault-tiers { grid-template-columns: 1fr; gap: 8px; }
}

/* --- Vault Layout: Primary + Secondary --- */
.vault-layout {
  margin: 32px auto 0;
  max-width: 620px;
}
.vault-primary .vault-showcase {
  max-width: 100%;
  margin: 0 auto;
}
.vault-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
/* --- Compact secondary token cards --- */
.vault-mini-card {
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(201,168,76,0.3), rgba(255,255,255,0.1));
  background-size: 200% 200%;
  animation: vaultDiamondShift 6s ease-in-out infinite;
}
.vault-mini-inner {
  background: linear-gradient(170deg, rgba(15,12,25,0.97), rgba(8,6,16,0.99));
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.vault-mini-emblem {
  width: 48px;
  height: 48px;
  position: relative;
}
.vault-mini-emblem-svg { width: 48px; height: 48px; }
.vault-mini-emblem-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.vault-mini-info { text-align: center; }
.vault-mini-name {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: #f0f0f0;
  margin: 0;
}
.vault-mini-ticker {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
}
.vault-mini-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.vault-mini-contract {
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  color: rgba(200,200,200,0.4);
}
.vault-mini-copy {
  font-size: 0.65rem !important;
  padding: 4px 8px !important;
}
.vault-mini-status {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 20px;
}
@media (max-width: 600px) {
  .vault-secondary-grid { grid-template-columns: 1fr; }
}
.vault-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: #f5d680;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.vault-arrow:hover {
  background: rgba(201,168,76,0.25);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
  transform: translateY(-50%) scale(1.1);
}
.vault-arrow-left { left: -52px; }
.vault-arrow-right { right: -52px; }
.vault-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.vault-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.vault-dot:hover { background: rgba(201,168,76,0.3); }
.vault-dot.active {
  background: rgba(201,168,76,0.7);
  border-color: #f5d680;
  box-shadow: 0 0 10px rgba(201,168,76,0.3);
}

@media (max-width: 640px) {
  .vault-arrow-left { left: -6px; }
  .vault-arrow-right { right: -6px; }
  .vault-arrow { width: 32px; height: 32px; background: rgba(201,168,76,0.2); }
}

/* --- Token Portfolio Tabs --- */
.cap-token-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cap-token-tab {
  background: rgba(15,10,25,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(200,200,200,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.cap-token-tab:hover { border-color: rgba(99,102,241,0.25); color: rgba(200,200,200,0.8); }
.cap-token-tab.active { background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(124,58,237,0.15)); border-color: rgba(99,102,241,0.4); color: #818cf8; }

/* --- Token Cards Grid --- */
.cap-token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.cap-token-card {
  background: rgba(12,8,20,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cap-token-card:hover { border-color: rgba(99,102,241,0.3); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(99,102,241,0.08); }
.cap-token-card.cap-hidden { display: none; }
.cap-token-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cap-token-logo { width: 32px; height: 32px; flex-shrink: 0; }
.cap-token-name { display: block; font-size: 0.85rem; font-weight: 600; color: #d0d0d0; }
.cap-token-ticker { display: block; font-size: 0.65rem; color: rgba(200,200,200,0.4); letter-spacing: 1px; }
.cap-token-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cap-token-price { font-size: 1.1rem; font-weight: 700; color: #e0e0e0; }
.cap-token-chg { font-size: 0.75rem; font-weight: 700; }
.cap-token-chg.positive { color: #10b981; }
.cap-token-chg.negative { color: #ef4444; }
.cap-sparkline { width: 100%; height: 30px; margin-bottom: 12px; }
.cap-trade-btn {
  display: block;
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.15);
  color: #818cf8;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
}
.cap-token-card:hover .cap-trade-btn { opacity: 1; }
.cap-trade-btn:hover { background: rgba(99,102,241,0.15); border-color: rgba(99,102,241,0.3); }

/* --- Community Stats --- */
.cap-community-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cap-comm-stat { text-align: center; }
.cap-comm-num {
  display: block;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.cap-comm-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200,200,200,0.4);
  margin-top: 4px;
}

/* --- Social Links --- */
.cap-social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cap-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  background: rgba(15,10,25,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(200,200,200,0.6);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.cap-social-btn svg { width: 18px; height: 18px; }
.cap-social-btn:hover { border-color: rgba(99,102,241,0.3); color: #818cf8; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(99,102,241,0.1); }

/* ── Capital Page: Gold Milestone Container Styling ── */
#page-div-capital .div-page-body .div-section {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 24px;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow:
    0 0 80px rgba(201, 168, 76, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(201, 168, 76, 0.1);
  padding: 48px 36px;
  overflow: hidden;
}
#page-div-capital .div-cta-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 24px;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow:
    0 0 80px rgba(201, 168, 76, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(201, 168, 76, 0.1);
}
#page-div-capital .div-stats-bar {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 24px;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow:
    0 0 80px rgba(201, 168, 76, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(201, 168, 76, 0.1);
}
/* Containers clip canvases to their rounded borders */
.cap-fx-container {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
/* Canvas overlays for hex mesh + sparkles — stay inside container */
.cap-fx-hex, .cap-fx-sparkle {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  border-radius: inherit;
}
.cap-fx-hex { z-index: 0; opacity: 0.4; }
.cap-fx-sparkle { z-index: 1; opacity: 0.7; }
/* Content sits above canvases */
.cap-fx-container > *:not(canvas) {
  position: relative;
  z-index: 2;
}
/* Section title: chrome shimmer shine effect */
#page-div-capital .div-section-title {
  font-weight: 300;
  letter-spacing: 0.12em;
  background: linear-gradient(
    135deg,
    #6b6b6b 0%,
    #a0a0a0 20%,
    #f0f0f0 40%,
    #e0e0e0 50%,
    #a0a0a0 60%,
    #6b6b6b 80%,
    #a0a0a0 100%
  ) !important;
  background-size: 200% 200% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: capChromeShimmer 6s ease-in-out infinite !important;
}
#page-div-capital .div-section-desc {
  color: rgba(200, 200, 200, 0.6);
}
@keyframes capChromeShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
/* Milestone divider header */
.cap-milestone-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}
.cap-divider-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}
.cap-milestone-icon {
  font-size: 14px;
  background: linear-gradient(135deg, #c9a84c, #f5d680, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cap-gold-pulse 3s ease-in-out infinite;
}
@keyframes cap-gold-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@media (max-width: 600px) {
  #page-div-capital .div-page-body .div-section { padding: 32px 16px; }
}

/* ============================================
   WALLET CONNECT BUTTON & STATES
   ============================================ */
.nav-wallet-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(99,102,241,0.1));
  border: 1px solid rgba(124,58,237,0.3);
  color: #a855f7;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-wallet-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-wallet-btn:hover {
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(99,102,241,0.2));
  border-color: rgba(124,58,237,0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(124,58,237,0.15);
}
.nav-wallet-btn.connected {
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.08));
  border-color: rgba(16,185,129,0.3);
  color: #10b981;
}
.nav-wallet-btn.connected:hover {
  background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.15));
  border-color: rgba(16,185,129,0.5);
  box-shadow: 0 4px 16px rgba(16,185,129,0.1);
}
.nav-wallet-btn.master {
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.08));
  border-color: rgba(245,158,11,0.4);
  color: #f59e0b;
}
.nav-wallet-btn.master:hover {
  box-shadow: 0 4px 16px rgba(245,158,11,0.15);
}

/* Badge tier indicator in nav */
.nav-wallet-badge {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-left: 4px;
}
.nav-wallet-badge.tier-8 { background: rgba(168,85,247,0.2); color: #a855f7; }
.nav-wallet-badge.tier-88 { background: rgba(99,102,241,0.2); color: #818cf8; }
.nav-wallet-badge.tier-888 { background: rgba(245,158,11,0.2); color: #f59e0b; }
.nav-wallet-badge.tier-master { background: rgba(245,158,11,0.3); color: #f59e0b; }

/* Wallet disconnect dropdown */
.nav-wallet-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: rgba(15,10,25,0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px;
  min-width: 200px;
  z-index: 1000;
  backdrop-filter: blur(12px);
}
.nav-wallet-dropdown.open { display: block; }
.nav-wallet-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(200,200,200,0.6);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: none;
  width: 100%;
  font-family: inherit;
}
.nav-wallet-dropdown-item:hover { background: rgba(255,255,255,0.04); color: #e0e0e0; }
.nav-wallet-dropdown-item.disconnect { color: #ef4444; }
.nav-wallet-dropdown-item.disconnect:hover { background: rgba(239,68,68,0.08); }
.nav-wallet-dropdown-item svg { width: 14px; height: 14px; }
.nav-wallet-info {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 4px;
}
.nav-wallet-info-addr {
  font-size: 0.7rem;
  color: rgba(200,200,200,0.5);
  font-family: monospace;
}
.nav-wallet-info-tier {
  font-size: 0.65rem;
  color: #a855f7;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Phantom install prompt */
.phantom-install-prompt {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.phantom-install-prompt.open { display: flex; }
.phantom-install-box {
  background: rgba(15,10,25,0.95);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 400px;
  text-align: center;
}
.phantom-install-box h3 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  color: #e0e0e0;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.phantom-install-box p {
  color: rgba(200,200,200,0.5);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.phantom-install-box a {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7C3AED, #6366f1);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s;
}
.phantom-install-box a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,0.3); }
.phantom-install-close {
  display: block;
  margin-top: 16px;
  background: none;
  border: none;
  color: rgba(200,200,200,0.4);
  font-size: 0.8rem;
  cursor: pointer;
}

/* ============================================
   HOSPITALITY PAGE — Luxury Hotel Design
   ============================================ */
.hosp-hero { position: relative; overflow: hidden; }
.hosp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.hosp-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(10,0,20,0.5) 0%, rgba(10,0,20,0.7) 50%, rgba(10,0,20,0.95) 100%); }
.hosp-hero-ctas { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.hosp-btn-primary { display: inline-block; padding: 14px 36px; border-radius: 0; background: #ec4899; color: #fff; font-family: var(--font-heading,'Outfit',sans-serif); font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; border: none; }
.hosp-btn-primary:hover { background: #db2777; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(236,72,153,0.3); }
.hosp-btn-ghost { display: inline-block; padding: 14px 36px; border: 1px solid rgba(236,72,153,0.4); color: #f9a8d4; font-family: var(--font-heading,'Outfit',sans-serif); font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; background: transparent; }
.hosp-btn-ghost:hover { border-color: #ec4899; color: #fff; transform: translateY(-2px); }

/* Destination Cards */
.hosp-dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.hosp-dest-card { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; transition: all 0.4s; }
.hosp-dest-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(236,72,153,0.15); }
.hosp-dest-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.hosp-dest-card:hover .hosp-dest-img { transform: scale(1.05); }
.hosp-dest-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px; background: linear-gradient(transparent, rgba(0,0,0,0.85)); }
.hosp-dest-tag { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 0.6rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: rgba(236,72,153,0.2); color: #f9a8d4; border: 1px solid rgba(236,72,153,0.3); margin-bottom: 8px; }
.hosp-dest-overlay h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 2px; }
.hosp-dest-overlay p { color: rgba(255,255,255,0.6); font-size: 0.78rem; margin-bottom: 6px; }
.hosp-dest-price { color: #f9a8d4; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; }

/* Photo Break */
.hosp-photo-break { position: relative; width: calc(100% + 48px); margin-left: -24px; height: 300px; overflow: hidden; margin-top: 60px; margin-bottom: 60px; }
.hosp-photo-break img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); }
.hosp-photo-break-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; }
.hosp-photo-quote { font-family: var(--font-heading,'Outfit',sans-serif); font-size: clamp(1rem, 2.5vw, 1.5rem); font-style: italic; color: rgba(255,255,255,0.8); text-align: center; max-width: 600px; line-height: 1.6; }
.hosp-photo-attr { font-size: 0.75rem; color: rgba(236,72,153,0.6); letter-spacing: 3px; text-transform: uppercase; margin-top: 12px; }

/* Experience Cards */
.hosp-exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.hosp-exp-card { background: rgba(12,8,20,0.6); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.hosp-exp-card:hover { border-color: rgba(236,72,153,0.25); transform: translateY(-4px); }
.hosp-exp-img { width: 100%; height: 180px; object-fit: cover; }
.hosp-exp-body { padding: 20px; }
.hosp-exp-date { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #ec4899; margin-bottom: 8px; }
.hosp-exp-card h3 { color: #e0e0e0; font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.hosp-exp-card p { color: rgba(200,200,200,0.45); font-size: 0.82rem; line-height: 1.5; margin-bottom: 12px; }
.hosp-exp-price { font-size: 0.8rem; font-weight: 700; color: #f9a8d4; }

/* ============================================
   ATELIER PAGE — Fashion Storefront Design
   ============================================ */
.atl-hero { position: relative; overflow: hidden; }
.atl-hero-bg { position: absolute; inset: 0; z-index: 0; }
.atl-hero-label { font-size: 0.65rem; letter-spacing: 10px; text-transform: uppercase; color: rgba(245,158,11,0.5); margin-bottom: 8px; }
.atl-hero-title { font-family: var(--font-heading,'Outfit',sans-serif); font-size: clamp(64px, 10vw, 120px); font-weight: 900; letter-spacing: 16px; background: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 0 0 16px; line-height: 1; }
.atl-hero-sub { font-size: 1rem; color: rgba(200,200,200,0.6); line-height: 1.7; max-width: 500px; margin: 0 auto 24px; }
.atl-shop-btn { display: inline-block; padding: 14px 40px; background: linear-gradient(135deg, #f59e0b, #d97706); color: #000; font-family: var(--font-heading,'Outfit',sans-serif); font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; }
.atl-shop-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.3); }

/* Product Grid */
.atl-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin-top: 24px; }
.atl-product-card { background: rgba(12,8,20,0.5); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden; transition: all 0.4s; }
.atl-product-card:hover { border-color: rgba(245,158,11,0.25); transform: translateY(-6px); box-shadow: 0 12px 36px rgba(245,158,11,0.08); }
.atl-product-img-wrap { position: relative; background: linear-gradient(135deg, rgba(15,10,25,0.8), rgba(25,15,35,0.6)); padding: 20px; display: flex; align-items: center; justify-content: center; min-height: 280px; }
.atl-product-img { max-width: 100%; max-height: 260px; object-fit: contain; transition: transform 0.4s; }
.atl-product-card:hover .atl-product-img { transform: scale(1.05); }
.atl-product-badge { position: absolute; top: 14px; left: 14px; padding: 4px 12px; border-radius: 4px; font-size: 0.6rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: rgba(168,85,247,0.15); color: #a855f7; border: 1px solid rgba(168,85,247,0.3); }
.atl-product-info { padding: 20px; }
.atl-product-info h3 { color: #e0e0e0; font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.atl-product-variant { font-size: 0.78rem; color: rgba(200,200,200,0.4); margin-bottom: 14px; }
.atl-product-sizes { display: flex; gap: 6px; margin-bottom: 16px; }
.atl-size { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 6px; border: 1px solid rgba(255,255,255,0.08); font-size: 0.65rem; font-weight: 600; color: rgba(200,200,200,0.4); cursor: pointer; transition: all 0.2s; }
.atl-size:hover, .atl-size.active { border-color: rgba(245,158,11,0.5); color: #f59e0b; background: rgba(245,158,11,0.08); }
.atl-product-bottom { display: flex; align-items: center; justify-content: space-between; }
.atl-product-price { font-size: 1.2rem; font-weight: 700; color: #e0e0e0; }
.atl-add-cart { padding: 8px 20px; border-radius: 6px; background: linear-gradient(135deg, #f59e0b, #d97706); border: none; color: #000; font-family: var(--font-heading,'Outfit',sans-serif); font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.atl-add-cart:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,158,11,0.3); }

/* Lookbook Grid */
.atl-lookbook-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; margin-top: 24px; }
.atl-lookbook-item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 1; }
.atl-lookbook-wide { aspect-ratio: auto; grid-row: span 2; }
.atl-lookbook-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.atl-lookbook-item:hover img { transform: scale(1.05); }
.atl-lookbook-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ============================================
   RWA PAGE — Fintech/Investment Design
   ============================================ */
.rwa-hero { position: relative; overflow: hidden; }
.rwa-grid-bg { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(16,185,129,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(16,185,129,0.04) 1px, transparent 1px); background-size: 50px 50px; animation: capGridDrift 25s linear infinite; }

/* Portfolio Summary Bar */
.rwa-portfolio-bar { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 28px; padding: 18px 28px; background: rgba(10,5,20,0.6); border: 1px solid rgba(16,185,129,0.15); border-radius: 14px; backdrop-filter: blur(8px); flex-wrap: wrap; }
.rwa-port-stat { text-align: center; }
.rwa-port-val { display: block; font-family: var(--font-heading,'Outfit',sans-serif); font-size: 1.3rem; font-weight: 800; color: #e0e0e0; }
.rwa-port-val.rwa-green { color: #10b981; }
.rwa-port-label { font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(200,200,200,0.35); margin-top: 2px; }
.rwa-port-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.06); }

/* Asset Cards */
.rwa-asset-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.rwa-asset-card { background: rgba(12,8,20,0.6); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.rwa-asset-card:hover { border-color: rgba(16,185,129,0.25); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(16,185,129,0.08); }
.rwa-asset-img-wrap { position: relative; height: 200px; overflow: hidden; }
.rwa-asset-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.rwa-asset-card:hover .rwa-asset-img { transform: scale(1.05); }
.rwa-asset-yield { position: absolute; top: 14px; right: 14px; padding: 4px 12px; border-radius: 6px; font-size: 0.7rem; font-weight: 700; color: #fff; background: rgba(16,185,129,0.9); }
.rwa-asset-body { padding: 20px; }
.rwa-asset-body h3 { color: #e0e0e0; font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.rwa-asset-body p { color: rgba(200,200,200,0.45); font-size: 0.82rem; line-height: 1.5; margin-bottom: 14px; }
.rwa-asset-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 14px; }
.rwa-meta-label { display: block; font-size: 0.6rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(200,200,200,0.3); margin-bottom: 2px; }
.rwa-meta-val { display: block; font-size: 0.85rem; font-weight: 600; color: rgba(200,200,200,0.7); }
.rwa-meta-val.rwa-green { color: #10b981; }
.rwa-asset-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.rwa-asset-bar-fill { height: 100%; background: linear-gradient(90deg, #059669, #10b981); border-radius: 4px; transition: width 0.6s; }

/* ============================================
   MEDIA PAGE — Content Production Design
   ============================================ */
.med-hero { position: relative; overflow: hidden; }
.med-hero-bg { position: absolute; inset: 0; z-index: 0; }
.med-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(15,0,0,0.5) 0%, rgba(10,0,5,0.75) 50%, rgba(10,0,5,0.98) 100%); }
.med-hero-ctas { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.med-btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; border-radius: 8px; background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff; font-family: var(--font-heading,'Outfit',sans-serif); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; border: none; }
.med-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(239,68,68,0.3); }
.med-btn-ghost { display: inline-block; padding: 14px 36px; border: 1px solid rgba(239,68,68,0.4); border-radius: 8px; color: #fca5a5; font-family: var(--font-heading,'Outfit',sans-serif); font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; background: transparent; }
.med-btn-ghost:hover { border-color: #ef4444; color: #fff; transform: translateY(-2px); }

/* Content Grid (Featured + 4 smaller) */
.med-content-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; margin-top: 24px; }
.med-content-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 16/10; cursor: pointer; transition: all 0.4s; }
.med-content-featured { grid-column: span 2; aspect-ratio: 21/9; }
.med-content-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.med-content-card:hover img { transform: scale(1.05); }
.med-content-card:hover { box-shadow: 0 12px 36px rgba(239,68,68,0.12); }
.med-content-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); }
.med-content-type { display: inline-flex; align-items: center; gap: 6px; font-size: 0.6rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fca5a5; margin-bottom: 6px; }
.med-content-type svg { width: 12px; height: 12px; }
.med-content-overlay h3 { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.med-content-overlay p { color: rgba(255,255,255,0.5); font-size: 0.78rem; line-height: 1.4; margin-bottom: 4px; }
.med-content-meta { font-size: 0.65rem; color: rgba(255,255,255,0.35); }
.med-content-featured .med-content-overlay h3 { font-size: 1.3rem; }

/* Creator Cards */
.med-creator-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.med-creator-card { display: flex; gap: 16px; background: rgba(12,8,20,0.6); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 20px; transition: all 0.3s; }
.med-creator-card:hover { border-color: rgba(239,68,68,0.25); transform: translateY(-3px); }
.med-creator-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(239,68,68,0.2); }
.med-creator-info h3 { color: #e0e0e0; font-size: 1rem; font-weight: 600; margin-bottom: 2px; }
.med-creator-role { font-size: 0.7rem; color: #ef4444; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.med-creator-bio { font-size: 0.78rem; color: rgba(200,200,200,0.45); line-height: 1.5; margin-bottom: 10px; }
.med-creator-stats { display: flex; align-items: center; gap: 10px; font-size: 0.7rem; color: rgba(200,200,200,0.4); }
.med-creator-tag { padding: 2px 8px; border-radius: 4px; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.med-creator-tag.featured { background: rgba(239,68,68,0.12); color: #ef4444; }
.med-creator-tag.core { background: rgba(168,85,247,0.12); color: #a855f7; }
.med-creator-tag.rising { background: rgba(245,158,11,0.12); color: #f59e0b; }

/* ============================================
   FUTURE ADDITIONS PAGE
   ============================================ */
.fut-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.fut-card {
  background: rgba(12,8,20,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.fut-card:hover {
  border-color: rgba(168,85,247,0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(124,58,237,0.1);
}
.fut-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.fut-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  filter: brightness(0.7) saturate(0.8);
}
.fut-card:hover .fut-card-img img {
  transform: scale(1.08);
  filter: brightness(0.8) saturate(1);
}
.fut-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(168,85,247,0.2);
  color: #c084fc;
  border: 1px solid rgba(168,85,247,0.3);
  backdrop-filter: blur(8px);
}
.fut-card-body {
  padding: 24px;
}
.fut-card-icon {
  margin-bottom: 12px;
}
.fut-card-icon svg {
  width: 36px;
  height: 36px;
}
.fut-card-body h3 {
  font-family: var(--font-heading,'Outfit',sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #e0e0e0;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.fut-card-sub {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a855f7;
  margin-bottom: 14px;
}
.fut-card-body p {
  font-size: 0.82rem;
  color: rgba(200,200,200,0.5);
  line-height: 1.7;
  margin-bottom: 16px;
}
.fut-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.fut-card-tags span {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(124,58,237,0.08);
  color: rgba(200,200,200,0.4);
  border: 1px solid rgba(255,255,255,0.04);
}

/* --- Background Music Toggle --- */
/* Music toggle hidden — music auto-plays on interaction, no user controls */
.bg-music-toggle {
  display: none !important;
}

/* --- Event card hidden state for filtering --- */
.div-event-card.auto-hidden {
  display: none;
}

/* ============================================
   DIVISION RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .div-hero-title { letter-spacing: 6px; }
  .div-hero-content > img[src="relogo.png"] { width: min(300px, 60vw) !important; }
  .div-hero-icon { width: 80px; height: 80px; }
  .div-feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .div-stats-bar { gap: 24px; }
  .div-stat-num { font-size: 28px; }
  .div-event-board { grid-template-columns: 1fr; }
  .div-listing-grid { grid-template-columns: 1fr; }
  .div-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .div-two-col { grid-template-columns: 1fr; }
  .div-cta-banner { padding: 32px 20px; }
  .div-cta-banner h3 { font-size: 1.2rem; }
  .auto-tier-grid { grid-template-columns: 1fr; gap: 16px; }
  .auto-tier-card { padding: 28px 20px; }
  .auto-event-tabs { gap: 6px; }
  .auto-event-tab { padding: 6px 14px; font-size: 0.7rem; }
  .auto-event-details { grid-template-columns: 1fr; }
  .auto-member-header { flex-direction: column; }
  .auto-member-header .div-section-title { text-align: center !important; }
  .auto-member-header .div-section-desc { text-align: center !important; }
  .auto-post-btn { align-self: center; }
  .auto-form-row-2, .auto-form-row-3 { grid-template-columns: 1fr; }
  .auto-countdown-digits { gap: 4px; }
  .auto-cd-unit { min-width: 44px; }
  .auto-cd-unit span { font-size: 24px; }
  .cap-price-meta { grid-template-columns: repeat(2, 1fr); }
  .cap-hero-ctas { flex-direction: column; align-items: center; }
  .vault-showcase-inner { padding: 28px 16px 24px; }
  .cap-token-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-community-stats { gap: 24px; }
  .cap-social-links { flex-direction: column; align-items: center; }
  .hosp-dest-grid { grid-template-columns: 1fr; }
  .hosp-exp-grid { grid-template-columns: 1fr; }
  .hosp-photo-break { height: 200px; }
  .atl-product-grid { grid-template-columns: 1fr; }
  .atl-lookbook-grid { grid-template-columns: 1fr; }
  .atl-lookbook-wide { grid-row: span 1; }
  .atl-hero-title { letter-spacing: 8px; }
  .rwa-asset-grid { grid-template-columns: 1fr; }
  .rwa-portfolio-bar { gap: 16px; }
  .rwa-port-divider { display: none; }
  .med-content-grid { grid-template-columns: 1fr; }
  .med-content-featured { grid-column: span 1; aspect-ratio: 16/9; }
  .med-creator-grid { grid-template-columns: 1fr; }
  .med-creator-card { flex-direction: column; align-items: center; text-align: center; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

}

/* ============================================
   DASHBOARD — CLUB STATUS CARD
   ============================================ */
.dash-club-status-card {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 12px;
  text-align: center;
}
.dash-club-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
}
.dash-club-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.dash-club-badge.pending {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
}
.dash-club-badge.approved {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}
.dash-club-badge.denied {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}
.dash-club-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CLUB APPLICATION MODAL
   ============================================ */
.club-apply-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.club-apply-overlay.open { display: flex; }

.club-apply-card {
  position: relative;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(8, 6, 16, 0.95);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-top: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 24px;
  box-shadow: 0 0 80px rgba(124, 58, 237, 0.15), 0 40px 80px rgba(0, 0, 0, 0.8);
}

.club-apply-hex-canvas,
.club-apply-sparkle-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  border-radius: 24px;
}
.club-apply-hex-canvas { z-index: 0; opacity: 0.3; }
.club-apply-sparkle-canvas { z-index: 1; opacity: 0.5; }

.club-apply-content {
  position: relative;
  z-index: 2;
  padding: 48px 40px;
}

.club-apply-close {
  position: absolute;
  top: 16px; right: 20px;
  z-index: 10;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.club-apply-close:hover { color: #fff; }

.club-apply-header {
  text-align: center;
  margin-bottom: 32px;
}
.club-apply-header h2 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--chrome-white);
  margin-bottom: 6px;
}
.club-apply-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--neon-purple);
  opacity: 0.7;
}

/* Form sections */
.club-form-section {
  margin-bottom: 24px;
}
.club-form-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
}
.club-form-hint {
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.2);
}

/* Form inputs */
.club-form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(15, 12, 25, 0.8);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}
.club-form-input:focus {
  border-color: rgba(124, 58, 237, 0.4);
}
.club-form-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.club-form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.club-form-select option {
  background: #0a0a14;
  color: #fff;
}
.club-form-textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 160px;
}

/* Form grid rows */
.club-form-row {
  display: grid;
  gap: 10px;
}
.club-form-row-2 { grid-template-columns: 1fr 1fr; }
.club-form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.club-form-row-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

/* Photo upload */
.club-photo-upload {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.club-photo-slot {
  position: relative;
  aspect-ratio: 1;
  border: 1px dashed rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}
.club-photo-slot:hover { border-color: rgba(124, 58, 237, 0.5); }
.club-photo-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.club-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(124, 58, 237, 0.4);
}
.club-photo-preview {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
.club-photo-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  font-size: 10px;
  color: var(--neon-purple);
  letter-spacing: 0.1em;
}

/* Submit button */
.club-form-submit {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background: var(--neon-purple);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
  transition: all 0.3s;
}
.club-form-submit:hover {
  background: #8b5cf6;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.5);
  transform: translateY(-1px);
}
.club-form-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* Status states */
.club-apply-status {
  text-align: center;
  padding: 40px 0;
}
.club-status-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.6;
}
.club-apply-status h3 {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--chrome-white);
  margin-bottom: 12px;
}
.club-apply-status p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto 24px;
}
.club-reapply-btn {
  width: auto;
  display: inline-block;
  padding: 14px 40px;
}

/* Responsive */
@media (max-width: 600px) {
  .club-apply-content { padding: 36px 20px; }
  .club-form-row-3, .club-form-row-4 { grid-template-columns: 1fr 1fr; }
  .club-form-row-2 { grid-template-columns: 1fr; }
}

/* ============================================
   TOKEN VERIFICATION OVERLAY
   ============================================ */
.rev-verify-inner {
  background: rgba(5, 0, 15, 0.96);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-top: 1px solid rgba(168, 85, 247, 0.5);
  border-radius: 24px;
  padding: 48px 44px;
  max-width: 440px;
  width: calc(100vw - 40px);
  text-align: center;
  box-shadow: 0 0 80px rgba(124, 58, 237, 0.25), 0 40px 80px rgba(0,0,0,0.9);
  position: relative;
  overflow: hidden;
}

.rev-verify-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.6), transparent);
}

.rev-verify-logo {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #7C3AED, #a855f7, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.rev-verify-inner h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}

.rev-verify-addr {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
  margin-bottom: 28px;
}

.rev-verify-steps {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.rev-verify-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

/* Status dots */
.rvs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.rvs-dot.pending {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}

.rvs-dot.active {
  background: #7C3AED;
  box-shadow: 0 0 8px rgba(124,58,237,0.8);
  animation: dotPulse 1s ease-in-out infinite;
}

.rvs-dot.done {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16,185,129,0.6);
}

.rvs-dot.error {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239,68,68,0.6);
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(124,58,237,0.8); }
  50% { box-shadow: 0 0 18px rgba(124,58,237,1), 0 0 30px rgba(124,58,237,0.4); }
}

.rev-verify-balance {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.rvs-balance {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.rvs-balance strong {
  color: #a855f7;
}

.rvs-balance.master {
  color: #f59e0b;
  font-size: 20px;
  letter-spacing: 0.06em;
}

.rev-verify-badge-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 16px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 14px;
  margin-top: 8px;
}

.rvs-badge-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(124,58,237,0.5));
}

.rvs-badge-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.rvs-badge-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.rvs-badge-label.tier-8   { color: #a1a1aa; }
.rvs-badge-label.tier-88  { color: #f59e0b; }
.rvs-badge-label.tier-888 { color: #a855f7; }

.rvs-badge-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.rvs-no-badge {
  color: #ef4444;
  font-size: 13px;
  text-align: center;
  width: 100%;
}

/* Tier badge classes (nav wallet badge) */
.nav-wallet-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  margin-left: 6px;
  letter-spacing: 0.05em;
}

.nav-wallet-badge.tier-8   { background: rgba(161,161,170,0.15); color: #a1a1aa; border: 1px solid rgba(161,161,170,0.25); }
.nav-wallet-badge.tier-88  { background: rgba(245,158,11,0.15);  color: #f59e0b; border: 1px solid rgba(245,158,11,0.3); }
.nav-wallet-badge.tier-888 { background: rgba(168,85,247,0.15);  color: #a855f7; border: 1px solid rgba(168,85,247,0.3); }
.nav-wallet-badge.tier-master { background: rgba(245,158,11,0.2); color: #f59e0b; border: 1px solid rgba(245,158,11,0.4); }

/* ============================================
   CAPITAL PAGE — YOUR HOLDINGS CARD
   ============================================ */
.cap-holdings-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px 20px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  animation: holdingsPulse 3s ease-in-out infinite;
}

@keyframes holdingsPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); }
  50% { box-shadow: 0 0 20px rgba(124,58,237,0.2); }
}

.cap-holdings-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cap-holdings-icon svg {
  width: 18px;
  height: 18px;
}

.cap-holdings-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  flex: 1;
}

.cap-holdings-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.cap-holdings-val {
  font-size: 16px;
  font-weight: 700;
  color: #a855f7;
  font-family: monospace;
  letter-spacing: 0.04em;
}

.cap-holdings-usd {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.cap-holdings-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: #a855f7;
  white-space: nowrap;
}

/* ============================================
   WALLET GATE MODAL
   ============================================ */
.wallet-gate-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}

.wallet-gate-overlay.open {
  display: flex;
  animation: wgFadeIn 0.35s ease;
}

@keyframes wgFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.wallet-gate-modal {
  position: relative;
  max-width: 440px;
  width: 90%;
  padding: 40px 36px 32px;
  background: rgba(14,10,24,0.92);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 20px;
  backdrop-filter: blur(30px);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.04);
  text-align: center;
  animation: wgSlideUp 0.4s cubic-bezier(0.16,1,0.3,1);
}

@keyframes wgSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wallet-gate-icon {
  margin: 0 auto 18px;
  width: 64px;
  height: 64px;
}
.wallet-gate-icon svg {
  width: 100%;
  height: 100%;
}

.wallet-gate-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.wallet-gate-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.wallet-gate-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.wallet-gate-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.wallet-gate-perks li:last-child {
  border-bottom: none;
}

.wallet-gate-dismiss {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 13px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  color: #C9A84C;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  transition: all 0.3s ease;
}

.wallet-gate-dismiss:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.35);
  color: #e8d080;
}


