:root {
    --primary: #ff2fa0;
    --secondary: #baff39;
    --bg: #14213d;
    --text: #fff;
    --nav-link: #fff;
    --nav-link-hover: #baff39;
    --btn-bg: #ff2fa0;
    --btn-text: #fff;
    --container-width: 1200px;
    --padding: 24px;
}

html {
    scroll-behavior: smooth;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', Arial, sans-serif;
    min-height: 100vh;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--padding);
}

.navbar {
    background: transparent;
    padding: 24px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--nav-link);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--nav-link-hover);
}

.btn-buy {
    background: var(--btn-bg);
    color: var(--btn-text);
    padding: 12px 28px;
    border-radius: 32px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.btn-buy:hover {
    background: #e6007a;
}

.hero {
    padding: 64px 0 48px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating elements for extra visual appeal */
.hero .floating-element-1 {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.hero .floating-element-2 {
    content: '';
    position: absolute;
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    z-index: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(186, 255, 57, 0.5);
    }

    to {
        text-shadow: 0 0 30px rgba(186, 255, 57, 0.8), 0 0 40px rgba(186, 255, 57, 0.3);
    }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1 1 350px;
    min-width: 300px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(186, 255, 57, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 32px;
}

.highlight {
    color: var(--secondary);
    font-weight: bold;
}

.btn-moon {
    background: var(--btn-bg);
    color: var(--btn-text);
    padding: 20px 48px;
    border-radius: 48px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 47, 160, 0.3);
}

.btn-moon:hover {
    background: #e6007a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 47, 160, 0.4);
}

.hero-image {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
}

.meme-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 24px;
    background: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(186, 255, 57, 0.3));
}

.meme-img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* === ABOUT SECTION === */
.about {
    position: relative;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 40%, #f093fb 80%, #f5576c 100%);
    overflow: hidden;
    padding: 80px 0 80px 0;
    min-height: 480px;
}

.about-bg-confetti {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(120deg, #ff2fa0 0 8px, transparent 8px 32px),
        repeating-linear-gradient(60deg, #baff39 0 8px, transparent 8px 32px),
        repeating-linear-gradient(90deg, #ffb300 0 8px, transparent 8px 32px),
        repeating-linear-gradient(30deg, #00e6c3 0 8px, transparent 8px 32px),
        repeating-linear-gradient(150deg, #ff5e5e 0 8px, transparent 8px 32px);
    background-size: 120px 120px;
    opacity: 0.10;
    animation: confettiMove 12s linear infinite;
}

@keyframes confettiMove {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 80px 80px, 80px 80px, 80px 80px, 80px 80px, 80px 80px;
    }
}

.about-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.about-content {
    flex: 1 1 150px;
    min-width: 200px;
}

.about-title {
    font-size: 4rem;
    font-weight: 900;
    color: #baff39;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -2px;
    animation: aboutPop 1.2s cubic-bezier(.68, -0.55, .27, 1.55) both;
}

@keyframes aboutPop {
    0% {
        transform: scale(0.7) rotate(-8deg);
        opacity: 0;
    }

    80% {
        transform: scale(1.1) rotate(2deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.about-desc {
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0;
    animation: aboutFadeIn 1.6s 0.3s cubic-bezier(.68, -0.55, .27, 1.55) both;
}

@keyframes aboutFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-visuals {
    flex: 1 1 320px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    position: relative;
}

.about-earth {
    width: 120px;
    margin-bottom: 16px;
    animation: earthFloat 3.5s ease-in-out infinite;
}

@keyframes earthFloat {

    0%,
    100% {
        transform: translateY(0) scale(1) rotate(-8deg);
    }

    50% {
        transform: translateY(-18px) scale(1.08) rotate(8deg);
    }
}

.about-banana {
    width: 160px;
    animation: bananaWobble 2.8s ease-in-out infinite;
}

@keyframes bananaWobble {

    0%,
    100% {
        transform: rotate(-8deg) scale(1);
    }

    20% {
        transform: rotate(8deg) scale(1.05);
    }

    50% {
        transform: rotate(-4deg) scale(1.1);
    }

    80% {
        transform: rotate(8deg) scale(1.05);
    }
}

/* === TOKENOMICS SECTION === */
.tokenomics {
    position: relative;
    background: linear-gradient(180deg, #f5576c 0%, #f093fb 40%, #764ba2 80%, #667eea 100%);
    overflow: hidden;
    padding: 80px 0 80px 0;
    min-height: 480px;
}

.tokenomics-bg-confetti {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(120deg, #ff2fa0 0 8px, transparent 8px 32px),
        repeating-linear-gradient(60deg, #baff39 0 8px, transparent 8px 32px),
        repeating-linear-gradient(90deg, #ffb300 0 8px, transparent 8px 32px),
        repeating-linear-gradient(30deg, #00e6c3 0 8px, transparent 8px 32px),
        repeating-linear-gradient(150deg, #ff5e5e 0 8px, transparent 8px 32px);
    background-size: 120px 120px;
    opacity: 0.13;
    animation: confettiMove 14s linear infinite;
}

.tokenomics-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.tokenomics-title {
    font-size: 4rem;
    font-weight: 900;
    color: #baff39;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 0 4px 0 #222, 0 8px 24px rgba(0, 0, 0, 0.18);
    animation: aboutPop 1.2s cubic-bezier(.68, -0.55, .27, 1.55) both;
}

.tokenomics-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.tokenomics-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 0 #222, 0 12px 32px rgba(0, 0, 0, 0.10);
    padding: 36px 32px 32px 32px;
    min-width: 260px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: cardPop 1.2s cubic-bezier(.68, -0.55, .27, 1.55) both;
    transition: transform 0.25s cubic-bezier(.68, -0.55, .27, 1.55), box-shadow 0.25s cubic-bezier(.68, -0.55, .27, 1.55);
}

.tokenomics-card:hover {
    transform: scale(1.06) translateY(-10px) rotate(-2deg);
    box-shadow: 0 16px 0 #222, 0 24px 48px rgba(0, 0, 0, 0.18);
    z-index: 3;
}

.tokenomics-card:nth-child(1) {
    animation-delay: 0.2s;
}

.tokenomics-card:nth-child(2) {
    animation-delay: 0.4s;
}

.tokenomics-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes cardPop {
    0% {
        transform: scale(0.7) translateY(60px);
        opacity: 0;
    }

    80% {
        transform: scale(1.08) translateY(-8px);
        opacity: 1;
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

.card-purple {
    background: #a259e6;
    border: 4px solid #4b2e83;
}

.card-yellow {
    background: #ffd600;
    border: 4px solid #ffb300;
}

.card-pink {
    background: #ff5eaf;
    border: 4px solid #c2185b;
}

.tokenomics-icon {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tokenomics-label {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
    text-shadow: 0 2px 0 #222, 0 4px 12px rgba(0, 0, 0, 0.10);
}

.tokenomics-value {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 0 #222, 0 4px 12px rgba(0, 0, 0, 0.10);
}

/* === ROADMAP SECTION === */
.roadmap {
    position: relative;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 40%, #f093fb 80%, #f5576c 100%);
    overflow: hidden;
    padding: 80px 0 80px 0;
    min-height: 480px;
}

.roadmap-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.roadmap-title {
    font-size: 4rem;
    font-weight: 900;
    color: #baff39;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 0 4px 0 #222, 0 8px 24px rgba(0, 0, 0, 0.18);
    animation: aboutPop 1.2s cubic-bezier(.68, -0.55, .27, 1.55) both;
}

.roadmap-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.roadmap-card {
    border-radius: 24px;
    box-shadow: 0 8px 0 #222, 0 12px 32px rgba(0, 0, 0, 0.10);
    padding: 36px 32px 32px 32px;
    min-width: 220px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: cardPop 1.2s cubic-bezier(.68, -0.55, .27, 1.55) both;
    transition: transform 0.25s cubic-bezier(.68, -0.55, .27, 1.55), box-shadow 0.25s cubic-bezier(.68, -0.55, .27, 1.55);
}

.roadmap-card:hover {
    transform: scale(1.06) translateY(-10px) rotate(-2deg);
    box-shadow: 0 16px 0 #222, 0 24px 48px rgba(0, 0, 0, 0.18);
    z-index: 3;
}

.roadmap-card:nth-child(1) {
    animation-delay: 0.2s;
}

.roadmap-card:nth-child(2) {
    animation-delay: 0.4s;
}

.roadmap-card:nth-child(3) {
    animation-delay: 0.6s;
}

.roadmap-card:nth-child(4) {
    animation-delay: 0.8s;
}

.card-rd-purple {
    background: #6c4cff;
    border: 4px solid #2e1a83;
}

.card-rd-blue {
    background: #2196f3;
    border: 4px solid #0d47a1;
}

.card-rd-pink {
    background: #ff5eaf;
    border: 4px solid #c2185b;
}

.card-rd-navy {
    background: #14213d;
    border: 4px solid #1a237e;
}

.roadmap-quarter {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
    text-shadow: 0 2px 0 #222, 0 4px 12px rgba(0, 0, 0, 0.10);
}

.roadmap-icon {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-label {
    font-size: 1.4rem;
    font-weight: 900;
    color: #baff39;
    margin-top: 18px;
    text-align: center;
    text-shadow: 0 2px 0 #222, 0 4px 12px rgba(0, 0, 0, 0.10);
}

/* === COMMUNITY SECTION === */
.community {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    overflow: hidden;
    padding: 80px 0 80px 0;
    min-height: 400px;
}

.community-bg-confetti {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(120deg, #ff2fa0 0 8px, transparent 8px 32px),
        repeating-linear-gradient(60deg, #baff39 0 8px, transparent 8px 32px),
        repeating-linear-gradient(90deg, #ffb300 0 8px, transparent 8px 32px),
        repeating-linear-gradient(30deg, #00e6c3 0 8px, transparent 8px 32px),
        repeating-linear-gradient(150deg, #ff5e5e 0 8px, transparent 8px 32px);
    background-size: 120px 120px;
    opacity: 0.18;
    animation: confettiMove 10s linear infinite;
}

.community-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.community-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #baff39;
    margin-bottom: 8px;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 0 4px 0 #222, 0 8px 24px rgba(0, 0, 0, 0.10);
    text-align: center;
}

.community-subtitle {
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.community-icons {
    display: flex;
    gap: 48px;
    margin: 32px 0 24px 0;
    justify-content: center;
    align-items: center;
}

.community-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}

.community-icon i {
    font-size: 96px;
    display: block;
    transition: transform 0.2s, color 0.2s;
    border: none !important;
    box-shadow: none !important;
}

.community-icon[aria-label="Twitter"] i {
    color: #1da1f2;
}

.community-icon[aria-label="Telegram"] i {
    color: #2ca5e0;
}

.community-icon[aria-label="Discord"] i {
    color: #8e6be8;
}

.community-icon:hover i {
    transform: scale(1.12) rotate(-6deg);
    filter: brightness(1.2);
}

.community-btn {
    background: rgba(255, 255, 255, 0.7);
    color: #222;
    padding: 18px 48px;
    border-radius: 32px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(255, 94, 175, 0.10);
    transition: background 0.2s, transform 0.2s;
    margin: 32px auto 0 auto;
    display: block;
    border: none;
}

.community-btn:hover {
    background: #fff;
    color: #222;
    transform: translateY(-2px) scale(1.04);
}

.community-merged {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* === FOOTER === */
.footer {
    background: #6c4cff;
    color: #fff;
    padding: 28px 0 24px 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.footer a {
    color: #fff;
    text-decoration: underline;
    margin: 0 6px;
    font-weight: 600;
}

.footer-banana {
    font-size: 1.5em;
    margin-left: 8px;
}

/* Responsive */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    z-index: 10001;
    padding: 0;
}

.nav-hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links.active~.nav-hamburger span:nth-child(1),
    .nav-hamburger.active span:nth-child(1) {
        transform: translateY(12px) rotate(52deg);
    }

    .nav-links.active~.nav-hamburger span:nth-child(2),
    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-links.active~.nav-hamburger span:nth-child(3),
    .nav-hamburger.active span:nth-child(3) {
        transform: translateY(-12px) rotate(-52deg);
    }
}

@media (min-width: 901px) {
    .nav-hamburger {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 60px;
        left: 12px;
        right: 12px;
        background: #14213d;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 24px 0 12px 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
        border-radius: 12px;
        border: 2px solid #baff39;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
        z-index: 9999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        padding: 16px 0;
        font-size: 1.3rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #2222;
    }

    .btn-buy {
        display: none;
    }

    .nav-container {
        position: relative;
    }

    .hero-container {
        flex-direction: column-reverse;
        gap: 32px;
        text-align: center;
    }

    .about-container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .about-visuals {
        align-items: center;
    }

    .tokenomics-cards {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .tokenomics-card {
        min-width: 220px;
        max-width: 100%;
    }

    .roadmap-cards {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .roadmap-card {
        min-width: 180px;
        max-width: 100%;
    }

    .community-title {
        font-size: 2.2rem;
    }

    .community-subtitle {
        font-size: 1.2rem;
    }

    .community-icons {
        gap: 24px;
    }

    .community-btn {
        font-size: 1.1rem;
        padding: 12px 24px;
    }

    .footer-container {
        flex-direction: column;
        gap: 8px;
    }
}

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

    .navbar {
        padding: 16px 0;
    }

    .hero {
        padding: 32px 0 24px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn-moon {
        font-size: 1.1rem;
        padding: 14px 24px;
    }

    .meme-img {
        max-width: 280px;
    }

    .about-desc {
        font-size: 1.1rem;
    }

    .tokenomics-title {
        font-size: 2rem;
    }

    .community-icon i {
        font-size: 48px;
    }

    .footer-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .footer span,
    .footer a {
        display: block;
        margin: 0 auto;
    }

    .footer-banana {
        margin-left: 0;
        margin-top: 4px;
    }

    .about-earth,
    .about-banana {
        width: 260px !important;
        /* max-width: 26px; */
        border-radius: 20px;
    }

    .about-title {
        font-size: 2rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .roadmap-title {
        font-size: 2rem;
    }
}