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

:root {
    --primary-green: #00E676;
    --vibrant-green: #00D965;
    --primary-yellow: #FFD700;
    --primary-purple: #9C27B0;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --accent-blue: #3b82f6;
    --logo-green: #00d174;
    --gradient-1: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    --gradient-2: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    --gradient-3: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-green: linear-gradient(135deg, #00E676 0%, #00D965 100%);
}

body {
    font-family: 'Fredoka', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    position: relative;
    min-width: 320px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-card);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 5px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--primary-yellow);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.nav-title {
    font-family: 'Bungee', cursive;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

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

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

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

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-burger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    border-bottom: 3px solid var(--primary-yellow);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    display: block;
    color: var(--text-white);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .mobile-link {
        padding: 1.2rem 0;
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 90px 2rem 2rem;
    background: var(--vibrant-green);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(156, 39, 176, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 60%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-banner-text {
    font-family: 'Bungee', cursive;
    font-size: 3.5rem;
    color: var(--primary-yellow);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-shadow: 
        5px 5px 0px var(--dark-bg),
        10px 10px 0px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
    animation: wiggle 2s ease-in-out infinite;
    text-align: center;
}

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

.hero-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-logo {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
    max-width: 80vw;
    max-height: 250px;
    object-fit: contain;
}

.floating {
    animation: float 3s ease-in-out infinite;
}

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

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

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: -20px; left: -20px; animation-delay: 0s; }
.sparkle:nth-child(2) { top: -20px; right: -20px; animation-delay: 0.5s; }
.sparkle:nth-child(3) { bottom: -20px; left: -20px; animation-delay: 1s; }
.sparkle:nth-child(4) { bottom: -20px; right: -20px; animation-delay: 1.5s; }

@keyframes sparkle {
    0%, 100% { 
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% { 
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: none;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glitch::before {
    animation: glitch-1 0.5s linear infinite alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
    animation: glitch-2 0.5s linear infinite alternate-reverse;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-2px); }
}

@keyframes glitch-2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(2px); }
}

.hero-subtitle {
    font-family: 'Bungee', cursive;
    font-size: 1.6rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px rgba(255, 215, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(26, 26, 26, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 3px solid var(--primary-yellow);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.stat-value {
    font-family: 'Bungee', cursive;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Fredoka', sans-serif;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
}

.btn::before {
    content: '';
    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;
}

.btn:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.4);
}

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

.btn-primary {
    background: var(--primary-yellow);
    color: var(--dark-bg);
    border: 3px solid var(--dark-bg);
}

.btn-secondary {
    background: var(--primary-purple);
    color: var(--text-white);
    border: 3px solid var(--dark-bg);
}

.btn-accent {
    background: var(--dark-bg);
    color: var(--primary-yellow);
    border: 3px solid var(--primary-yellow);
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 2rem;
    margin-top: 0.5rem;
}

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

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

.section-title {
    font-family: 'Bungee', cursive;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--gradient-3);
}

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

.about-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.about-card h3 {
    font-family: 'Bungee', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
    text-transform: uppercase;
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.token-details {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--primary-purple);
}

.token-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.token-item:last-child {
    border-bottom: none;
}

.token-label {
    color: var(--text-gray);
}

.token-value {
    color: var(--primary-green);
    font-weight: bold;
}

/* How to Buy Section */
.how-to-buy {
    padding: 5rem 0;
    background: var(--gradient-3);
}

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

.step-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-family: 'Bungee', cursive;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
    text-transform: uppercase;
}

.step-card p {
    color: var(--text-gray);
}

.contract-box {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-green);
}

.contract-label {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--dark-bg);
    padding: 1rem;
    border-radius: 10px;
    flex-wrap: wrap;
}

.contract-address code {
    font-family: monospace;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.copy-btn {
    background: var(--gradient-1);
    color: var(--dark-bg);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

/* Community Section */
.community {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.community-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: var(--text-white);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    min-width: 250px;
    text-align: center;
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0e71c8 100%);
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}

.social-btn.twitter:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(29, 161, 242, 0.6);
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
}

.social-btn.telegram:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.6);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) skewX(-30deg);
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--dark-card);
    text-align: center;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.footer-disclaimer {
    color: var(--text-gray);
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
    z-index: 100;
}

.fab:hover {
    transform: scale(1.1) rotate(15deg);
}

/* Flying Money Animation */
.money-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.purple-bills-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.flying-money {
    position: absolute;
    font-size: 2rem;
    animation: fly 10s linear infinite;
    pointer-events: none;
}

.purple-bill {
    position: absolute;
    width: 60px;
    height: 30px;
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    border: 2px solid var(--dark-bg);
    border-radius: 5px;
    animation: floatBill 15s linear infinite;
    pointer-events: none;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .purple-bill {
        width: 40px;
        height: 20px;
    }
    
    .purple-bill::before {
        font-size: 0.7rem;
    }
}

.purple-bill::before {
    content: 'S';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-yellow);
    font-family: 'Bungee', cursive;
    font-size: 1rem;
}

@keyframes floatBill {
    0% {
        transform: translateX(-100px) translateY(calc(100% + 100px)) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes fly {
    0% {
        transform: translateX(-100px) translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* Confetti Canvas */
#confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Animation for rotation */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-burger {
        display: flex;
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 100px 1rem 3rem;
    }
    
    .hero-banner-text {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        text-shadow: 3px 3px 0px var(--dark-bg), 6px 6px 0px rgba(0, 0, 0, 0.2);
    }
    
    .hero-logo {
        width: 250px;
        height: 250px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-card {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
    }
    
    .token-chart {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contract-address {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contract-address code {
        word-break: break-all;
        font-size: 0.9rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 90px 0.5rem 2rem;
    }
    
    .hero-banner-text {
        font-size: 2rem;
        line-height: 0.95;
        margin-bottom: 1rem;
    }
    
    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .stat-card {
        padding: 1rem 1.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .about, .tokenomics, .how-to-buy, .community {
        padding: 3rem 0;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .about-icon {
        font-size: 3rem;
    }
    
    .about-card h3 {
        font-size: 1.2rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-card h3 {
        font-size: 1.1rem;
    }
    
    .social-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 2rem 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .sparkle {
        font-size: 1rem;
    }
}