:root {
    /* Black theme colors */
    --black: #000000;
    --dark-gray: #111111;
    --medium-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    
    /* Gold theme colors */
    --gold: #FFD700;
    --gold-light: #FFE44D;
    --gold-dark: #B8860B;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    
    /* Green theme colors */
    --green: #00A859;
    --green-light: #00C96D;
    --green-dark: #00874A;
    --green-gradient: linear-gradient(135deg, #00A859 0%, #00874A 100%);
    
    /* Text colors */
    --text-light: #FFFFFF;
    --text-gray: #CCCCCC;
    --text-dark: #333333;
    
    /* UI colors */
    --primary: var(--green);
    --primary-dark: var(--green-dark);
    --warning: var(--gold);
    --warning-dark: var(--gold-dark);
    
    /* Backgrounds */
    --bg-primary: var(--black);
    --bg-secondary: var(--dark-gray);
    --bg-card: var(--medium-gray);
    
    /* Borders */
    --border-color: rgba(255, 215, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
}

/* Starfield Background */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(0, 168, 89, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.logo span {
    color: var(--green);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: 6px;
}

nav a:hover {
    color: var(--gold);
    background-color: rgba(255, 215, 0, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--green-gradient);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 168, 89, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 168, 89, 0.4);
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
}

.btn-outline:hover {
    background: rgba(0, 168, 89, 0.1);
    color: var(--green-light);
}

.btn-warning {
    background: var(--gold-gradient);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-warning:hover {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 168, 89, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.logo-img {
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition);
    filter: drop-shadow(0 0 30px rgba(0, 168, 89, 0.3));
}

.logo-img:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 0 40px rgba(0, 168, 89, 0.5));
}

/* Live Crypto Section */
.live-crypto-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.live-crypto-title {
    text-align: center;
    margin-bottom: 50px;
}

.live-crypto-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.crypto-market-container {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.market-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.market-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.market-refresh {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.crypto-card {
    background: var(--medium-gray);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.crypto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--green-gradient);
}

.crypto-card:hover {
    transform: translateY(-5px);
    border-color: var(--green);
    box-shadow: 0 10px 20px rgba(0, 168, 89, 0.2);
}

.solana-card {
    border-color: var(--green);
}

.solana-card::before {
    background: var(--green-gradient);
}

.crypto-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.crypto-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--black);
    font-size: 0.9rem;
}

.solana-icon { background: var(--green); }
.bitcoin-icon { background: var(--gold); }
.ethereum-icon { background: #627EEA; }
.binance-icon { background: #F0B90B; color: #000; }
.ripple-icon { background: #00A8E8; }
.cardano-icon { background: #0033AD; }
.dogecoin-icon { background: #C2A633; }
.polkadot-icon { background: #E6007A; }
.avalanche-icon { background: #E84142; }
.polygon-icon { background: #8247E5; }

.crypto-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.up { color: var(--green); }
.down { color: #ff4d4d; }

.crypto-change {
    font-weight: 600;
    font-size: 0.9rem;
}

.positive { color: var(--green); }
.negative { color: #ff4d4d; }

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.section-title p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tokenomics-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.tokenomics-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tokenomics-card h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.tokenomics-card p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Pre-Sale Section */
.presale {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(0, 168, 89, 0.1) 100%);
    position: relative;
}

.presale-container {
    text-align: center;
}

.presale-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}

.presale-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--green-gradient);
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.timer-item {
    background: var(--medium-gray);
    border-radius: 12px;
    padding: 20px;
    min-width: 100px;
    border: 1px solid var(--border-color);
}

.timer-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.timer-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-container {
    margin: 40px 0;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.progress-bar {
    height: 12px;
    background: var(--medium-gray);
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--green-gradient);
    width: 0%;
    transition: width 2s ease-in-out;
    border-radius: 6px;
}

.presale-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.allocation-button-container {
    text-align: center;
}

.allocation-btn {
    background: var(--medium-gray);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.allocation-btn:hover {
    background: var(--light-gray);
    border-color: var(--green);
}

.badge {
    background: var(--green);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Aid Section */
.aid {
    padding: 100px 0;
    background: var(--bg-primary);
}

.aid-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.aid-image {
    flex: 1;
    text-align: center;
}

.aid-content {
    flex: 1;
}

.aid-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.aid-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.aid-list {
    list-style: none;
    margin-bottom: 40px;
}

.aid-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.aid-list i {
    color: var(--green);
    font-size: 1.2rem;
}

/* How to Buy Section */
.how-to-buy {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 168, 89, 0.05) 0%, transparent 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 20px 40px rgba(0, 168, 89, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step h3 {
    margin: 20px 0 15px;
    color: var(--text-light);
}

.step p {
    color: var(--text-gray);
}

/* Footer */
footer {
    background: var(--dark-gray);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--green);
}

.footer-about p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--medium-gray);
    color: var(--text-light);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--green);
    color: white;
    transform: translateY(-3px);
}

.footer-links h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--green);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Animations */
@keyframes starTwinkle {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.1); 
        box-shadow: 0 0 10px currentColor;
    }
}

@keyframes priceFlash {
    0% { background-color: transparent; }
    50% { background-color: rgba(0, 168, 89, 0.1); }
    100% { background-color: transparent; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .aid-container {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        padding: 30px;
        gap: 20px;
        border-top: 1px solid var(--border-color);
    }
    
    .timer {
        flex-wrap: wrap;
    }
    
    .timer-item {
        min-width: 80px;
    }
    
    .presale-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }
    
    .timer-item {
        min-width: 60px;
        padding: 15px 10px;
    }
    
    .timer-value {
        font-size: 2rem;
    }
}