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

:root {
    --bg-primary: #050811;
    --bg-secondary: #0a0f1c;
    --bg-tertiary: #0f1419;
    
    --accent-primary: #00d4ff;
    --accent-secondary: #7c3aed;
    --accent-tertiary: #f59e0b;
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
    --accent-error: #ef4444;
    
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-tertiary: #71717a;
    
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-glow: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.3);
    
    --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 20% 20%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

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

.particle {
    position: absolute;
    width: 24px;
    height: 24px;
    animation: particleFloat 15s infinite linear;
    will-change: transform;
}

.particle-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.8;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 18s; }
.particle:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 14s; }
.particle:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 16s; }
.particle:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 13s; }

@keyframes particleFloat {
    0% {
        transform: translateY(110vh) translateX(0);
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        transform: translateY(-10vh) translateX(30px);
        opacity: 0;
    }
}

/* Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 8, 17, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md) 0;
}

.nav-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    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 8px rgba(245, 158, 11, 0.5));
}

@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: 600;
    font-size: 0.9rem;
    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);
}

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

.wallet-info {
    display: none;
    align-items: center;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: var(--space-sm) var(--space-md);
}

.wallet-address {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 0.02em;
}

.disconnect-btn {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    padding: var(--space-xs) var(--space-md);
    color: #ef4444;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.disconnect-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.5);
    transform: scale(1.05);
}


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

/* Hero Mint Section */
.hero-mint-section {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    margin: var(--space-xl) 0;
}

.donation-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    min-width: 320px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border: 2px solid rgba(236, 72, 153, 0.4);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.2);
    justify-content: center;
}

.donation-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.3), transparent);
    transition: left 0.6s ease;
}

.donation-button:hover::before {
    left: 100%;
}

.donation-button:hover {
    transform: translateY(-3px);
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 16px 48px rgba(236, 72, 153, 0.3);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
}

.donation-icon {
    font-size: 1.2rem;
    animation: heartBeat 2s infinite;
}

.donation-text {
    font-weight: 700;
    background: linear-gradient(135deg, #ec4899 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.donation-hash {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes heartBeat {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.1); 
    }
}

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

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

.hero-section-with-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.mascot-container {
    display: flex;
    justify-content: center;
}

.mascot-bunny {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.4));
    transition: transform 0.3s ease;
}

.mascot-bunny:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.6));
}


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

.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, 158, 11, 0.6));
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
}

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

.token-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.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: 1.1;
    letter-spacing: -0.02em;
}

.title-ticker {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--accent-tertiary);
    background: rgba(245, 158, 11, 0.1);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.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);
}

/* Donation Amount Container */
.donation-amount-container {
    text-align: center;
    margin: var(--space-xl) auto;
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    max-width: 400px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    z-index: 2;
}

.donation-amount-container > * {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.donation-amount-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.donation-amount-container:hover::before {
    left: 100%;
}

.donation-amount-container:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 16px 48px rgba(0, 212, 255, 0.3);
}

.donation-amount-container::after {
    content: ' BNB';
    position: relative;
    font-size: 0.6em;
    color: #f59e0b;
    font-weight: 600;
    margin-left: 0.2em;
    vertical-align: baseline;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}


/* Contract Address */
.contract-address {
    text-align: center;
    margin: var(--space-xl) auto;
    padding: var(--space-md) var(--space-lg);
    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);
    max-width: 500px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 0.02em;
    cursor: pointer;
    user-select: all;
}

.contract-address::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contract-address:hover::before {
    transform: scaleX(1);
}

.contract-address:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.contract-address::selection {
    background: rgba(0, 212, 255, 0.2);
    color: var(--text-primary);
}

/* Central Mint Card */
.central-mint-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    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: '';
    position: absolute;
    left: 100%;
    top: -4px;
    width: 2px;
    height: 20px;
    background: var(--accent-primary);
    z-index: 2;
    border-radius: 1px;
    transform: translateX(-2px);
}

.progress-track::after {
    display: none;
}

.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: center;
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl);
    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);
}

.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-lg);
}

.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-bnb {
        width: 24px;
        height: 24px;
    }
    
    .hero-bnb-logo {
        width: 60px;
        height: 60px;
    }
    
    .hero-section-with-mascot {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .mascot-bunny {
        width: 80px;
        height: auto;
    }
    
    .main-container {
        padding: var(--space-lg) var(--space-md);
        max-width: none;
    }
    
    .particle {
        width: 22px;
        height: 22px;
    }
    
    .particle-logo {
        opacity: 0.5;
    }
}
    
    .central-mint-card {
        padding: var(--space-lg);
        max-width: none;
        margin: 0 var(--space-md);
    }
    
    .mint-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .countdown-timer {
        gap: var(--space-sm);
    }
    
    .time-unit {
        padding: var(--space-md) var(--space-sm);
        min-width: 60px;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .progress-markers {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: center;
    }
    
    .marker {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .marker-line {
        width: 20px;
        height: 2px;
        margin: 0;
    }
    
    .amount-input {
        padding: var(--space-md) 100px var(--space-md) var(--space-md);
        font-size: 1.1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .donation-button {
        flex-direction: column;
        gap: var(--space-xs);
        padding: var(--space-sm) var(--space-lg);
        text-align: center;
        min-width: 280px;
    }
    
    .donation-hash {
        font-size: 0.75rem;
        padding: var(--space-xs);
    }
}

@media (max-width: 480px) {
    .logo-bnb {
        width: 20px;
        height: 20px;
    }
    
    .hero-bnb-logo {
        width: 50px;
        height: 50px;
    }
    
    .mascot-bunny {
        width: 60px;
        height: auto;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-ticker {
        font-size: 1.2rem;
    }
    
    .particle {
        width: 18px;
        height: 18px;
    }
    
    .particle-logo {
        opacity: 0.4;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .donation-amount-container {
        font-size: 2rem;
        padding: var(--space-md) var(--space-lg);
        max-width: 300px;
    }
    
    .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;
    }
    
    .donation-button {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
        min-width: 260px;
    }
    
    .donation-icon {
        font-size: 1rem;
    }
    
    .donation-text {
        font-size: 0.9rem;
    }
}