/* ============================================================
   RACOONHOOD NFT - SHERWOOD OUTLAW & CYBER POP STYLING
   ============================================================ */

:root {
  --bg-deep: #060e09;
  --bg-panel: rgba(10, 24, 16, 0.88);
  --bg-card: rgba(14, 34, 22, 0.75);
  --green: #10b981;
  --green-bright: #00ff77;
  --green-dim: rgba(16, 185, 129, 0.2);
  --forest: #059669;
  --gold: #fbbf24;
  --gold-bright: #f59e0b;
  --gold-dim: rgba(251, 191, 36, 0.2);
  --feather-red: #ef4444;
  --cyan: #00f3ff;
  --cyan-dim: rgba(0, 243, 255, 0.2);
  --text-main: #f0fdf4;
  --text-muted: #86efac;
  --text-muted-dark: #6ee7b7;
  --border-green: 1px solid rgba(16, 185, 129, 0.4);
  --border-gold: 1px solid rgba(251, 191, 36, 0.4);
  --glow-green: 0 0 18px rgba(0, 255, 119, 0.45);
  --glow-gold: 0 0 20px rgba(251, 191, 36, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background grid & scanlines - Sherwood Outlaw Glow */
.cyber-bg {
  background: 
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.16) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(251, 191, 36, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(5, 150, 105, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, #040a06 0%, #08150e 100%);
}

.cyber-scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%
  );
  background-size: 100% 4px;
  z-index: 999;
  opacity: 0.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(8, 10, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.glitch {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--cyan), 0 0 20px var(--purple);
}

.tagline {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  color: var(--cyan);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  position: relative;
}

.nav-item:hover, .nav-item.highlight {
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan);
}

.header-actions {
  display: flex;
  gap: 1rem;
}

/* BUTTONS */
.cyber-btn {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 0.75rem 1.6rem;
  color: #fff;
  background: transparent;
  border: 1px solid var(--cyan);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.cyber-btn:hover {
  background: var(--cyan);
  color: #000;
  box-shadow: var(--glow-cyan);
}

.cyber-btn.neon-green, .cyber-btn.neon-cyan {
  border-color: var(--green);
  color: var(--green-bright);
}

.cyber-btn.neon-green:hover, .cyber-btn.neon-cyan:hover {
  background: var(--green);
  color: #040e07;
  box-shadow: var(--glow-green);
}

.cyber-btn.sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.primary-mint-btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 1.15rem;
  background: linear-gradient(90deg, #10b981, #f59e0b);
  border: 1px solid #fbbf24;
  color: #04130a;
  font-weight: 900;
  letter-spacing: 1px;
  margin-top: 1.2rem;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.45);
}

.primary-mint-btn:hover {
  background: linear-gradient(90deg, #f59e0b, #00ff77);
  box-shadow: 0 0 35px rgba(0, 255, 119, 0.6);
  transform: translateY(-2px);
}

.primary-mint-btn:disabled,
.primary-mint-btn.disabled-mint {
  background: rgba(15, 28, 20, 0.85) !important;
  border: 1px dashed rgba(251, 191, 36, 0.45) !important;
  color: #a7f3d0 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
  transform: none !important;
  opacity: 0.75;
}

/* HERO SECTION */
.hero-section {
  padding: 4rem 3rem 5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

/* CYBER FRAME PREVIEW */
.cyber-frame {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 1.2rem;
  box-shadow: var(--glow-green);
}

.frame-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--gold);
  pointer-events: none;
}
.frame-corner.top-left { top: -2px; left: -2px; border-top: 3px solid; border-left: 3px solid; }
.frame-corner.top-right { top: -2px; right: -2px; border-top: 3px solid; border-right: 3px solid; }
.frame-corner.bottom-left { bottom: -2px; left: -2px; border-bottom: 3px solid; border-left: 3px solid; }
.frame-corner.bottom-right { bottom: -2px; right: -2px; border-bottom: 3px solid; border-right: 3px solid; }

.badge-status {
  position: absolute;
  top: 1.8rem;
  left: 1.8rem;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-family: 'Share Tech Mono', monospace;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 10px var(--green); }
  100% { transform: scale(0.9); opacity: 0.6; }
}

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

.img-wrapper img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.img-wrapper:hover img {
  transform: scale(1.03);
}

.nft-info-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 0.5rem 0.2rem;
}

.nft-info-strip .label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--cyan);
}

.nft-info-strip h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
}

.rarity-tag {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 3px;
  text-transform: uppercase;
}
.rarity-tag.legend {
  background: rgba(255, 183, 3, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.4);
}

.preview-thumbnails {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.preview-thumbnails .thumb {
  width: 58px;
  height: 58px;
  border-radius: 4px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.preview-thumbnails .thumb:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.preview-thumbnails .thumb.active {
  opacity: 1;
  border-color: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

/* TERMINAL PANEL */
.cyber-panel {
  background: var(--bg-panel);
  border: 1px solid rgba(188, 19, 254, 0.35);
  box-shadow: var(--glow-purple);
  padding: 2rem;
  position: relative;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}
.terminal-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.terminal-dots .red { background: #ff5f56; }
.terminal-dots .yellow { background: #ffbd2e; }
.terminal-dots .green { background: #27c93f; }

.terminal-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: var(--cyan);
}

.network-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid var(--cyan);
  color: var(--cyan);
}

.phase-badge-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.badge {
  font-size: 0.75rem;
  font-family: 'Share Tech Mono', monospace;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.badge.active-phase {
  background: rgba(0, 255, 102, 0.15);
  border: 1px solid var(--green);
  color: var(--green);
}

.badge.gas-saving {
  background: rgba(188, 19, 254, 0.15);
  border: 1px solid var(--purple);
  color: #ea80fc;
}

.mint-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
  background: linear-gradient(90deg, #fff, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mint-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.8rem;
}

/* PROGRESS BAR */
.mint-progress-container {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.counter-highlight strong {
  color: var(--cyan);
  font-size: 1.1rem;
}

.progress-bar-bg {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  box-shadow: 0 0 10px var(--cyan);
  transition: width 0.6s ease;
}

.progress-footer {
  display: flex;
  justify-content: space-between;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.speed-label {
  color: var(--gold);
}

/* PRICE GRID */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.price-item {
  background: rgba(0, 0, 0, 0.35);
  padding: 0.8rem;
  border-left: 3px solid var(--cyan);
}

.price-item .p-label {
  display: block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-item .p-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

/* MINT CONTROLS */
.mint-controls {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--cyan);
}

.qty-btn {
  background: transparent;
  border: none;
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: rgba(0, 243, 255, 0.2);
}

.qty-display {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  width: 50px;
  text-align: center;
  color: #fff;
}

.qty-preset-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  padding: 0.7rem 1.2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.qty-preset-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(188, 19, 254, 0.15);
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(0, 243, 255, 0.05);
  border: 1px dashed rgba(0, 243, 255, 0.3);
}

.total-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.total-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan);
}

.recent-mint-ticker {
  margin-top: 1.2rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker-label {
  color: var(--green);
}

.tx-status-msg {
  margin-top: 0.8rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  text-align: center;
}

/* SECTION STYLES */
.section-container {
  padding: 5rem 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  color: var(--cyan);
  display: block;
  margin-bottom: 0.4rem;
}

.section-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* CARD GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.agent-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.agent-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.agent-card.highlight-border {
  border-color: rgba(255, 183, 3, 0.5);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.2);
}

.agent-img-box {
  position: relative;
}

.agent-img-box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.chip {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
}
.chip.rare { background: rgba(0, 243, 255, 0.2); border: 1px solid var(--cyan); color: var(--cyan); }
.chip.epic { background: rgba(0, 255, 102, 0.2); border: 1px solid var(--green); color: var(--green); }
.chip.legend { background: rgba(255, 183, 3, 0.3); border: 1px solid var(--gold); color: var(--gold); }

.agent-desc {
  padding: 1.5rem;
}

.agent-desc h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.agent-desc p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.traits-mini {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.traits-mini span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cyan);
}

/* RARITY TABLE */
.rarity-table-wrapper {
  background: var(--bg-panel);
  border: 1px solid rgba(0, 243, 255, 0.2);
  overflow-x: auto;
}

.cyber-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.cyber-table th, .cyber-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cyber-table th {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: var(--cyan);
  background: rgba(0, 0, 0, 0.3);
}

.cyber-table td {
  font-size: 0.95rem;
}

.rarity-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-right: 0.5rem;
}

.rarity-badge.common { background: rgba(142, 155, 176, 0.2); color: #abb9cf; border: 1px solid #8e9bb0; }
.rarity-badge.rare { background: rgba(0, 243, 255, 0.2); color: var(--cyan); border: 1px solid var(--cyan); }
.rarity-badge.epic { background: rgba(188, 19, 254, 0.2); color: #ea80fc; border: 1px solid var(--purple); }
.rarity-badge.legend { background: rgba(255, 183, 3, 0.2); color: var(--gold); border: 1px solid var(--gold); }

/* ROADMAP */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.timeline-step {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-step:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.step-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 243, 255, 0.15);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.step-content h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--cyan);
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* MODAL */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-backdrop.open {
  display: flex;
}

.modal-cyber-box {
  background: var(--bg-panel);
  border: 2px solid var(--cyan);
  box-shadow: var(--glow-cyan);
  max-width: 440px;
  width: 90%;
  padding: 2.2rem;
  text-align: center;
  position: relative;
  animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.modal-nft-card {
  margin: 1.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem;
}

.modal-nft-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.modal-nft-details {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
  font-family: 'Orbitron', sans-serif;
}

.modal-token-id {
  font-weight: 700;
  color: #fff;
}

.modal-rarity {
  color: var(--gold);
  font-size: 0.8rem;
}

.modal-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
}

.brand-sm {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}

/* ============================================================
   MINT SCHEDULE (OPENSEA STYLE)
   ============================================================ */
.mint-schedule-block {
  margin-top: 1.5rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 243, 255, 0.25);
  padding: 1.2rem;
  border-radius: 4px;
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.8rem;
}

.schedule-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cyan);
}

.timezone-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.15rem 0.5rem;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  transition: all 0.2s ease;
}

.schedule-row.ended {
  opacity: 0.6;
}

.schedule-row.active {
  background: rgba(0, 243, 255, 0.06);
  border: 1px solid var(--cyan);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
  opacity: 1;
}

.schedule-col-main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.schedule-phase-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-family: 'Rajdhani', sans-serif;
}

.schedule-phase-title strong {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
}

.pill-type {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border-radius: 2px;
}

.pill-type.live-pill {
  background: rgba(0, 255, 102, 0.15);
  border: 1px solid var(--green);
  color: var(--green);
  font-weight: 700;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-indicator.gray {
  background: #555e6d;
}

.status-indicator.green-pulse {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.5s infinite;
}

.schedule-sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.schedule-terms {
  font-size: 0.85rem;
  color: var(--text-main);
  margin-top: 0.1rem;
}

.free-text {
  color: var(--green);
  font-weight: 700;
}

.text-cyan {
  color: var(--cyan);
}

.schedule-col-eligibility {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

.eligibility-status {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.eligibility-status.not-eligible {
  background: rgba(255, 255, 255, 0.05);
  color: #7b8798;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.eligibility-status.upcoming {
  background: rgba(0, 243, 255, 0.12);
  color: var(--cyan);
  border: 1px solid var(--cyan);
  box-shadow: 0 0 8px rgba(0, 243, 255, 0.25);
}

.eligibility-status.gtd-gold {
  background: rgba(255, 183, 3, 0.15);
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: 0 0 8px rgba(255, 183, 3, 0.3);
}

.status-indicator.gold-pulse {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.status-indicator.cyan-pulse {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.eligibility-status.eligible {
  background: rgba(0, 255, 102, 0.2);
  color: var(--green);
  border: 1px solid var(--green);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

.phase-state-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.phase-state-text.live-text {
  color: var(--cyan);
  font-weight: 700;
}

/* ============================================================
   3,333 COLLECTION EXPLORER & DNA AUDIT STYLING
   ============================================================ */
.audit-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid var(--green);
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.15);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  border-radius: 4px;
}

.audit-badge-icon {
  font-size: 2.5rem;
}

.audit-info h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 0.3rem;
}

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

.audit-stats {
  margin-left: auto;
  text-align: right;
  border-left: 2px solid rgba(0, 255, 102, 0.3);
  padding-left: 1.5rem;
}

.audit-stats .stat-num {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}

.audit-stats .stat-sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--green);
}

.explorer-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 243, 255, 0.4);
  padding: 0.7rem 1.2rem;
  flex: 1;
  max-width: 420px;
  border-radius: 4px;
}

.search-box input {
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  outline: none;
  width: 100%;
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 3px;
}

.filter-pill:hover, .filter-pill.active {
  background: rgba(0, 243, 255, 0.15);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

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

.token-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 4px;
  transition: all 0.25s ease;
  position: relative;
}

.token-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.token-card.legendary-card {
  border-color: rgba(255, 183, 3, 0.5);
  box-shadow: 0 0 15px rgba(255, 183, 3, 0.2);
}

.token-thumb-box {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 0.8rem;
}

.token-thumb-box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.token-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.token-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.dna-box {
  background: rgba(0, 0, 0, 0.6);
  border: 1px dashed rgba(0, 243, 255, 0.3);
  padding: 0.4rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.7rem;
}

.dna-label {
  display: flex;
  justify-content: space-between;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  color: var(--cyan);
  margin-bottom: 0.2rem;
}

.dna-hash {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  color: var(--green);
  word-break: break-all;
  line-height: 1.1;
}

.token-traits-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.5rem;
}

.trait-row {
  display: flex;
  justify-content: space-between;
}

.trait-type {
  color: var(--text-muted);
}

.trait-val {
  color: #fff;
  font-weight: 600;
  text-align: right;
}

.explorer-load-more {
  text-align: center;
  margin-top: 2.5rem;
}

.loading-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  font-family: 'Orbitron', sans-serif;
  color: var(--cyan);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .card-grid, .timeline {
    grid-template-columns: 1fr;
  }
  .navbar {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
}

/* FAIR RANDOM MINT SECTION */
.fair-mint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.fair-mint-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.fair-mint-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(0, 243, 255, 0.15);
}

.fair-mint-card .f-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.fair-mint-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.fair-mint-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.edition-tag {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.35rem 0.8rem;
  background: rgba(0, 243, 255, 0.15);
  border: 1px solid var(--cyan);
  color: var(--cyan);
}

.shuffle-pill {
  background: linear-gradient(135deg, rgba(255, 0, 85, 0.2), rgba(188, 19, 254, 0.2)) !important;
  border-color: var(--pink) !important;
  color: #fff !important;
  font-weight: bold;
}

.shuffle-pill:hover {
  background: linear-gradient(135deg, #ff0055, #bc13fe) !important;
  box-shadow: 0 0 14px rgba(255, 0, 85, 0.5) !important;
}

/* WALLET CONNECT MODAL */
.wallet-connect-box {
  max-width: 480px;
}

.account-details-box {
  max-width: 460px;
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.wallet-options-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wallet-option-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 1rem 1.2rem;
  text-align: left;
  cursor: pointer;
  width: 100%;
  color: inherit;
  transition: all 0.2s ease;
}

.wallet-option-btn:hover {
  border-color: var(--cyan);
  background: rgba(0, 243, 255, 0.08);
  transform: translateX(4px);
}

.wallet-option-btn.highlight-option {
  border-color: rgba(0, 243, 255, 0.6);
  background: rgba(0, 243, 255, 0.05);
}

.wallet-option-btn.highlight-okx {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
}

.wallet-option-btn.highlight-okx:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.wallet-icon-wrap {
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.okx-icon-box svg {
  display: block;
}

.wallet-info {
  flex: 1;
}

.wallet-name {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.wallet-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.wallet-arrow {
  color: var(--cyan);
  font-size: 1.1rem;
}

.wallet-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  background: var(--cyan);
  color: #000;
  padding: 0.25rem 0.6rem;
  letter-spacing: 1px;
}

.wallet-badge.okx-badge {
  background: #ffffff;
  color: #000000;
}

.wallet-modal-footer {
  display: flex;
  justify-content: space-between;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.network-indicator {
  color: var(--green);
}

/* ACCOUNT DETAILS */
.account-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  padding: 1.2rem;
  margin: 1.2rem 0;
  text-align: left;
}

.acc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
}

.acc-row:last-child {
  margin-bottom: 0;
}

.acc-label {
  color: var(--text-muted);
}

.acc-val {
  color: #fff;
  font-weight: 600;
}

.acc-val.highlight {
  color: var(--cyan);
  font-weight: bold;
}

.text-green {
  color: var(--green);
}

.connected-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  margin-right: 6px;
  animation: pulse-dot 1.5s infinite;
}

/* MODAL BACKDROP & BOX */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 1.5rem;
}

.modal-backdrop.active,
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-cyber-box {
  background: #0d131f;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 35px rgba(0, 243, 255, 0.25);
  width: 100%;
  max-width: 480px;
  padding: 2.2rem 2rem;
  text-align: center;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-cyber-box,
.modal-backdrop.open .modal-cyber-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.modal-close:hover {
  color: var(--pink);
}

.modal-icon {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}

.modal-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.modal-nft-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  padding: 1rem;
  margin: 1.4rem 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-align: left;
}

.modal-nft-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 1px solid var(--cyan);
}

.modal-nft-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.modal-token-id {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.modal-rarity {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  color: var(--cyan);
}

.modal-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.2rem;
}

/* ============================================================
   SPECS GRID (Clean & Minimalist Web3 Architecture)
   ============================================================ */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.spec-card {
  background: rgba(14, 18, 28, 0.85);
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 6px;
  padding: 1.5rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--cyan);
  opacity: 0.6;
}

.spec-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 243, 255, 0.15);
}

.spec-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.spec-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.spec-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.spec-val.highlight-cyan {
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}

.spec-val.highlight-green {
  color: var(--green);
  text-shadow: 0 0 8px rgba(0, 255, 102, 0.4);
}

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

@media (max-width: 600px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }
}



