/* BULLSACK — Black, Gold, White */
:root {
  --gold: #F5A800;
  --gold-dim: rgba(245, 168, 0, 0.12);
  --gold-border: rgba(245, 168, 0, 0.2);
  --black: #000;
  --card: #0a0800;
  --border: #1a1500;
  --white: #F0F0F0;
  --muted: #666;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #000; color: #fff; font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.5; overflow-x: hidden; }

/* NAV */
nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 40px; border-bottom: 1px solid #1a1500; position: sticky; top: 0; z-index: 100; background: rgba(0,0,0,0.95); backdrop-filter: blur(12px); }
.nav-logo { font-size: 20px; font-weight: 900; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px; } .nav-logo img { height: 36px; width: auto; }
.nav-logo span { color: #F5A800; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: #888; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { background: #F5A800 !important; color: #fff !important; padding: 10px 22px; border-radius: 100px; font-weight: 700 !important; }
.nav-cta:hover { background: #d49200 !important; }
.nav-mobile-btn { display: none; background: none; border: 1px solid #333; color: #fff; padding: 8px 12px; border-radius: 8px; cursor: pointer; font-size: 16px; }
.nav-mobile-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #000; border-bottom: 1px solid #1a1500; padding: 20px 40px; gap: 16px; }
.nav-mobile-menu a { color: #888; text-decoration: none; font-size: 15px; font-weight: 500; }
.nav-mobile-menu a:hover { color: #fff; }
.mobile-cta { color: #F5A800 !important; font-weight: 700 !important; }

/* BUTTONS */
.btn-primary { background: #F5A800; color: #fff; padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: 15px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: #d49200; }
.btn-outline { background: transparent; color: #fff; padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: 15px; text-decoration: none; border: 1px solid #333; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: #fff; }

/* PAGE HEADER */
.page-header { padding: 64px 40px 48px; max-width: 1100px; margin: 0 auto; border-bottom: 1px solid #1a1500; }
.page-header h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; margin-bottom: 12px; }
.page-header h1 span { color: #F5A800; }
.page-header p { color: #666; font-size: 15px; max-width: 480px; line-height: 1.7; }

/* STATS BAR */
.stats-bar { border-bottom: 1px solid #1a1500; display: flex; }
.stat-item { flex: 1; padding: 28px 40px; text-align: center; border-right: 1px solid #1a1500; }
.stat-item:last-child { border-right: none; }
.stat-val { font-size: 36px; font-weight: 900; color: #F5A800; display: block; margin-bottom: 4px; }
.stat-lbl { font-size: 12px; color: #666; font-weight: 500; }

/* TWEET EMBED */
.tweet-embed { background: #000; border: 1px solid #1a1500; border-radius: 16px; padding: 20px; margin-bottom: 12px; }
.tweet-embed-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.tweet-user { display: flex; align-items: center; gap: 10px; }
.tweet-avatar-sm { width: 36px; height: 36px; border-radius: 50%; background: #F5A800; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.tweet-name-sm { font-weight: 700; font-size: 14px; }
.tweet-handle-sm { color: #666; font-size: 13px; }
.tweet-text { font-size: 14px; line-height: 1.6; color: #ccc; margin-bottom: 12px; }
.tweet-text a { color: #1d9bf0; text-decoration: none; }
.tweet-meta { color: #555; font-size: 12px; display: flex; align-items: center; justify-content: space-between; }
.tweet-stats-sm { display: flex; gap: 16px; color: #666; font-size: 12px; }

/* CARDS */
.card { background: #0a0a0a; border: 1px solid #1a1500; border-radius: 12px; padding: 28px; }
.card.highlight { background: #F5A800; border-color: #F5A800; color: #000; }
.label-sm { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #F5A800; margin-bottom: 12px; }

/* TOKEN CARDS */
.token-card { background: #0a0a0a; border: 1px solid #1a1500; border-radius: 10px; padding: 16px 18px; display: flex; align-items: center; gap: 12px; transition: border-color 0.2s; cursor: pointer; text-decoration: none; }
.token-card:hover { border-color: #F5A800; }
.token-icon { width: 36px; height: 36px; border-radius: 8px; background: #111; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; border: 1px solid #1a1500; }
.token-name { font-size: 14px; font-weight: 700; }
.token-ticker { font-size: 12px; color: #666; }
.token-status { display: flex; align-items: center; gap: 4px; font-size: 11px; color: #4CAF50; margin-top: 2px; }
.token-status-dot { width: 5px; height: 5px; border-radius: 50%; background: #4CAF50; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* LIVE DOT */
.live-dot-wrap { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #4CAF50; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #4CAF50; animation: blink 1.5s infinite; }

/* ENABLE FORM */
.wallet-connect-btn { background: #111; border: 1px solid #1a1500; color: #888; padding: 12px 24px; border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer; margin-bottom: 16px; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.wallet-connect-btn:hover { border-color: #F5A800; color: #fff; }
.wallet-connect-btn.connected { border-color: #4CAF50; color: #4CAF50; }
.mint-input-wrap { display: flex; border: 1px solid #1a1500; border-radius: 100px; overflow: hidden; background: #0a0a0a; margin-bottom: 12px; transition: border-color 0.2s; }
.mint-input-wrap:focus-within { border-color: #F5A800; }
.mint-input { flex: 1; background: transparent; border: none; padding: 14px 20px; color: #fff; font-size: 13px; outline: none; font-family: monospace; }
.mint-input::placeholder { color: #333; }
.mint-submit { background: #F5A800; border: none; color: #fff; padding: 14px 24px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.mint-submit:hover { background: #d49200; }
.enable-status { margin-top: 16px; padding: 12px 20px; border-radius: 8px; font-size: 13px; display: none; }
.enable-status.success { background: rgba(76,175,80,0.1); border: 1px solid #4CAF50; color: #4CAF50; display: block; }
.enable-status.error { background: rgba(245,168,0,0.1); border: 1px solid #F5A800; color: #F5A800; display: block; }
.enable-status.loading { background: rgba(212,160,23,0.1); border: 1px solid #D4A017; color: #D4A017; display: block; }

/* FOOTER */
footer { border-top: 1px solid #1a1500; padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-weight: 900; font-size: 18px; }
.footer-logo span { color: #F5A800; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: #555; font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: #333; font-size: 12px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .page-header { padding: 40px 20px 32px; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid #1a1500; }
  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
}
