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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #171717;
    
    --accent-primary: #f5c518; /* prime yellow */
    --accent-secondary: #f59e0b; /* amber */
    --accent-tertiary: #ffd54f; /* soft yellow */
    --accent-success: #22c55e;
    --accent-warning: #f59e0b;
    --accent-error: #ef4444;
    
    --text-primary: #ffffff;
    --text-secondary: #d4d4d4;
    --text-tertiary: #a3a3a3;
    
    --gradient-primary: linear-gradient(135deg, #f5c518 0%, #f59e0b 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f5c518 100%);
    --gradient-success: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-glow: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.35), transparent);
    
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 40px rgba(245, 197, 24, 0.35);
    
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    background-image:
        radial-gradient(circle at 15% 20%, rgba(245, 197, 24, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 197, 24, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 60%, rgba(245, 197, 24, 0.04) 0%, transparent 50%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Particles Animation */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 28px;
    height: 28px;
    animation: particleFloat 20s infinite linear;
}

.particle-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.7;
    filter: drop-shadow(0 0 6px rgba(245, 197, 24, 0.65));
    animation: logoSpin 8s infinite linear;
}

@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.particle:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 10%; animation-delay: 0.5s; animation-duration: 10s; }
.particle:nth-child(3) { left: 15%; animation-delay: 1s; animation-duration: 12s; }
.particle:nth-child(4) { left: 20%; animation-delay: 1.5s; animation-duration: 9s; }
.particle:nth-child(5) { left: 25%; animation-delay: 2s; animation-duration: 11s; }
.particle:nth-child(6) { left: 30%; animation-delay: 2.5s; animation-duration: 8.5s; }
.particle:nth-child(7) { left: 35%; animation-delay: 3s; animation-duration: 13s; }
.particle:nth-child(8) { left: 40%; animation-delay: 3.5s; animation-duration: 7.5s; }
.particle:nth-child(9) { left: 45%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(10) { left: 50%; animation-delay: 4.5s; animation-duration: 7s; }
.particle:nth-child(11) { left: 55%; animation-delay: 5s; animation-duration: 12s; }
.particle:nth-child(12) { left: 60%; animation-delay: 5.5s; animation-duration: 9.5s; }
.particle:nth-child(13) { left: 65%; animation-delay: 6s; animation-duration: 11.5s; }
.particle:nth-child(14) { left: 70%; animation-delay: 6.5s; animation-duration: 8.5s; }
.particle:nth-child(15) { left: 75%; animation-delay: 7s; animation-duration: 10.5s; }

.particle:nth-child(even) .particle-logo {
    opacity: 0.5;
    animation-direction: reverse;
    filter: drop-shadow(0 0 5px rgba(245, 197, 24, 0.45));
}

.particle:nth-child(3n) .particle-logo {
    opacity: 0.4;
    animation-duration: 12s;
    filter: drop-shadow(0 0 4px rgba(245, 197, 24, 0.35));
}

@keyframes particleFloat {
    0% { 
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    5% { opacity: 0.7; }
    50% { opacity: 1; }
    95% { opacity: 0.7; }
    100% { 
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-md) 0;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xs);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-bnb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(245, 197, 24, 0.6));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(5deg); }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wallet-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: var(--space-sm) var(--space-lg);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.wallet-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    transition: left 0.6s ease;
}

.wallet-btn:hover::before {
    left: 100%;
}

.wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Navigation links */
.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    padding: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
  }
  .nav-links.open { display: flex; }
}

/* Hero flow decoration */
.hero-flow {
  display: flex;
  justify-content: center;
}
.hero-flow-image {
  max-width: 900px;
  width: 100%;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  opacity: 1;
  margin: 0 auto var(--space-lg);
}

/* Main Container */
.main-container {
    margin-top: 80px;
    padding: var(--space-xl) var(--space-md);
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Mint Section */
.hero-mint-section {
    text-align: center;
    margin-bottom: var(--space-2xl);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.token-header {
    margin-bottom: var(--space-lg);
}

.token-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.hero-under-logo { 
    margin-top: var(--space-sm);
}

.hero-flow-image.small {
  max-width: 420px;
  opacity: 0.35;
}

.hero-bnb-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: heroLogoFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(245, 197, 24, 0.6));
    box-shadow: 0 0 40px rgba(245, 197, 24, 0.3);
}

@keyframes heroLogoFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 0 20px rgba(245, 197, 24, 0.6));
    }
    50% { 
        transform: translateY(-8px) scale(1.05);
        filter: drop-shadow(0 0 30px rgba(245, 197, 24, 0.8));
    }
}

.token-title {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    flex-wrap: nowrap;
    white-space: nowrap;
}

.title-main {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.title-ticker {
     font-family: 'JetBrains Mono', monospace;
     font-size: clamp(1.5rem, 4vw, 2.5rem);
     font-weight: 700;
     color: var(--accent-tertiary);
     background: rgba(245, 158, 11, 0.1);
     padding: var(--space-sm) var(--space-lg);
     border-radius: 50px;
     border: 2px solid rgba(245, 158, 11, 0.3);
     white-space: nowrap;
 }

.token-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Countdown Display */
.countdown-display {
    margin-bottom: var(--space-xl);
}

.countdown-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
}

.time-unit {
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    padding: var(--space-lg) var(--space-md);
    min-width: 80px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.time-number {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: white;
}

.time-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-xs);
}

.time-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.95); }
}

/* Countdown Conditions */
.countdown-conditions {
    margin-top: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.condition-icon {
    font-size: 1.2rem;
}

.condition-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.condition-separator {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 var(--space-sm);
}

/* Central Mint Card */
.central-mint-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.central-mint-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.mint-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.mint-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mint-stats {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.raised-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.progress-percentage {
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Progress Visualization */
.progress-visualization {
    margin-bottom: var(--space-xl);
    position: relative;
}

.progress-track {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: visible;
    position: relative;
    margin-bottom: var(--space-lg);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-success);
    border-radius: 6px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    animation: progressShimmer 2s infinite;
}

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

.progress-glow {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    bottom: -2px;
    background: var(--gradient-success);
    border-radius: 8px;
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
}

.progress-track::before {
    content: none;
    width: 0;
    height: 0;
}

.progress-track::after {
    content: none;
    width: 0;
    height: 0;
}

.progress-markers {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.marker {
    position: relative;
    text-align: center;
}

.marker-line {
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto var(--space-sm);
}

.marker-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    line-height: 1.2;
    white-space: nowrap;
}

.marker.soft-cap .marker-line {
    background: var(--accent-tertiary);
}

.marker.hard-cap .marker-line {
    background: var(--accent-primary);
}

/* Mint Interface */
.mint-interface {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.input-section {
    margin-bottom: var(--space-lg);
}

.input-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.amount-input-container {
    position: relative;
    margin-bottom: var(--space-md);
}

.amount-input {
    width: 100%;
    padding: var(--space-lg) 80px var(--space-lg) var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
    -moz-appearance: textfield;
}

.amount-input::-webkit-outer-spin-button,
.amount-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.amount-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.input-currency {
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    pointer-events: none;
}


.dynamic-stats {
    padding: var(--space-md);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.stats-table {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.dynamic-stats .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.dynamic-stats .stat-row:last-child {
    border-bottom: none;
}

.dynamic-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.dynamic-stats .stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.stats-header {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-align: center;
    padding: var(--space-sm);
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.user-stats-spacing {
    margin-top: var(--space-xl);
}

/* Mint Button */
.mint-button {
    position: relative;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    background: transparent;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.mint-button:hover .btn-gradient {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

.mint-button:disabled .btn-gradient {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
    box-shadow: none;
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    z-index: 2;
}

.mint-button:disabled {
    cursor: not-allowed;
    color: var(--text-tertiary);
}

.mint-button:hover:not(:disabled) {
    transform: translateY(-2px);
}

/* Refund Notice */
.refund-notice {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--border-radius);
    margin-top: var(--space-md);
}

.refund-icon {
    font-size: 1.2rem;
}

.refund-text {
    color: var(--accent-tertiary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Info Section */
.info-section {
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.project-intro {
    text-align: left;
}
.about-sections {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}
.about-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--accent-primary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
}
.step-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
}
.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
}
.step-card h4 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}
.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .spec-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-lg);
    }
    .spec-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--border-radius-lg);
        padding: var(--space-md);
    }
    .spec-card h4 {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
        color: var(--text-primary);
    }
    .spec-card p {
        color: var(--text-secondary);
        line-height: 1.6;
    }
    @media (max-width: 768px) {
        .spec-grid { grid-template-columns: 1fr; }
    }
}
.project-intro h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.highlight-text {
    color: var(--accent-tertiary);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

/* Tokenomics Chart */
.tokenomics-chart {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.allocation-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.allocation-visual {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.allocation-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.percentage {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 35px;
}

.description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-width: 80px;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 1rem;
}

.feature-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Stats List */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Footer */
.footer {
    margin-top: var(--space-3xl);
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.disclaimer {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: var(--space-lg);
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        padding: 0 var(--space-md);
    }
    .logo-text {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    .wallet-btn {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.85rem;
    }
    .wallet-btn .btn-text {
        white-space: nowrap;
    }
    .logo-bnb {
        width: 24px;
        height: 24px;
    }
    .hero-bnb-logo {
        width: 60px;
        height: 60px;
    }
    .main-container {
        padding: var(--space-lg) var(--space-md);
        max-width: none;
    }
    .particle {
        width: 22px;
        height: 22px;
    }
    .particle-logo {
        opacity: 0.5;
    }
    .project-intro {
        padding: var(--space-md);
        margin-bottom: var(--space-2xl);
    }
    .project-intro h2 {
        font-size: 1.4rem;
        margin-bottom: var(--space-sm);
    }
    .project-intro p {
        font-size: 0.98rem;
        line-height: 1.6;
    }
}
@media (max-width: 480px) {
    .logo-bnb {
        width: 20px;
        height: 20px;
    }
    
    .hero-bnb-logo {
        width: 50px;
        height: 50px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-ticker {
        font-size: 1.2rem;
    }
    .logo-text {
        font-size: 1rem;
        white-space: nowrap;
    }
    .wallet-btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.8rem;
    }
    .wallet-btn .btn-text {
        white-space: nowrap;
    }
    .project-intro {
        padding: var(--space-sm);
        margin-bottom: var(--space-xl);
    }
    .project-intro h2 {
        font-size: 1.2rem;
        margin-bottom: var(--space-xs);
    }
    .project-intro p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .particle {
        width: 18px;
        height: 18px;
    }
    
    .particle-logo {
        opacity: 0.4;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .central-mint-card {
        padding: var(--space-md);
    }
    
    .amount-input {
        padding: var(--space-md) 80px var(--space-md) var(--space-md);
        font-size: 1rem;
    }
    
    .input-currency {
        right: 60px;
        font-size: 0.9rem;
    }
    
    .max-btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.7rem;
    }
}
.about-block .lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e9eef9;
  margin: 0.4rem 0 0.8rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0.4rem 0 0.8rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  color: #dbe7ff;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
  backdrop-filter: blur(6px);
}

.callout {
  border: 1px solid rgba(255,255,255,0.10);
  border-left: 4px solid #7aa2ff;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0.6rem 0 1rem;
  background: rgba(255,255,255,0.05);
}

.callout .callout-title {
  font-weight: 600;
  color: #f0f5ff;
  margin-bottom: 6px;
}

.callout-info { border-left-color: #7aa2ff; }
.callout-success { border-left-color: #66d19e; }
.callout-warning { border-left-color: #ffb454; }

/* Key points spacing */
.about-block .key-points {
  margin-top: 0.6rem;
}
.about-block .key-points li {
  margin: 6px 0;
}

/* Flow image polish */
.flow-image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  margin: 0.5rem 0 0.8rem;
}

@media (max-width: 640px) {
  .about-block .lead { font-size: 1rem; }
  .chip { font-size: 0.8rem; }
}

.refund-icon {
    font-size: 1.2rem;
}

.refund-text {
    color: var(--accent-tertiary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Info Section */
.info-section {
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.project-intro {
    text-align: left;
}
.about-sections {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}
.about-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--accent-primary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
}
.step-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
}
.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
}
.step-card h4 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}
.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .spec-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-lg);
    }
    .spec-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--border-radius-lg);
        padding: var(--space-md);
    }
    .spec-card h4 {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
        color: var(--text-primary);
    }
    .spec-card p {
        color: var(--text-secondary);
        line-height: 1.6;
    }
    @media (max-width: 768px) {
        .spec-grid { grid-template-columns: 1fr; }
    }
}
.project-intro h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.highlight-text {
    color: var(--accent-tertiary);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

/* Tokenomics Chart */
.tokenomics-chart {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.allocation-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.allocation-visual {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.allocation-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.percentage {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 35px;
}

.description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-width: 80px;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 1rem;
}

.feature-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Stats List */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Footer */
.footer {
    margin-top: var(--space-3xl);
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.disclaimer {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: var(--space-lg);
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        padding: 0 var(--space-md);
    }
    .logo-text {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    .wallet-btn {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.85rem;
    }
    .wallet-btn .btn-text {
        white-space: nowrap;
    }
    .logo-bnb {
        width: 24px;
        height: 24px;
    }
    .hero-bnb-logo {
        width: 60px;
        height: 60px;
    }
    .main-container {
        padding: var(--space-lg) var(--space-md);
        max-width: none;
    }
    .particle {
        width: 22px;
        height: 22px;
    }
    .particle-logo {
        opacity: 0.5;
    }
    .project-intro {
        padding: var(--space-md);
        margin-bottom: var(--space-2xl);
    }
    .project-intro h2 {
        font-size: 1.4rem;
        margin-bottom: var(--space-sm);
    }
    .project-intro p {
        font-size: 0.98rem;
        line-height: 1.6;
    }
}
@media (max-width: 480px) {
    .logo-bnb {
        width: 20px;
        height: 20px;
    }
    
    .hero-bnb-logo {
        width: 50px;
        height: 50px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-ticker {
        font-size: 1.2rem;
    }
    .logo-text {
        font-size: 1rem;
        white-space: nowrap;
    }
    .wallet-btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.8rem;
    }
    .wallet-btn .btn-text {
        white-space: nowrap;
    }
    .project-intro {
        padding: var(--space-sm);
        margin-bottom: var(--space-xl);
    }
    .project-intro h2 {
        font-size: 1.2rem;
        margin-bottom: var(--space-xs);
    }
    .project-intro p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .particle {
        width: 18px;
        height: 18px;
    }
    
    .particle-logo {
        opacity: 0.4;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .central-mint-card {
        padding: var(--space-md);
    }
    
    .amount-input {
        padding: var(--space-md) 80px var(--space-md) var(--space-md);
        font-size: 1rem;
    }
    
    .input-currency {
        right: 60px;
        font-size: 0.9rem;
    }
    
    .max-btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.7rem;
    }
}
.flow-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    margin-bottom: var(--space-lg);
}

/* Spec grid cards */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
}
.spec-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
}
.spec-card h4 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}
.spec-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .spec-grid { grid-template-columns: 1fr; }
}
/* Hero two-column layout */
.hero-content.hero-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--space-xl);
}
.hero-left { text-align: center; }
.hero-right { display: flex; justify-content: center; }
@media (max-width: 900px) {
  .hero-content.hero-row { grid-template-columns: 1fr; gap: var(--space-xl); }
}
.main-container section { scroll-margin-top: 90px; margin-bottom: var(--space-3xl); }
.project-intro { margin-bottom: var(--space-3xl); }
.info-section { margin: 0 auto var(--space-3xl); }
/* Tokenomic full-row enlargement */
 #tokenomic .info-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
 #tokenomic .info-card { padding: var(--space-xl); }
 #tokenomic .tokenomics-chart { gap: var(--space-xl); }