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

/* Performance optimization */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

:root {
    --black: #0a0e1a;
    --dark-green: #0d2818;
    --bright-green: #00ff00;
    --light-green: #00ff99;
    --blue: #00ffff;
    --orange: #ff6600;
    --white: #ffffff;
    --gray: #a0a0a0;
    --neon-cyan: #00ffff;
    --neon-green: #00ff00;
    --neon-pink: #ff00ff;
    --neon-yellow: #ffff00;
    --dark-bg: linear-gradient(135deg, #0a1128 0%, #0d2818 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a1128 0%, #0d2818 50%, #0a1128 100%);
    background-attachment: fixed;
}

/* Fade-in animations for cards */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animated Stars Background - DISABLED for performance */
.stars, .stars2, .stars3 {
    display: none;
}

/* Flying Frogs */
#flyingFrogs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flying-frog {
    position: absolute;
    animation: flyAround 20s infinite ease-in-out;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes flyAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, -100px) rotate(90deg);
    }
    50% {
        transform: translate(200px, 0) rotate(180deg);
    }
    75% {
        transform: translate(100px, 100px) rotate(270deg);
    }
}

/* Tennis Balls Container (only in hero) */
#tennisBalls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

/* Single Big Tennis Ball - With gentle movement */
.tennis-ball-big {
    position: absolute;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    z-index: 3;
    animation: gentleBounce 4s ease-in-out infinite;
    will-change: transform;
}

@keyframes gentleBounce {
    0%, 100% {
        transform: translate3d(0, -50%, 0);
    }
    50% {
        transform: translate3d(0, calc(-50% + 15px), 0);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Menu */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--bright-green);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-logo {
    font-family: 'Bungee', cursive;
    font-size: 28px;
    background: linear-gradient(135deg, #00ff00, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--bright-green);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bright-green);
    transition: width 0.3s;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-buy-btn {
    background: var(--bright-green) !important;
    color: var(--black) !important;
    padding: 10px 25px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    transition: all 0.3s !important;
}

.nav-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.6) !important;
}

.nav-buy-btn::after {
    display: none !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--bright-green);
    border-radius: 2px;
    transition: all 0.3s;
}

.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;
    position: relative;
    z-index: 2;
    background: url('character-flying.png') center center / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 10;
}

.main-avatar {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -20px, 0); }
}

.avatar-circle {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background: linear-gradient(135deg, #00ff00, #00ffff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.6), 0 0 60px rgba(0, 255, 255, 0.4);
    border: 8px solid var(--white);
    /* Pulse animation disabled for performance */
}

.frog-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frog-avatar img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.main-title {
    font-family: 'Bungee', cursive;
    font-size: 120px;
    background: linear-gradient(135deg, #00ff00, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    letter-spacing: 10px;
    filter: drop-shadow(-4px -4px 0 rgba(255, 255, 255, 1))
            drop-shadow(4px 4px 0 rgba(255, 255, 255, 1))
            drop-shadow(-4px 4px 0 rgba(255, 255, 255, 1))
            drop-shadow(4px -4px 0 rgba(255, 255, 255, 1))
            drop-shadow(0 0 20px rgba(0, 255, 0, 0.4))
            drop-shadow(0 0 40px rgba(0, 255, 255, 0.3));
    animation: titleGlow 3s ease-in-out infinite;
    will-change: filter;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(-4px -4px 0 rgba(255, 255, 255, 1))
                drop-shadow(4px 4px 0 rgba(255, 255, 255, 1))
                drop-shadow(-4px 4px 0 rgba(255, 255, 255, 1))
                drop-shadow(4px -4px 0 rgba(255, 255, 255, 1))
                drop-shadow(0 0 20px rgba(0, 255, 0, 0.4))
                drop-shadow(0 0 40px rgba(0, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(-4px -4px 0 rgba(255, 255, 255, 1))
                drop-shadow(4px 4px 0 rgba(255, 255, 255, 1))
                drop-shadow(-4px 4px 0 rgba(255, 255, 255, 1))
                drop-shadow(4px -4px 0 rgba(255, 255, 255, 1))
                drop-shadow(0 0 30px rgba(0, 255, 0, 0.6))
                drop-shadow(0 0 60px rgba(0, 255, 255, 0.5));
    }
}

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

.btn {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--bright-green);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 60px rgba(0, 255, 0, 1), 0 5px 40px rgba(0, 255, 255, 1), 0 0 80px rgba(255, 0, 255, 0.6);
}

.btn-secondary {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0d2818 0%, #0a1128 50%, #0d2818 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 10px 30px rgba(0, 255, 136, 0.1);
}

.about-pattern {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    text-align: center;
    transform: translateY(-50%);
    pointer-events: none;
    letter-spacing: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Bungee', cursive;
    font-size: 48px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.tagline {
    font-size: 24px !important;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff00, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    margin-top: 30px !important;
    filter: drop-shadow(0 0 20px rgba(0, 255, 0, 1)) drop-shadow(0 0 30px rgba(0, 255, 255, 1));
    animation: taglineShine 3s linear infinite;
}

@keyframes taglineShine {
    to { background-position: 200% center; }
}

.character-box {
    background: linear-gradient(145deg, #ffffff, #e0e0e0);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4), 0 5px 20px rgba(0, 212, 255, 0.3);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.character-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, #00ff00, #00ffff, #ff00ff, #ffff00);
    background-size: 200% auto;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    animation: borderShine 3s linear infinite;
}

@keyframes borderShine {
    to { background-position: 200% center; }
}

.character {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Links Section */
.links {
    background: linear-gradient(135deg, #0a1128 0%, #0d2818 100%);
    padding: 100px 0;
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--white);
}

.social-icon.telegram {
    background: #0088cc;
}

.social-icon.twitter {
    background: #000000;
    border: 3px solid var(--white);
}

.social-icon:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.6), 0 5px 20px rgba(0, 212, 255, 0.4);
}

.social-icon svg {
    width: 50px;
    height: 50px;
}

.pleb-icon {
    font-size: 60px;
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(135deg, #0d2818 0%, #0a1128 100%);
    padding: 100px 0;
}

.tokenomics-header {
    text-align: center;
    margin-bottom: 60px;
}

.tokenomics-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-small {
    padding: 12px 30px;
    font-size: 14px;
}

.contract-display {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.contract-display code {
    color: var(--bright-green);
    font-size: 14px;
}

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

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

.tokenomics-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.token-card {
    background: linear-gradient(145deg, #0a1128, #0d2818);
    border: 3px solid var(--bright-green);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.token-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 80px rgba(0, 255, 0, 1), 0 15px 50px rgba(0, 255, 255, 1), 0 10px 40px rgba(255, 0, 255, 0.8);
    border-color: var(--neon-cyan);
    animation: cardPulse 1s ease-in-out infinite;
}

@keyframes cardPulse {
    0%, 100% { box-shadow: 0 20px 80px rgba(0, 255, 0, 1), 0 15px 50px rgba(0, 255, 255, 1); }
    50% { box-shadow: 0 25px 100px rgba(0, 255, 0, 1), 0 20px 70px rgba(0, 255, 255, 1); }
}

.token-image {
    width: 250px;
    height: 250px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0d2818, #0a1128);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 255, 136, 0.1);
}

.token-char {
    font-size: 80px;
}

.token-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.token-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--bright-green);
}

/* CTO Banner */
.cto-banner {
    margin-bottom: 30px;
}

.banner-bg {
    height: 250px;
    background: linear-gradient(180deg, #00ffff 0%, #00ff00 30%, #ffff00 60%, #ff00ff 100%);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 255, 0, 1), 0 10px 40px rgba(0, 255, 255, 1);
    animation: bannerGlow 3s ease-in-out infinite;
}

@keyframes bannerGlow {
    0%, 100% { box-shadow: 0 15px 60px rgba(0, 255, 0, 1), 0 10px 40px rgba(0, 255, 255, 1); }
    50% { box-shadow: 0 20px 80px rgba(0, 255, 0, 1), 0 15px 60px rgba(0, 255, 255, 1), 0 10px 40px rgba(255, 0, 255, 0.8); }
}

.banner-frog {
    position: absolute;
    left: 10%;
    font-size: 120px;
    animation: jump 2s ease-in-out infinite;
}

@keyframes jump {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.banner-text {
    font-family: 'Bungee', cursive;
    font-size: 80px;
    color: var(--bright-green);
    text-shadow:
        3px 3px 0 var(--black),
        -3px -3px 0 var(--black),
        3px -3px 0 var(--black),
        -3px 3px 0 var(--black);
    z-index: 1;
}

/* Scrolling Text */
.scrolling-text {
    background: linear-gradient(90deg, #0a1128, #0d2818, #0a1128);
    padding: 20px 0;
    overflow: hidden;
    border-top: 3px solid var(--bright-green);
    border-bottom: 3px solid var(--neon-cyan);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3), 0 -5px 20px rgba(0, 212, 255, 0.3);
}

.scroll-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.scroll-content span {
    font-family: 'Bungee', cursive;
    font-size: 36px;
    background: linear-gradient(90deg, #00ff00, #00ffff, #ff00ff, #ffff00, #00ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    padding-right: 50px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 0, 1)) drop-shadow(0 0 30px rgba(0, 255, 255, 1));
    animation: textShine 3s linear infinite;
}

@keyframes textShine {
    to { background-position: 200% center; }
}

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

/* How to Buy Section */
.how-to-buy {
    background: var(--black);
    background-image: url('background-buy.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

.how-to-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.7);
    z-index: 0;
}

.how-to-buy .container {
    position: relative;
    z-index: 1;
}

.buy-title {
    font-family: 'Bungee', cursive;
    font-size: 100px;
    background: linear-gradient(135deg, #00ff00, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    text-align: center;
    margin-bottom: 80px;
    filter: drop-shadow(0 0 40px rgba(0, 255, 0, 1))
            drop-shadow(0 0 60px rgba(0, 255, 255, 1))
            drop-shadow(0 0 80px rgba(255, 0, 255, 0.8));
    animation: titleShine 4s linear infinite;
}

@keyframes titleShine {
    to { background-position: 200% center; }
}

.buy-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.buy-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}

.buy-card:hover {
    border-color: var(--bright-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.5), 0 5px 20px rgba(0, 212, 255, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff00, #00ffff, #ff00ff);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0, 255, 0, 1), 0 5px 20px rgba(0, 255, 255, 1);
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(0, 255, 0, 1), 0 5px 20px rgba(0, 255, 255, 1); }
    50% { box-shadow: 0 12px 40px rgba(0, 255, 0, 1), 0 8px 30px rgba(0, 255, 255, 1), 0 5px 20px rgba(255, 0, 255, 0.8); }
}

.buy-card h3 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 75px;
}

.step-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}

.step-link:hover {
    text-decoration: underline;
}

.exchange-links {
    display: flex;
    gap: 10px;
}

.exchange-link {
    padding: 8px 15px;
    background: rgba(77, 159, 255, 0.2);
    border: 1px solid var(--blue);
    border-radius: 8px;
    color: var(--blue);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.exchange-link:hover {
    background: var(--blue);
    color: var(--white);
}

.contract-box {
    margin-top: 15px;
}

.contract-box label {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
    color: var(--gray);
}

.contract-box input {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 12px;
    font-family: monospace;
}

.btn-chart {
    display: block;
    margin: 0 auto;
    padding: 18px 60px;
    background: var(--blue);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-chart:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(77, 159, 255, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a1128 0%, #0d2818 100%);
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid var(--bright-green);
    box-shadow: 0 -5px 20px rgba(0, 255, 136, 0.2);
}

.copyright {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 1200px) {
    .buy-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .tokenomics-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 30px 0;
        border-left: none;
        box-shadow: none;
        transition: right 0.3s ease;
        overflow-y: auto;
        justify-content: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0;
        border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    }

    .nav-menu li a {
        font-size: 20px;
        display: block;
        padding: 20px 30px;
        color: var(--white);
    }

    .nav-menu li a::after {
        display: none;
    }

    .nav-menu li a:hover {
        background: rgba(0, 255, 0, 0.1);
    }

    .nav-buy-btn {
        margin: 20px 30px !important;
        display: block !important;
        text-align: center !important;
        padding: 15px 40px !important;
        font-size: 18px !important;
        border-radius: 10px !important;
    }

    .nav-logo {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .main-title {
        font-size: 60px;
        letter-spacing: 5px;
        filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.3))
                drop-shadow(0 0 15px rgba(0, 255, 255, 0.2))
                drop-shadow(-3px -3px 0 rgba(255, 255, 255, 0.9))
                drop-shadow(3px 3px 0 rgba(255, 255, 255, 0.9))
                drop-shadow(-3px 3px 0 rgba(255, 255, 255, 0.9))
                drop-shadow(3px -3px 0 rgba(255, 255, 255, 0.9)) !important;
    }

    @keyframes titleGlow {
        0%, 100% {
            filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.3))
                    drop-shadow(0 0 15px rgba(0, 255, 255, 0.2)) !important;
        }
        50% {
            filter: drop-shadow(0 0 12px rgba(0, 255, 0, 0.4))
                    drop-shadow(0 0 20px rgba(0, 255, 255, 0.3)) !important;
        }
    }

    .avatar-circle {
        width: 200px;
        height: 200px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .social-icons {
        gap: 20px;
    }

    .social-icon {
        width: 80px;
        height: 80px;
    }

    .social-icon svg {
        width: 40px;
        height: 40px;
    }

    .tokenomics-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .token-image {
        width: 200px;
        height: 200px;
    }

    .banner-bg {
        height: 180px;
    }

    .banner-text {
        font-size: 40px;
    }

    .scroll-content span {
        font-size: 28px;
    }

    .buy-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .buy-title {
        font-size: 50px;
    }

    .buy-card h3 {
        font-size: 15px;
        min-height: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 20px;
    }

    .nav-menu li a {
        font-size: 18px;
        padding: 18px 25px;
    }

    .nav-buy-btn {
        margin: 15px 25px !important;
        padding: 14px 35px !important;
        font-size: 16px !important;
    }

    .main-title {
        font-size: 40px;
        letter-spacing: 3px;
        filter: drop-shadow(0 0 6px rgba(0, 255, 0, 0.25))
                drop-shadow(0 0 12px rgba(0, 255, 255, 0.15))
                drop-shadow(-2px -2px 0 rgba(255, 255, 255, 0.9))
                drop-shadow(2px 2px 0 rgba(255, 255, 255, 0.9))
                drop-shadow(-2px 2px 0 rgba(255, 255, 255, 0.9))
                drop-shadow(2px -2px 0 rgba(255, 255, 255, 0.9)) !important;
    }

    @keyframes titleGlow {
        0%, 100% {
            filter: drop-shadow(0 0 6px rgba(0, 255, 0, 0.25))
                    drop-shadow(0 0 12px rgba(0, 255, 255, 0.15)) !important;
        }
        50% {
            filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.3))
                    drop-shadow(0 0 16px rgba(0, 255, 255, 0.2)) !important;
        }
    }

    .avatar-circle {
        width: 150px;
        height: 150px;
    }

    .section-title {
        font-size: 24px;
    }

    .about-text p {
        font-size: 14px;
    }

    .social-icon {
        width: 70px;
        height: 70px;
    }

    .social-icon svg {
        width: 35px;
        height: 35px;
    }

    .token-card {
        padding: 20px;
    }

    .token-image {
        width: 150px;
        height: 150px;
    }

    .banner-bg {
        height: 150px;
    }

    .banner-text {
        font-size: 30px;
    }

    .scroll-content span {
        font-size: 20px;
    }

    .buy-title {
        font-size: 36px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .buy-card {
        padding: 20px;
    }

    .buy-card h3 {
        font-size: 14px;
    }

    .btn {
        font-size: 16px;
        padding: 15px 30px;
    }
}
