/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7fff00;
    --primary-dark: #5cbf00;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text: #ffffff;
    --text-muted: #aaaaaa;
    --glow: 0 0 20px rgba(127, 255, 0, 0.5);
    --glow-strong: 0 0 40px rgba(127, 255, 0, 0.8);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PARTICLES ===== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    50% { transform: translateY(-100vh) translateX(50px); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(127, 255, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--glow);
}

.logo-symbol {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: var(--glow);
}

.btn-buy-nav {
    background: var(--primary);
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: var(--glow);
}

.btn-buy-nav:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-strong);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 1;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-badge {
    display: inline-block;
    background: rgba(127, 255, 0, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(127, 255, 0, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(127, 255, 0, 0); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.glow-text {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--glow-strong);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(127, 255, 0, 0.5), 0 0 40px rgba(127, 255, 0, 0.3); }
    to { text-shadow: 0 0 40px rgba(127, 255, 0, 0.8), 0 0 80px rgba(127, 255, 0, 0.5); }
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 20px 0 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: var(--glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(127, 255, 0, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Image */
.hero-image {
    flex: 0 0 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: var(--glow-strong), inset 0 0 30px rgba(127, 255, 0, 0.2);
}

.coin-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 255, 0, 0.2) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== TICKER BAR ===== */
.ticker-bar {
    background: var(--primary);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ticker-content {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== ABOUT SECTION ===== */
.about, .buy-section, .tokenomics, .roadmap, .community {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.highlight {
    color: var(--primary);
    text-shadow: var(--glow);
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: var(--glow);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid rgba(127, 255, 0, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--glow);
    background: var(--bg-card-hover);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== BUY SECTION ===== */
.buy-section {
    background: linear-gradient(180deg, transparent, rgba(127, 255, 0, 0.02), transparent);
}

.buy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.step {
    background: var(--bg-card);
    border: 1px solid rgba(127, 255, 0, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.step:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.step-number {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0 auto 15px;
    box-shadow: var(--glow);
}

.step h3 {
    color: var(--text);
    margin-bottom: 10px;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.buy-cta {
    text-align: center;
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 45px;
}

.contract-address {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contract-address code {
    background: var(--bg-card);
    padding: 8px 15px;
    border-radius: 8px;
    margin-left: 10px;
    border: 1px solid rgba(127, 255, 0, 0.2);
    color: var(--primary);
    font-size: 0.85rem;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 8px;
    transition: transform 0.2s;
}

.copy-btn:hover {
    transform: scale(1.2);
}

/* ===== TOKENOMICS ===== */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.token-card {
    background: var(--bg-card);
    border: 1px solid rgba(127, 255, 0, 0.15);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s;
}

.token-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.token-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.token-card h3 {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.token-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: var(--glow);
    margin-bottom: 5px;
}

.token-card span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== ROADMAP ===== */
.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.roadmap-item {
    background: var(--bg-card);
    border: 1px solid rgba(127, 255, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.roadmap-item:hover::before,
.roadmap-item.active::before {
    opacity: 1;
}

.roadmap-item.active {
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.roadmap-phase {
    display: inline-block;
    background: rgba(127, 255, 0, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.roadmap-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.roadmap-item ul {
    list-style: none;
}

.roadmap-item li {
    color: var(--text-muted);
    padding: 5px 0;
    font-size: 0.9rem;
}

/* ===== COMMUNITY ===== */
.community-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-card {
    background: var(--bg-card);
    border: 1px solid rgba(127, 255, 0, 0.1);
    border-radius: 20px;
    padding: 30px 50px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--glow);
}

.social-icon {
    font-size: 2.5rem;
}

.social-card span {
    color: var(--text);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(127, 255, 0, 0.1);
    position: relative;
    z-index: 1;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--glow);
    margin-bottom: 15px;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.6;
    max-width: 500px;
    margin: 10px auto 0 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 100px;
        gap: 30px;
    }

    .hero-image {
        flex: 0 0 auto;
    }

    .hero-logo {
        width: 220px;
        height: 220px;
    }

    .coin-glow {
        width: 240px;
        height: 240px;
    }

    .glow-text {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-large {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .contract-address {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .contract-address code {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .glow-text {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .social-card {
        padding: 20px 35px;
    }
}
