@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Space+Mono:wght@400;700&family=Audiowide&family=Share+Tech+Mono&display=swap');

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

body {
    font-family: 'Space Mono', monospace;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Complex Background System */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.matrix-column {
    position: absolute;
    top: -100px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    color: #00ff88;
    animation: matrixFall linear infinite;
    text-shadow: 0 0 5px #00ff88;
}

@keyframes matrixFall {
    to { transform: translateY(100vh); }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(138, 43, 226, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 43, 226, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(360deg); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: floatShape 15s ease-in-out infinite;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid #ffeb3b;
}

.shape.diamond {
    width: 30px;
    height: 30px;
    background: #8a2be2;
    transform: rotate(45deg);
}

.shape.hexagon {
    width: 40px;
    height: 34.64px;
    background: #00ff88;
    position: relative;
}

.shape.hexagon:before,
.shape.hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

.shape.hexagon:before {
    bottom: 100%;
    border-bottom: 11.55px solid #00ff88;
}

.shape.hexagon:after {
    top: 100%;
    border-top: 11.55px solid #00ff88;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    25% { transform: translateY(-50px) rotate(90deg); opacity: 0.3; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: 0.1; }
    75% { transform: translateY(-50px) rotate(270deg); opacity: 0.3; }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    border-radius: 50%;
}

.particle.small {
    width: 2px;
    height: 2px;
    background: #00ff88;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle.medium {
    width: 4px;
    height: 4px;
    background: #ffeb3b;
    animation: particleFloat 12s ease-in-out infinite reverse;
}

.particle.large {
    width: 6px;
    height: 6px;
    background: #8a2be2;
    animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 1; }
    25% { transform: translateY(-100px) translateX(50px) rotate(90deg); opacity: 0.7; }
    50% { transform: translateY(-200px) translateX(-30px) rotate(180deg); opacity: 0.3; }
    75% { transform: translateY(-150px) translateX(-80px) rotate(270deg); opacity: 0.7; }
}

/* Advanced Holographic Background */
.holographic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(138, 43, 226, 0.1) 0%,
        rgba(0, 255, 136, 0.1) 25%,
        rgba(255, 235, 59, 0.1) 50%,
        rgba(255, 0, 128, 0.1) 75%,
        rgba(138, 43, 226, 0.1) 100%
    );
    background-size: 400% 400%;
    animation: holographicShift 15s ease infinite;
}

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

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
	
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 255, 136, 0.1) 50%,
        transparent 100%);
    animation: navScan 3s ease-in-out infinite;
	
}

@keyframes navScan {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nav-logo {
    font-family: 'Audiowide', cursive;
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #8a2be2, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    letter-spacing: 2px;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #00ff88);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}

.nav-links a:hover::before {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
	position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #8a2be2, #00ff88);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 2rem;
    perspective: 1000px;
}

.pixel-cat {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.pixel-cat img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(138, 43, 226, 0.6))
            drop-shadow(0 0 80px rgba(0, 255, 136, 0.4));
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(138, 43, 226, 0.6)) drop-shadow(0 0 80px rgba(0, 255, 136, 0.4)); }
    50% { filter: drop-shadow(0 0 60px rgba(138, 43, 226, 0.9)) drop-shadow(0 0 120px rgba(0, 255, 136, 0.6)); }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8a2be2 0%, #00ff88 50%, #ffeb3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(138, 43, 226, 0.8);
    animation: titleGlow 3s ease-in-out infinite;
    letter-spacing: 4px;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.8)); }
    50% { filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.9)); }
}

.hero p {
    font-size: 1.5rem;
    color: #b8b8b8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;;
    justify-content: center;
    flex-wrap: wrap;
	align-items: center;      
    
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
	width: 100%;
    max-width: 300px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #8a2be2, #00ff88);
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 60px rgba(138, 43, 226, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #8a2be2;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.2);
}

.btn-secondary:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 60px rgba(138, 43, 226, 0.4);
}


/* Sections */
section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #8a2be2, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #8a2be2, #00ff88);
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about {
            background: linear-gradient(135deg, 
                rgba(138, 43, 226, 0.1), 
                rgba(0, 255, 136, 0.05), 
                rgba(255, 235, 59, 0.1));
            border-radius: 30px;
            padding: 4rem;
            margin: 3rem 0;
            border: 1px solid rgba(138, 43, 226, 0.3);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            animation: aboutFloat 8s ease-in-out infinite;
        }

.about-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

.about-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.about-card p {
    color: #b8b8b8;
    line-height: 1.8;
}

/* Tokenomics */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.token-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(138, 43, 226, 0.1),
        transparent);
    transition: left 0.5s ease;
}

.token-card:hover::before {
    left: 100%;
}

.token-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00ff88;
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.4);
}

.token-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.token-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.token-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.token-card p {
    color: #b8b8b8;
    font-size: 0.9rem;
}

/* Utility Section - Diamond Hands Vault */
.utility-content {
    max-width: 1200px;
    margin: 0 auto;
}

.utility-intro {
    text-align: center;
    color: #b8b8b8;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.utility-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.utility-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.utility-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.utility-card:hover::before {
    opacity: 1;
}

.utility-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

.utility-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.utility-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.utility-card p {
    color: #b8b8b8;
    line-height: 1.8;
}

.utility-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.utility-cta h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.utility-cta p {
    color: #b8b8b8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.utility-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.utility-link {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #8a2be2, #00ff88);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.utility-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.5);
}

.utility-link.secondary {
    background: transparent;
    border: 2px solid #8a2be2;
}

.utility-link.secondary:hover {
    background: rgba(138, 43, 226, 0.1);
}

/* Live Chart Section */
.chart-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.chart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.chart-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.ca-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.ca-label {
    color: #b8b8b8;
    font-size: 0.9rem;
}

#caText {
    background: rgba(138, 43, 226, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: #00ff88;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    position: relative;
}

#caText:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: #00ff88;
    transform: scale(1.05);
}

#caText.copied::after {
    content: 'Copied!';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff88;
    color: #0a0a0a;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    animation: copyPopup 1.2s ease;
}

@keyframes copyPopup {
    0% { opacity: 0; transform: translateX(-50%) translateY(10px); }
    20% { opacity: 1; transform: translateX(-50%) translateY(0); }
    80% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

.chart-container {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    background: #0d0f1a;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

#gtFrame {
    width: 100%;
    height: 100%;
    border: none;
}

/* Roadmap */
.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #8a2be2, #00ff88);
    transform: translateX(-50%);
}

.roadmap-item {
    position: relative;
    margin-bottom: 3rem;
    width: 45%;
}

.roadmap-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
}

.roadmap-item:nth-child(even) {
    margin-left: auto;
    text-align: left;
}

.roadmap-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-content:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.2);
}

.roadmap-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #8a2be2;
    border: 3px solid #0a0a0a;
    border-radius: 50%;
    transform: translateY(-50%);
}

.roadmap-item:nth-child(odd) .roadmap-content::after {
    right: -60px;
}

.roadmap-item:nth-child(even) .roadmap-content::after {
    left: -60px;
}

.roadmap-phase {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.roadmap-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.roadmap-content p {
    color: #b8b8b8;
    line-height: 1.8;
}

/* Community */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.social-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #00ff88;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

.social-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.social-card:hover .social-icon img {
    filter: brightness(1.5) drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
    transform: scale(1.1);
}

.social-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(138, 43, 226, 0.3);
    padding: 3rem 2rem 1.5rem;
    color: #b8b8b8;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00ff88;
    transform: translateX(5px);
}

.contract-address {
    padding: 1rem;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    word-break: break-all;
    color: #00ff88;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .roadmap-item {
        width: 100%;
        margin-left: 50px !important;
        text-align: left !important;
    }
    
    .roadmap-item:nth-child(odd) .roadmap-content::after,
    .roadmap-item:nth-child(even) .roadmap-content::after {
        left: -60px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(138, 43, 226, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 6rem 1rem 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .pixel-cat {
        width: 200px;
        height: 200px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn,
    .btn-primary,
    .btn-secondary {
        width: 90%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
    }
	
    
    section {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .tokenomics-grid,
    .utility-features,
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        height: 500px;
    }
    
    #caText {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }
    
    .utility-links {
        flex-direction: column;
        align-items: center;
    }
    
    .utility-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.4rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .pixel-cat {
        width: 160px;
        height: 160px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .token-card,
    .about-card,
    .utility-card {
        padding: 1.5rem;
    }
    
    .chart-container {
        height: 400px;
    }
    
    #caText {
        font-size: 0.7rem;
        padding: 0.5rem 0.8rem;
    }
    
    .roadmap-item {
        margin-left: 30px !important;
    }
}
/* Developer Info Section */
.developer-info {
    margin-top: 3rem;
    background: rgba(138, 43, 226, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.developer-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8a2be2, #00ff88, #8a2be2);
    background-size: 200% 100%;
    animation: gradientSlide 3s ease infinite;
}

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

.developer-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.developer-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8a2be2, #00ff88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
}

.developer-avatar::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: #0a0a0a;
    border-radius: 50%;
    z-index: 0;
}

.dev-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.developer-title h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 0.3rem;
}

.developer-name {
    color: #8a2be2;
    font-weight: 700;
    font-size: 1.1rem;
}

.developer-content p {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.developer-content a {
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s ease;
}

.developer-content a:hover {
    color: #8a2be2;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.developer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dev-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 255, 136, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.dev-stat:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.stat-icon {
    font-size: 2rem;
    min-width: 40px;
    text-align: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-info strong {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 1rem;
}

.stat-info span {
    color: #888;
    font-size: 0.85rem;
}

.developer-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.dev-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 50px;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dev-link:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: #00ff88;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.link-icon {
    font-size: 1.2rem;
}

.developer-quote {
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid #00ff88;
    padding: 1.5rem;
    margin: 0;
    border-radius: 10px;
    font-style: italic;
    color: #b8b8b8;
    line-height: 1.8;
}

.developer-quote cite {
    display: block;
    margin-top: 1rem;
    color: #00ff88;
    font-style: normal;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Responsive Developer Section */
@media (max-width: 768px) {
    .developer-info {
        padding: 1.5rem;
    }
    
    .developer-header {
        flex-direction: column;
        text-align: center;
    }
    
    .developer-avatar {
        width: 60px;
        height: 60px;
    }
    
    .dev-icon {
        font-size: 2rem;
    }
    
    .developer-stats {
        grid-template-columns: 1fr;
    }
    
    .developer-links {
        flex-direction: column;
    }
    
    .dev-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .developer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .dev-icon {
        font-size: 1.5rem;
    }
    
    .developer-title h4 {
        font-size: 1.2rem;
    }
    
    .dev-stat {
        padding: 1rem;
    }
}