/* ============================================
   $10M - Site Styles
   Deep orange (#F04E23) + dark theme
   ============================================ */

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

/* CUSTOM BORDER WIDTH */
.border-3 {
  border-width: 3px;
}

.border-t-3 {
  border-top-width: 3px;
}

.border-b-3 {
  border-bottom-width: 3px;
}

/* RETRO SHADOWS */
.shadow-retro {
  box-shadow: 4px 4px 0 0 #000;
}

.shadow-retro-orange {
  box-shadow: 4px 4px 0 0 #F04E23;
}

.shadow-retro-lg {
  box-shadow: 6px 6px 0 0 #000;
}

/* SECTION TITLE TEXT EFFECTS (on dark bg) */
.section-title {
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 #000;
  color: #F04E23;
}

/* SECTION TITLE on orange bg (white with dark stroke) */
.section-title-light {
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 #000;
  color: #FFFFFF;
}

/* REUSABLE COMPONENT CLASSES */
.btn-primary {
  display: inline-block;
  background-color: #1A1A1A;
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.75rem;
  border: 3px solid #111;
  box-shadow: 4px 4px 0 0 #000;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary:hover {
  box-shadow: 6px 6px 0 0 #000;
  transform: translate(-2px, -2px);
  background-color: #111;
}

.btn-secondary {
  display: inline-block;
  background-color: #FFF;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.75rem;
  border: 3px solid #111;
  box-shadow: 4px 4px 0 0 #000;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover {
  box-shadow: 6px 6px 0 0 #000;
  transform: translate(-2px, -2px);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
  text-decoration: none;
  color: #FFF;
}

.nav-link:hover {
  opacity: 0.7;
}

/* Dark pill CTA button */
.btn-nav {
  display: inline-block;
  background-color: #1a1a1a;
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  border: 3px solid #111;
  padding: 0.6rem 1.75rem;
  box-shadow: 4px 4px 0 0 rgba(255,255,255,0.3);
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-nav:hover {
  background-color: #111;
  box-shadow: 5px 5px 0 0 rgba(255,255,255,0.4);
  transform: translate(-1px, -1px);
}

.badge {
  display: inline-block;
  background-color: #F04E23;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  border: 2px solid #D13E15;
  margin-bottom: 1rem;
}

.footer-link {
  color: rgba(255, 240, 224, 0.6);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #F04E23;
}

/* MARKET CAP BANNER */
.mcap-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background-color: #2A2A2A;
  border: 3px solid #F04E23;
  border-radius: 0.75rem;
  padding: 1.25rem 2rem;
  box-shadow: 4px 4px 0 0 #F04E23;
}

.mcap-icon {
  width: 48px;
  height: 48px;
  background-color: #F04E23;
  color: #FFF;
  border: 3px solid #D13E15;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mcap-pill {
  background-color: #F04E23;
  border: 3px solid #D13E15;
  border-radius: 0.75rem;
  padding: 0.75rem 2rem;
  text-align: center;
  box-shadow: 3px 3px 0 0 #000;
  flex-shrink: 0;
}

.mcap-chart-icon {
  font-family: 'Press Start 2P', cursive;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin-right: 0.25rem;
}

@media (max-width: 768px) {
  .mcap-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .mcap-banner > div:first-child {
    justify-content: center;
  }
}

/* LOGO GLOW */
.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(240, 78, 35, 0.4) 0%, rgba(240, 78, 35, 0.15) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #F04E23;
  z-index: 60;
  pointer-events: none;
  transition: none;
}

/* ============================================
   CURSOR TRAIL
   ============================================ */
.cursor-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  will-change: transform, opacity;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
  background: #F04E23;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #D13E15;
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: #F04E23;
  color: #FFF;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .section-title {
    -webkit-text-stroke: 1.5px #000;
    text-shadow: 2px 2px 0 #000;
  }

  .section-title-light {
    -webkit-text-stroke: 1.5px #000;
    text-shadow: 2px 2px 0 #000;
  }
}
