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

:root {
    --primary-purple: #6B46C1;
    --dark-purple: #1a0033;
    --light-purple: #9F7AEA;
    --neon-purple: #B794F4;
    --bg-dark: #0a0014;
    --text-light: #E9D8FD;
    --accent-pink: #FF00FF;
    --accent-cyan: #00FFFF;
}

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--dark-purple) 100%);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><text x="0" y="18" font-size="18">👣</text></svg>'), auto;
}

#particles-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    background: radial-gradient(ellipse at bottom, var(--dark-purple) 0%, var(--bg-dark) 100%);
}

#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.music-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.music-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-pink), var(--primary-purple));
    border: 3px solid var(--accent-cyan);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    animation: musicPulse 2s infinite;
}

.music-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.8);
}

.music-btn.muted {
    background: linear-gradient(45deg, #666, #333);
    border-color: #888;
    box-shadow: 0 0 10px rgba(136, 136, 136, 0.3);
    animation: none;
    opacity: 0.7;
}

@keyframes musicPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
    }
}

#music-icon {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text x="0" y="24" font-size="24">👣</text></svg>'), auto;
    transition: opacity 0.5s ease-out;
    overflow: hidden;
}

.floating-pumpfun-logos {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.pumpfun-float {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.6;
    animation: pumpfunFloat 8s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.pumpfun-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.pumpfun-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 12s;
}

.pumpfun-3 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.pumpfun-4 {
    top: 40%;
    right: 8%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.pumpfun-5 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 13s;
}

.pumpfun-6 {
    bottom: 20%;
    right: 25%;
    animation-delay: 5s;
    animation-duration: 8s;
}

.pumpfun-7 {
    top: 35%;
    left: 30%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.pumpfun-8 {
    top: 70%;
    right: 40%;
    animation-delay: 7s;
    animation-duration: 7s;
}

.pumpfun-9 {
    top: 20%;
    left: 70%;
    animation-delay: 1.5s;
    animation-duration: 15s;
}

.pumpfun-10 {
    bottom: 40%;
    left: 60%;
    animation-delay: 2.5s;
    animation-duration: 6s;
}

.pumpfun-11 {
    top: 80%;
    left: 35%;
    animation-delay: 3.5s;
    animation-duration: 16s;
}

.pumpfun-12 {
    top: 45%;
    left: 85%;
    animation-delay: 4.5s;
    animation-duration: 5s;
}

@keyframes pumpfunFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(0px) translateX(-15px) rotate(180deg);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(25px) translateX(10px) rotate(270deg);
        opacity: 0.7;
    }
}

.loader {
    text-align: center;
}

.loading-logo {
    margin: 30px 0;
}

.dirtyy-image {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
    transition: all 0.3s;
}

.dirtyy-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 40px rgba(255, 0, 255, 0.8));
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0) rotate(-2deg);
        filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
    }
    50% { 
        transform: translateY(-20px) rotate(2deg);
        filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.8));
    }
}

/* Removed foot-loader - no longer needed */

.loading-text {
    margin-top: 20px;
    font-size: 20px;
    color: var(--neon-purple);
    animation: pulse 1s infinite;
}

.click-to-enter {
    margin-top: 30px;
    font-size: 18px;
    color: var(--accent-pink);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: blink 1.5s infinite;
    border: 2px solid var(--accent-pink);
    padding: 15px 30px;
    border-radius: 25px;
    background: rgba(255, 0, 255, 0.1);
    transition: all 0.3s;
}

.click-to-enter:hover {
    background: rgba(255, 0, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 0, 20, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-purple);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.pumpfun-address {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(107, 70, 193, 0.2);
    border: 2px solid var(--accent-pink);
    border-radius: 15px;
    padding: 8px 15px;
    animation: pulseGlow 2s infinite;
}

.pumpfun-label {
    font-size: 12px;
    color: var(--accent-cyan);
    font-weight: bold;
    text-transform: uppercase;
}

.pumpfun-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

#pumpfun-address {
    font-family: monospace;
    font-size: 14px;
    color: var(--accent-pink);
    font-weight: bold;
}

.copy-btn-nav {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s;
}

.copy-btn-nav:hover {
    transform: scale(1.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-feet {
    font-size: 30px;
    animation: wiggle 2s infinite;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-pink);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.buy-btn {
    background: linear-gradient(45deg, var(--accent-pink), var(--primary-purple));
    padding: 10px 20px;
    border-radius: 25px;
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 255, 0.8); }
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
}

.glitch-text {
    font-size: clamp(40px, 8vw, 100px);
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    animation: glitch 2s infinite;
    text-shadow: 
        0 0 10px var(--accent-pink),
        0 0 20px var(--accent-pink),
        0 0 40px var(--accent-pink);
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: var(--accent-cyan);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: var(--accent-pink);
    z-index: -2;
}

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

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 30% 0); transform: translate(-5px); }
    40% { clip-path: inset(50% 0 20% 0); transform: translate(5px); }
    60% { clip-path: inset(10% 0 60% 0); transform: translate(-3px); }
    80% { clip-path: inset(80% 0 5% 0); transform: translate(3px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(5px); }
    40% { clip-path: inset(20% 0 50% 0); transform: translate(-5px); }
    60% { clip-path: inset(30% 0 40% 0); transform: translate(3px); }
    80% { clip-path: inset(5% 0 80% 0); transform: translate(-3px); }
}

.hero-subtitle {
    font-size: 24px;
    margin: 20px 0 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.hero-description p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stats-preview {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgba(107, 70, 193, 0.2);
    border: 1px solid var(--primary-purple);
    border-radius: 10px;
    min-width: 100px;
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-pink);
    text-shadow: 0 0 10px var(--accent-pink);
}

.stat-label {
    font-size: 12px;
    color: var(--neon-purple);
    margin-top: 5px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-button {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    text-transform: uppercase;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--accent-pink), var(--primary-purple));
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-purple);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.4);
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover .button-glow {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.launch-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
}

.contract-address {
    text-align: center;
}

.pumpfun-section {
    text-align: center;
}

.pumpfun-hero-label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--accent-cyan);
    font-weight: bold;
    text-transform: uppercase;
}

.pumpfun-hero-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.3), rgba(0, 255, 255, 0.2));
    border: 3px solid var(--accent-cyan);
    padding: 15px 25px;
    border-radius: 15px;
    animation: borderGlow 2s infinite;
}

#pumpfun-link-display {
    font-family: monospace;
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    font-weight: bold;
}

.launch-btn {
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-cyan));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s;
    animation: rocketPulse 1s infinite;
}

.launch-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

@keyframes rocketPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
    50% { box-shadow: 0 0 25px rgba(0, 255, 255, 0.8); }
}

.ca-label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--neon-purple);
}

.ca-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(107, 70, 193, 0.2);
    border: 2px solid var(--primary-purple);
    padding: 15px 25px;
    border-radius: 10px;
    animation: borderGlow 2s infinite;
}

@keyframes borderGlow {
    0%, 100% { border-color: var(--primary-purple); }
    50% { border-color: var(--accent-pink); }
}

#contract-address {
    font-family: monospace;
    font-size: 16px;
    letter-spacing: 1px;
}

.copy-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: transform 0.2s;
}

.copy-btn:hover {
    transform: scale(1.2);
}

.floating-feet {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.foot {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
    animation: float 10s infinite ease-in-out;
}

.foot-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.foot-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.foot-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.foot-4 {
    top: 40%;
    right: 10%;
    animation-delay: 6s;
    animation-duration: 11s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(10deg); }
    50% { transform: translate(-20px, 20px) rotate(-10deg); }
    75% { transform: translate(40px, 10px) rotate(5deg); }
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.manifesto {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(107, 70, 193, 0.2) 100%);
    border: 2px solid var(--accent-pink);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
}

.manifesto h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--accent-cyan);
}

.manifesto ul {
    list-style: none;
    padding: 0;
}

.manifesto li {
    font-size: 16px;
    margin: 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(107, 70, 193, 0.3);
}

.chat-intro {
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.chat-intro p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.chat-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(107, 70, 193, 0.2);
    border-bottom: 1px solid var(--primary-purple);
    font-size: 14px;
}

.online-count {
    color: var(--accent-cyan);
}

.your-username {
    color: var(--accent-pink);
}

.about-section,
.tokenomics-section,
.chat-section,
.buy-section {
    padding: 100px 20px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(32px, 5vw, 60px);
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

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

.feature-card {
    background: rgba(107, 70, 193, 0.1);
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--accent-pink);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--neon-purple);
}

.feature-card p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

.tokenomics-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.token-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.2) 0%, rgba(255, 0, 255, 0.1) 100%);
    border: 2px solid var(--primary-purple);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: scale(1.05);
    border-color: var(--accent-cyan);
}

.stat-card h3 {
    font-size: 18px;
    color: var(--neon-purple);
    margin-bottom: 10px;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.7;
}

.countdown-container {
    text-align: center;
    margin-bottom: 40px;
}

.fomo-countdown {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.3) 0%, rgba(107, 70, 193, 0.4) 100%);
    border: 3px solid var(--accent-pink);
    border-radius: 20px;
    padding: 30px;
    margin: 0 auto 40px;
    max-width: 600px;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 0, 255, 0.5); }
    50% { box-shadow: 0 0 50px rgba(255, 0, 255, 0.8); }
}

.fomo-countdown h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--accent-cyan);
}

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

.time-unit {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-purple);
    border-radius: 10px;
    padding: 15px 20px;
    min-width: 80px;
    text-align: center;
}

.time-unit span {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-pink);
    text-shadow: 0 0 10px var(--accent-pink);
}

.time-unit label {
    font-size: 12px;
    color: var(--neon-purple);
    text-transform: uppercase;
    margin-top: 5px;
}

.countdown-text {
    font-size: 16px;
    font-weight: bold;
    color: var(--accent-cyan);
    margin-top: 15px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.price-tracker {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.2) 0%, rgba(0, 255, 255, 0.1) 100%);
    border: 2px solid var(--accent-cyan);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
}

.live-price {
    margin-bottom: 20px;
}

.price-label {
    font-size: 16px;
    color: var(--neon-purple);
    margin-right: 10px;
}

.price-value {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-cyan);
    text-shadow: 0 0 15px var(--accent-cyan);
    margin: 0 10px;
}

.price-change {
    font-size: 18px;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
}

.price-change.positive {
    background: rgba(0, 255, 0, 0.2);
    color: #00FF00;
    border: 1px solid #00FF00;
}

.price-change.negative {
    background: rgba(255, 0, 0, 0.2);
    color: #FF0000;
    border: 1px solid #FF0000;
}

.market-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.market-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.market-stat .stat-label {
    font-size: 14px;
    color: var(--neon-purple);
    margin-bottom: 5px;
}

.market-stat .stat-value {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent-pink);
}

.stat-card.premium {
    position: relative;
    overflow: hidden;
}

.stat-card.premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.stat-note {
    margin-top: 10px;
    font-size: 12px;
    font-weight: bold;
    color: var(--accent-cyan);
    background: rgba(0, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 15px;
    border: 1px solid var(--accent-cyan);
}

.advanced-tokenomics {
    background: rgba(107, 70, 193, 0.1);
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    padding: 30px;
}

.tokenomics-breakdown h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--accent-pink);
    font-size: 22px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.breakdown-label {
    font-size: 16px;
    color: var(--text-light);
    min-width: 200px;
}

.breakdown-bar {
    flex: 1;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin: 0 15px;
    overflow: hidden;
}

.breakdown-fill {
    height: 100%;
    border-radius: 10px;
    animation: fillAnimation 2s ease-out;
}

@keyframes fillAnimation {
    0% { width: 0%; }
    100% { width: var(--target-width); }
}

.breakdown-value {
    font-weight: bold;
    color: var(--accent-cyan);
    min-width: 100px;
    text-align: right;
}

.burn-mechanism {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--primary-purple);
}

.burn-mechanism h4 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-pink);
    font-size: 20px;
}

.burn-features {
    display: grid;
    gap: 20px;
}

.burn-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 10px;
    border: 1px solid var(--accent-pink);
}

.burn-icon {
    font-size: 24px;
    min-width: 30px;
}

.burn-feature strong {
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 5px;
}

.roadmap-section {
    background: linear-gradient(135deg, rgba(10, 0, 20, 0.9) 0%, rgba(26, 0, 51, 0.9) 100%);
    padding: 100px 20px;
    position: relative;
}

.roadmap-intro {
    text-align: center;
    margin-bottom: 60px;
}

.roadmap-intro p {
    font-size: 18px;
    opacity: 0.9;
}

.roadmap-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.phase {
    margin-bottom: 40px;
    position: relative;
    border-left: 4px solid var(--primary-purple);
    padding-left: 30px;
}

.phase-completed {
    border-left-color: #00FF00;
}

.phase-active {
    border-left-color: var(--accent-pink);
}

.phase-upcoming {
    border-left-color: var(--accent-cyan);
}

.phase-future {
    border-left-color: #888;
}

.phase::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-purple);
}

.phase-completed::before { background: #00FF00; }
.phase-active::before { background: var(--accent-pink); }
.phase-upcoming::before { background: var(--accent-cyan); }
.phase-future::before { background: #888; }

.phase-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.phase-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-pink), var(--primary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.phase-header h3 {
    font-size: 24px;
    color: var(--accent-cyan);
    flex: 1;
}

.phase-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.phase-status.completed {
    background: rgba(0, 255, 0, 0.2);
    color: #00FF00;
    border: 1px solid #00FF00;
}

.phase-status.active {
    background: rgba(255, 0, 255, 0.2);
    color: var(--accent-pink);
    border: 1px solid var(--accent-pink);
    animation: pulse 2s infinite;
}

.phase-status.upcoming {
    background: rgba(0, 255, 255, 0.2);
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.phase-status.future {
    background: rgba(136, 136, 136, 0.2);
    color: #888;
    border: 1px solid #888;
}

.phase-content {
    background: rgba(107, 70, 193, 0.1);
    border: 1px solid var(--primary-purple);
    border-radius: 15px;
    padding: 25px;
}

.phase-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.phase-content li {
    margin: 10px 0;
    padding: 8px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(107, 70, 193, 0.3);
}

.phase-milestone {
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    border: 2px solid var(--accent-pink);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-size: 16px;
}

.utility-section {
    background: var(--bg-dark);
    padding: 100px 20px;
}

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

.utility-card {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.2) 0%, rgba(255, 0, 255, 0.1) 100%);
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.utility-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

.utility-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-pink);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
}

.utility-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 3s infinite;
}

.utility-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-cyan);
}

.utility-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.utility-benefit {
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 16px;
    padding: 10px;
    border: 1px solid var(--accent-pink);
    border-radius: 20px;
    background-color: rgba(255, 0, 255, 0.1);
}

.pie-chart-container {
    position: relative;
    height: 400px;
}

.retro-terminal {
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    border: 3px solid var(--primary-purple);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(107, 70, 193, 0.5);
}

.terminal-header {
    background: linear-gradient(90deg, var(--primary-purple), var(--dark-purple));
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-btn.red {
    background: #ff5f56;
}

.terminal-btn.yellow {
    background: #ffbd2e;
}

.terminal-btn.green {
    background: #27c93f;
}

.terminal-title {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
}

.terminal-body {
    background: rgba(0, 0, 0, 0.9);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 400px;
    font-family: 'Courier New', monospace;
}

.ai-message,
.user-message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    animation: fadeInUp 0.3s;
}

.ai-message {
    background: rgba(107, 70, 193, 0.2);
    border-left: 3px solid var(--primary-purple);
}

.user-message {
    background: rgba(255, 0, 255, 0.1);
    border-left: 3px solid var(--accent-pink);
}

.message-prefix {
    color: var(--accent-cyan);
    font-weight: bold;
    margin-right: 10px;
}

.message-text {
    color: var(--text-light);
    line-height: 1.6;
}

.terminal-input-container {
    display: flex;
    align-items: center;
    padding: 20px;
    border-top: 1px solid var(--primary-purple);
    background: rgba(107, 70, 193, 0.1);
}

.input-prefix {
    color: var(--accent-cyan);
    font-size: 18px;
    margin-right: 10px;
    font-weight: bold;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    font-size: 16px;
    outline: none;
}

.terminal-input::placeholder {
    color: rgba(233, 216, 253, 0.5);
}

.send-btn {
    background: linear-gradient(45deg, var(--accent-pink), var(--primary-purple));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 10px;
}

.send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.buy-card {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.3) 0%, rgba(255, 0, 255, 0.2) 100%);
    border: 3px solid var(--primary-purple);
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.buy-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.2) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

.buy-card h3 {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.buy-card p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.mega-buy-btn {
    background: linear-gradient(45deg, var(--accent-pink), var(--primary-purple), var(--accent-cyan));
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: gradientShift 3s ease infinite;
    transition: all 0.3s;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.mega-buy-btn:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 15px 50px rgba(255, 0, 255, 0.6);
}

.social-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    border: 2px solid var(--primary-purple);
    border-radius: 25px;
    transition: all 0.3s;
    display: inline-block;
}

.social-link:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.5);
}

.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 2px solid var(--primary-purple);
    background: rgba(10, 0, 20, 0.9);
}

@media (max-width: 768px) {
    .tokenomics-container {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .glitch-text {
        font-size: 48px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}