/* ==========================================
   BONK JR — PREMIUM DESIGN SYSTEM (CSS)
   ========================================== */

:root {
  /* Color Palette */
  --bg-orange: #E07B00;
  --bg-yellow: #FFD700;
  --accent-red: #E8140A;
  --accent-red-hover: #c40f08;
  --neutral-warm: #FFF8E7;
  --text-light: #FFFFFF;
  --text-dark: #2A1A08;
  --dark-overlay: rgba(26, 12, 1, 0.95);
  --dark-card: rgba(42, 23, 5, 0.6);
  --dark-card-border: rgba(255, 215, 0, 0.15);
  
  /* Fonts */
  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Dimensions */
  --nav-height: 80px;
  --max-width: 1200px;
  
  /* Glow Effects */
  --glow-orange: rgba(224, 123, 0, 0.4);
  --glow-yellow: rgba(255, 215, 0, 0.4);
  --glow-red: rgba(232, 20, 10, 0.5);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: #1a0c02;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(224, 123, 0, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 40%);
  color: var(--neutral-warm);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers */
.accent {
  color: var(--bg-yellow);
  text-shadow: 0 0 15px var(--glow-yellow);
}

.section {
  padding: 120px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  text-align: center;
  color: var(--neutral-warm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accent-divider {
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-red), var(--bg-orange), var(--bg-yellow));
  border-radius: 10px;
  margin: 20px 0 40px;
  box-shadow: 0 0 15px var(--glow-orange);
}

.accent-divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   LOADING SCREEN
   ========================================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #110600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 130px;
  border-radius: 50%;
  border: 4px solid var(--bg-yellow);
  box-shadow: 0 0 30px var(--glow-yellow);
  margin: 0 auto 24px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; box-shadow: 0 0 45px var(--bg-orange); }
}

.loader-bar-wrapper {
  width: 260px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-red), var(--bg-orange), var(--bg-yellow));
  border-radius: 10px;
  animation: loaderFill 2s ease-in-out forwards;
}

@keyframes loaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 4px;
  color: var(--bg-yellow);
  text-shadow: 0 0 10px var(--glow-orange);
  animation: loaderTextPulse 1.5s ease-in-out infinite;
}

@keyframes loaderTextPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ==========================================
   CURSOR GLOW & CANVAS
   ========================================== */
#cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 123, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

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

/* ==========================================
   NAVBAR
   ========================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: var(--nav-height);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: rgba(26, 12, 1, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(224, 123, 0, 0.05);
  height: 70px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--bg-yellow);
  object-fit: cover;
  box-shadow: 0 0 10px var(--glow-yellow);
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--neutral-warm);
  background: linear-gradient(135deg, var(--bg-yellow), var(--bg-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 248, 231, 0.8);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--bg-yellow);
  border-radius: 10px;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--glow-yellow);
}

.nav-link:hover,
.nav-link.active {
  color: var(--bg-yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 215, 0, 0.3);
  background: rgba(255, 255, 255, 0.03);
  color: var(--neutral-warm);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: var(--bg-yellow);
  color: var(--bg-yellow);
  background: rgba(255, 215, 0, 0.08);
  box-shadow: 0 0 15px var(--glow-yellow);
  transform: translateY(-3px);
}

.btn-nav-buy {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-hover) 100%);
  color: var(--text-light);
  border-radius: 50px;
  box-shadow: 0 4px 15px var(--glow-red);
  border: none;
  cursor: pointer;
}

.btn-nav-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--glow-red);
  background: linear-gradient(135deg, var(--accent-red-hover) 0%, #a80904 100%);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--neutral-warm);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  background: radial-gradient(circle at 50% 40%, rgba(224, 123, 0, 0.15) 0%, transparent 60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(232, 20, 10, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo-wrapper {
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.hero-logo {
  width: clamp(160px, 28vw, 240px);
  border-radius: 50%;
  border: 8px solid var(--bg-yellow);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 50px var(--glow-yellow);
  animation: heroFloat 4s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--neutral-warm) 20%, var(--bg-yellow) 60%, var(--bg-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.glow-text {
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.2)); }
  50% { filter: drop-shadow(0 0 30px rgba(224, 123, 0, 0.4)); }
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--bg-yellow);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 248, 231, 0.85);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 38px;
  border-radius: 50px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red) 0%, #b30f07 100%);
  color: var(--text-light);
  border: none;
  box-shadow: 0 5px 25px var(--glow-red);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--glow-red);
  background: linear-gradient(135deg, #ff1e14 0%, var(--accent-red) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--bg-yellow);
  border: 2px solid var(--bg-yellow);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.05);
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--glow-yellow);
}

.btn-buy-now.btn-primary {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
  border: none;
  box-shadow: 0 5px 25px rgba(16, 185, 129, 0.4);
}

.btn-buy-now.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
}

.contract-address-wrapper {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px 20px;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}

.contract-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--bg-yellow);
  font-size: 1.1rem;
}

.contract-address {
  font-family: monospace;
  font-size: 0.95rem;
  color: var(--neutral-warm);
  letter-spacing: 0.5px;
  word-break: break-all;
}

.btn-copy {
  background: none;
  border: none;
  color: var(--bg-yellow);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.btn-copy:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Hero Scrolling Ticker */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--bg-orange), var(--accent-red));
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  z-index: 5;
}

.ticker-track {
  display: inline-block;
  animation: ticker 25s linear infinite;
}

.ticker-track span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-right: 50px;
  display: inline-block;
}

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

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text .section-title {
  text-align: left;
}

.about-lead {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--bg-yellow);
  margin-bottom: 24px;
  line-height: 1.4;
}

.about-text p {
  color: rgba(255, 248, 231, 0.8);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text .btn-primary {
  margin-top: 15px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-mascot-wrapper {
  background: var(--dark-card);
  border: 2px solid var(--dark-card-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-mascot {
  border-radius: 16px;
  max-height: 320px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.about-card-glow {
  display: grid;
  gap: 16px;
}

.about-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover {
  border-color: var(--bg-yellow);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(224, 123, 0, 0.15);
}

.about-icon {
  font-size: 2.2rem;
  color: var(--bg-yellow);
  margin-bottom: 12px;
  display: inline-block;
  text-shadow: 0 0 10px var(--glow-yellow);
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--neutral-warm);
  margin-bottom: 8px;
}

.about-card p {
  color: rgba(255, 248, 231, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================
   TOKENOMICS SECTION
   ========================================== */
#tokenomics {
  background: linear-gradient(180deg, #160a02 0%, #1f0b00 100%);
}

.tokenomics-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.tokenomics-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 248, 231, 0.8);
}

.tokenomics-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.tokenomics-supply-card {
  background: linear-gradient(135deg, var(--bg-orange) 0%, #994c00 100%);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 30px var(--glow-orange);
  border: 2px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.supply-icon {
  font-size: 4rem;
  color: var(--bg-yellow);
  text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.supply-info {
  text-align: left;
}

.supply-label {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

.supply-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-light);
  margin: 4px 0;
  text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.supply-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.tokenomics-allocation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.alloc-card {
  background: var(--dark-card);
  border: 1.5px solid var(--dark-card-border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.alloc-card:hover {
  transform: translateY(-6px);
  border-color: var(--bg-yellow);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.1);
}

.alloc-ring {
  position: relative;
  width: 110px;
  height: 110px;
  margin-bottom: 24px;
}

.alloc-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.alloc-ring .bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 8;
}

.alloc-ring .fg {
  fill: none;
  stroke: var(--accent-red);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 314.16;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 2s ease-in-out;
}

.alloc-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bg-yellow);
}

.alloc-pct.zero {
  color: rgba(255, 248, 231, 0.4);
}

.alloc-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--neutral-warm);
  margin-bottom: 8px;
}

.alloc-info p {
  color: rgba(255, 248, 231, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

.community-card .alloc-ring .fg {
  stroke: var(--bg-yellow);
  filter: drop-shadow(0 0 5px var(--glow-yellow));
}

/* ==========================================
   FEES SECTION
   ========================================== */
#fees {
  background: linear-gradient(180deg, #1f0b00 0%, #160a02 100%);
}

#fees .section-title {
  text-align: center;
}

.fees-intro {
  color: rgba(255, 248, 231, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}

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

.fee-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.fee-card:hover {
  transform: translateY(-8px);
  border-color: var(--bg-yellow);
  box-shadow: 0 10px 30px rgba(224, 123, 0, 0.15);
}

.fee-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fee-icon {
  font-size: 2.5rem;
  color: var(--bg-yellow);
  position: relative;
  z-index: 2;
  text-shadow: 0 0 15px var(--glow-yellow);
}

.fee-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent 70%);
  animation: feeGlow 3s infinite ease-in-out;
}

@keyframes feeGlow {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 1; }
}

.fee-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--neutral-warm);
  margin-bottom: 12px;
}

.fee-card p {
  color: rgba(255, 248, 231, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================
   ROADMAP SECTION
   ========================================== */
#roadmap {
  background: linear-gradient(180deg, #160a02 0%, #1a0c02 100%);
  overflow: hidden;
}

.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 20px 0;
}

.roadmap-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--bg-orange), var(--bg-yellow), transparent);
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--glow-orange);
}

.roadmap-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.roadmap-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.roadmap-item:nth-child(odd) {
  flex-direction: row;
}

.roadmap-item:nth-child(even) {
  flex-direction: row-reverse;
}

.roadmap-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 24px;
  height: 24px;
  background: var(--bg-yellow);
  border: 4px solid #1a0c02;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--glow-yellow);
  z-index: 2;
  transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-dot {
  transform: translateX(-50%) scale(1.3);
  box-shadow: 0 0 25px var(--glow-yellow), 0 0 45px var(--bg-orange);
  background: var(--accent-red);
}

.roadmap-card {
  width: calc(50% - 40px);
  background: var(--dark-card);
  border: 1.5px solid var(--dark-card-border);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
}

.roadmap-item:nth-child(odd) .roadmap-card {
  margin-right: auto;
}

.roadmap-item:nth-child(even) .roadmap-card {
  margin-left: auto;
}

.roadmap-card:hover {
  border-color: var(--bg-yellow);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(224, 123, 0, 0.15);
}

.roadmap-phase {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--bg-yellow);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.roadmap-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--neutral-warm);
  margin-bottom: 6px;
}

.roadmap-target {
  color: var(--bg-orange);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.roadmap-card ul {
  list-style: none;
}

.roadmap-card ul li {
  color: rgba(255, 248, 231, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.roadmap-card ul li::before {
  content: '🐾';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
}

/* ==========================================
   COMMUNITY / SOCIAL SECTION
   ========================================== */
#community {
  background: radial-gradient(circle at 50% 50%, rgba(224, 123, 0, 0.15) 0%, transparent 60%);
}

.community-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.community-mascot {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 6px solid var(--bg-yellow);
  box-shadow: 0 0 30px var(--glow-yellow);
  margin: 0 auto 30px;
  animation: pulseMascot 2.5s infinite ease-in-out;
}

@keyframes pulseMascot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); box-shadow: 0 0 45px var(--bg-orange); }
}

.community-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.community-text {
  font-size: 1.2rem;
  color: rgba(255, 248, 231, 0.85);
  margin-bottom: 40px;
}

.community-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-community {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 50px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-community.holders {
  background: linear-gradient(135deg, var(--bg-yellow) 0%, #d4b200 100%);
  color: var(--text-dark);
}

.btn-community.holders:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--glow-yellow);
}

.btn-community.meme {
  background: linear-gradient(135deg, var(--bg-orange) 0%, #b36200 100%);
  color: var(--text-light);
}

.btn-community.meme:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--glow-orange);
}

.btn-community.twitter {
  background: linear-gradient(135deg, #111111 0%, #222222 100%);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-community.twitter:hover {
  transform: translateY(-3px);
  border-color: var(--bg-yellow);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* ==========================================
   FOOTER
   ========================================== */
#footer {
  background: #110600;
  padding: 80px 0 40px;
  position: relative;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), var(--bg-orange), var(--bg-yellow));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--bg-yellow);
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255, 248, 231, 0.7);
  font-size: 1rem;
  max-width: 320px;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--bg-yellow);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 248, 231, 0.75);
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  color: var(--bg-yellow);
  padding-left: 5px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

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

.footer-bottom p {
  color: rgba(255, 248, 231, 0.5);
  font-size: 0.9rem;
}

/* ==========================================
   SCROLL REVEAL CLASS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text .section-title {
    text-align: center;
  }

  .about-text .accent-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .about-text {
    text-align: center;
  }

  .fees-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  #navbar {
    background: rgba(26, 12, 1, 0.95);
    backdrop-filter: blur(10px);
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(26, 12, 1, 0.98);
    padding: 30px;
    gap: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .social-icon {
    display: none;
  }

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

  .tokenomics-allocation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tokenomics-supply-card {
    flex-direction: column;
    gap: 16px;
    padding: 30px 20px;
  }

  .supply-info {
    text-align: center;
  }

  .roadmap-timeline {
    padding-left: 20px;
  }

  .roadmap-line {
    left: 20px;
  }

  .roadmap-dot {
    left: 20px;
  }

  .roadmap-item {
    flex-direction: row !important;
    padding-left: 20px;
  }

  .roadmap-card {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 16px;
  }

  .footer-tagline {
    margin: 0 auto;
  }

  .footer-social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 80px 0;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
