@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;900&family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-color: #00f7ff;
    --secondary-color: #ff00ff;
    --bg-dark: #0a0a1f;
    --text-light: #ffffff;
    --glow-color: rgba(0, 247, 255, 0.5);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Star Animation */
#stars, #stars2, #stars3 {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 31, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 247, 255, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px var(--glow-color));
}

.logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px var(--glow-color));
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-item {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-item:hover, .nav-item.active {
    background: rgba(0, 247, 255, 0.1);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 31, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.1);
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 10px var(--glow-color);
    animation: glitch 1s infinite;
}

.tagline {
    font-size: 1.5rem;
    margin: 1rem 0 2rem;
    opacity: 0.9;
}

/* Token Info */
.token-info {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 247, 255, 0.2);
}

.stat .value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

.stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--glow-color);
}

/* Animations */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    background: rgba(10, 10, 31, 0.8);
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-link {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 31, 0.95);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

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

    .menu-btn {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-color);
    }

    .glitch {
        font-size: 3rem;
    }

    .token-info {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Add to your existing CSS */
.content-wrapper {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.section-content {
    display: none;
    height: calc(100vh - 80px);
    position: absolute;
    width: 100%;
    top: 80px;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    overflow: hidden;
}

.section-content.active {
    display: flex;
    opacity: 1;
    justify-content: center;
    align-items: center;
}

/* About Section */
.about-content, .tokenomics-content, .roadmap-content, .community-content {
    background: rgba(10, 10, 31, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.1);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Tokenomics Section */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.tokenomics-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
}

.percent {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Roadmap Section */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.phase {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
}

.phase ul {
    list-style: none;
    margin-top: 1rem;
}

/* Community Section */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.social-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 247, 255, 0.2);
}

.social-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Update canvas positioning */
#coinAnimation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* About Section Base Styles */
.about-content {
    background: rgba(10, 10, 31, 0.3);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.1);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns by default */
    gap: 1rem;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
}

.feature i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-word;
}

.feature a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
    .about-content {
        width: 95%;
        padding: 1rem;
    }

    .features {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 0.75rem;
    }

    .feature {
        padding: 0.75rem;
        width: 100%;
    }

    .feature p {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .feature a {
        word-break: break-all;
        font-size: 0.85rem;
    }
}

/* Smaller screens */
@media (max-width: 480px) {
    .about-content {
        padding: 0.75rem;
    }

    .feature {
        padding: 0.75rem 0.5rem;
    }

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

    .feature p {
        font-size: 0.8rem;
        padding: 0 0.25rem;
    }
}

