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

:root {
    --primary-gold: #F5B841;
    --secondary-gold: #D4A040;
    --brown: #8B5A3C;
    --cream: #F4E4C1;
    --green-bg: #7AB65C;
    --green-dark: #5A8F44;
    --solana-purple: #9945FF;
    --solana-cyan: #14F195;
    --dark-brown: #2D1810;
    --text-dark: #2D1810;
    --text-muted: #5A4A3C;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background: linear-gradient(135deg, #98ec71 0%, #eceb7e 25%, #7fed4d 50%, #ece671 75%, #0A0F2C 100%);
    color: #2D1810;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.bg-decorations {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(245, 184, 65, 0.2), rgba(139, 90, 60, 0.1));
    animation: float 20s infinite ease-in-out;
}

.bubble:nth-child(1) { width: 300px; height: 300px; top: 10%; left: 5%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 200px; height: 200px; top: 60%; right: 10%; animation-delay: 5s; }
.bubble:nth-child(3) { width: 150px; height: 150px; bottom: 20%; left: 30%; animation-delay: 10s; }
.bubble:nth-child(4) { width: 250px; height: 250px; top: 40%; right: 30%; animation-delay: 15s; }

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}

header {
    padding: 18px 0;
    position: sticky;
    top: 0;
    background: rgba(244, 228, 193, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(139, 90, 60, 0.2);
    transform: translateY(-100%);
    animation: slideDownHeader 0.8s forwards ease-in-out;
    border-bottom: 3px solid var(--primary-gold);
    border-radius: 30px;
    margin: 10px auto 30px;
    width: calc(100% - 20px);
    max-width: 1240px;
}

@keyframes slideDownHeader {
    to { transform: translateY(0); }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1002;
}

.mainlogo {
    width: auto;
    height: 50px;
    border-radius: 40%;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--brown));
    left: 0;
    bottom: -2px;
    transition: width 0.3s ease;
}

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

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon img {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-gold);
    border-color: var(--brown);
    transform: scale(1.2);
    box-shadow: 0 4px 20px rgba(245, 184, 65, 0.5);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    transition: all 0.3s ease;
}

.burger-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--brown));
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.98), rgba(45, 24, 16, 0.98));
    backdrop-filter: blur(10px);
    z-index: 1001;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
}

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

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 30px 30px;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    margin-bottom: 40px;
}

.mobile-nav-links li {
    margin: 25px 0;
    opacity: 0;
    transform: translateX(50px);
}

.mobile-menu.active .mobile-nav-links li {
    animation: slideInMobile 0.5s forwards;
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInMobile {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(90deg, var(--primary-gold), var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.mobile-link:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(245, 184, 65, 0.6));
}

.mobile-social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.mobile-social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 184, 65, 0.2), rgba(139, 90, 60, 0.2));
    border: 2px solid rgba(245, 184, 65, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-social-icon img {
    width: 30px;
    height: 30px;
}

.mobile-social-icon:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--brown));
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(245, 184, 65, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: -100px;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: white;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #94f122, #5a3e1c, #f5d742);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 42px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #f3ef10, #93730a);
    color: white;
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(153, 69, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00FFA3;
    transform: translateY(-4px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.mascot-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatMascot 6s ease-in-out infinite;
}

@keyframes floatMascot {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-30px) rotateZ(2deg); }
}

.mascot-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(153, 69, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.mascot-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 80%;
    background: url('four.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Rotating ring */
.rotating-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 3px solid transparent;
    border-top-color: rgba(153, 69, 255, 0.5);
    border-right-color: rgba(0, 255, 163, 0.5);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating coins */
.floating-coin {
    position: absolute;
    font-size: 40px;
    animation: floatCoin 4s ease-in-out infinite;
}

.coin1 { top: 10%; left: -10%; animation-delay: 0s; }
.coin2 { top: 70%; right: -10%; animation-delay: 1.3s; }
.coin3 { bottom: 20%; left: 10%; animation-delay: 2.6s; }

@keyframes floatCoin {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-40px) rotateY(180deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    animation: bounce 2s infinite;
}

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

.scroll-indicator::after {
    content: '↓';
    font-size: 24px;
}

section {
    padding: 70px 20px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--brown) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientText 3s ease infinite;
}

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

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--brown));
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    margin-top: 15px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-gold), var(--brown));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle, rgba(245,184,65,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-gold), var(--brown));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientText 3s ease infinite;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-top: 20px;
}

.about-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: linear-gradient(145deg, var(--cream), #FFFFFF);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(139, 90, 60, 0.2);
    transition: transform 0.4s, box-shadow 0.4s;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
}

.card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 45px rgba(245, 184, 65, 0.4);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.card:hover .card-icon {
    transform: rotate(20deg) scale(1.2);
}

.card h3 {
    color: var(--dark-brown);
    margin-bottom: 10px;
    font-size: 22px;
}

.card p {
    color: var(--text-muted);
    font-size: 16px;
}

.tokenomics-section {
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
}

.tokenomics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.tokenomics-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .tokenomics-content {
        flex-direction: row;
    }
}

.tokenomics-chart {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.pie-chart {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(139, 90, 60, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    background: conic-gradient(
        from 0deg,
        var(--primary-gold) 0% 80%,
        var(--solana-cyan) 80% 95%,
        var(--brown) 95% 100%
    );
    animation: rotateChart 20s linear infinite;
    transition: transform 0.3s ease;
}

.pie-chart:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(245, 184, 65, 0.5);
}

@keyframes rotateChart {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.chart-center {
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--brown) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.chart-center .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.chart-center .logo-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-gold), var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 5px;
}

.tokenomics-breakdown {
    flex: 1;
    background: linear-gradient(145deg, var(--cream), #FFFFFF);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(139, 90, 60, 0.3);
    border: 2px solid var(--primary-gold);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    max-width: 100%;
}

.tokenomics-breakdown:hover {
    box-shadow: 0 20px 60px rgba(245, 184, 65, 0.4);
    border-color: var(--brown);
}

.breakdown-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-brown);
    text-align: center;
    background: linear-gradient(90deg, var(--primary-gold), var(--brown));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.distribution-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.distribution-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(245, 184, 65, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 184, 65, 0.2);
}

.distribution-item:hover {
    background: rgba(245, 184, 65, 0.2);
    transform: translateX(5px);
}

.distribution-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.distribution-color {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    box-shadow: 0 0 15px currentColor;
    flex-shrink: 0;
}

.distribution-details {
    flex: 1;
    min-width: 0;
}

.distribution-category {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-brown);
}

.distribution-bar {
    height: 10px;
    width: 100%;
    background-color: rgba(139, 90, 60, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.distribution-progress {
    height: 100%;
    border-radius: 5px;
    transition: width 1.5s ease-out;
    box-shadow: 0 0 10px currentColor;
}

.distribution-percentage {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-gold), var(--brown));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 15px;
    flex-shrink: 0;
}

.burn-mechanic {
    background: linear-gradient(135deg, rgba(245, 184, 65, 0.2), rgba(244, 228, 193, 0.2));
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
}

.burn-mechanic p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.tokenomics-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

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

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 184, 65, 0.3) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 90, 60, 0.3) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    animation: float 20s infinite ease-in-out reverse;
}

/* Roadmap Section */
.roadmap {
    padding: 120px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 56px;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 22px;
    color: #eceb7e;
    font-weight: 600;
}

/* Timeline Container */
.timeline {
    position: relative;
    max-width: 100%;
    overflow: visible;
}

/* Monkey Tail Line - Curved SVG Path */
.monkey-tail {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 300px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.tail-path {
    fill: none;
    stroke: url(#tailGradient);
    stroke-width: 6;
    stroke-linecap: round;
    filter: drop-shadow(0 0 10px rgba(236, 235, 126, 0.5));
}

/* Timeline Items */
.timeline-item {
    position: relative;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

/* Alternate Left-Right */
.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

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

/* Monkey Face Dot */
.monkey-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    width: 45px;
    height: 45px;
    background: #B67A37;
    border: 4px solid #eceb7e;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(236, 235, 126, 0.6);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.monkey-dot.completed {
    background: #1be93e;
    border-color: #98ec71;
    box-shadow: 0 0 20px rgba(152, 236, 113, 0.6);
}

.monkey-dot.active {
    background: #eceb7e;
    border-color: #d89608;
    animation: monkeyPulse 2s ease-in-out infinite;
}

@keyframes monkeyPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(236, 235, 126, 0.6);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(236, 235, 126, 1);
        transform: translateX(-50%) scale(1.15);
    }
}

/* Floating Bananas around boxes */
.banana-float {
    position: absolute;
    font-size: 32px;
    animation: floatBanana 4s ease-in-out infinite;
    z-index: 5;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
}

.banana-1 {
    top: -20px;
    left: -40px;
    animation-delay: 0s;
}

.banana-2 {
    top: 50%;
    right: -40px;
    animation-delay: 1s;
}

.banana-3 {
    bottom: -20px;
    left: 50%;
    animation-delay: 2s;
}

@keyframes floatBanana {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -15px) rotate(15deg);
    }
    50% {
        transform: translate(-10px, -5px) rotate(-10deg);
    }
    75% {
        transform: translate(5px, 10px) rotate(8deg);
    }
}

/* Phase Card */
.phase-card {
    background: rgba(10, 15, 44, 0.75);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(236, 235, 126, 0.4);
    border-radius: 20px;
    padding: 35px;
    width: 380px;
    max-width: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
}

.timeline-item:nth-child(odd) .phase-card {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .phase-card {
    margin-left: auto;
    margin-right: 0;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(152, 236, 113, 0.15), rgba(236, 235, 126, 0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
}

.phase-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #eceb7e;
    box-shadow: 0 25px 60px rgba(236, 235, 126, 0.5);
}

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

/* Phase Badge */
.phase-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #d89608;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.phase-badge.completed {
    background: #1be93e;
}

.phase-badge.active {
    background: #eceb7e;
    color: #0A0F2C;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(236, 235, 126, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(236, 235, 126, 0);
    }
}

/* Phase Title */
.phase-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

/* Phase Items */
.phase-items {
    list-style: none;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.phase-items li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.phase-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1be93e;
    font-weight: bold;
    font-size: 16px;
}

/* Phase Status */
.phase-status {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(27, 233, 62, 0.2);
    border: 1px solid #1be93e;
    border-radius: 20px;
    color: #98ec71;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.phase-status.pending {
    background: rgba(236, 235, 126, 0.2);
    border-color: #eceb7e;
    color: #eceb7e;
}

.phase-status.progress {
    background: rgba(216, 150, 8, 0.2);
    border-color: #d89608;
    color: #d89608;
}

.how-it-works-section {
    padding: 70px 20px;
    background: linear-gradient(180deg, #A8D084 0%, #7AB65C 100%);
    position: relative;
    overflow: hidden;
}

.how-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.glow-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background-color: rgba(245, 184, 65, 0.4);
    top: -10%;
    right: -10%;
    animation: float 15s infinite ease-in-out;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(139, 90, 60, 0.4);
    bottom: -5%;
    left: -5%;
    animation: float 20s infinite ease-in-out reverse;
}

.steps-container {
    margin: 5rem 0;
    position: relative;
}

.step-card {
    display: flex;
    position: relative;
    margin-bottom: 2rem;
}

.step-connector {
    width: 4rem;
    position: relative;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.connector-line {
    position: absolute;
    top: 4rem;
    width: 3px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, var(--primary-gold), var(--brown));
    box-shadow: 0 0 10px rgba(245, 184, 65, 0.5);
}

.step-card:last-child .connector-line {
    display: none;
}

.step-content {
    display: flex;
    flex: 1;
    gap: 1.5rem;
    background: linear-gradient(145deg, var(--cream), #FFFFFF);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(139, 90, 60, 0.2);
    max-width: 100%;
}

.step-card:hover .step-content {
    transform: translateX(10px);
    border-color: var(--brown);
    box-shadow: 0 15px 40px rgba(245, 184, 65, 0.3);
}

.step-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(245, 184, 65, 0.6);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-card:hover .step-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 35px rgba(245, 184, 65, 0.8);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.step-number {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--solana-cyan), var(--solana-purple));
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    box-shadow: 0 5px 15px rgba(20, 241, 149, 0.5);
}

.step-info {
    flex: 1;
    min-width: 0;
}

.step-title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--dark-brown);
    background: linear-gradient(90deg, var(--primary-gold), var(--brown));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--brown) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-gold) 25%,
        var(--brown) 50%,
        var(--primary-gold) 75%,
        transparent 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(245, 184, 65, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 90, 60, 0.08) 0%, transparent 50%);
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(245, 184, 65, 0.2);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 5px 15px rgba(245, 184, 65, 0.5));
}

.footer-logo .logo-image {
    width: 50px;
    height: 50px;
    animation: floatDino 3s infinite ease-in-out;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-gold), var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.footer-tagline {
    color: var(--cream);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    opacity: 0.9;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(245, 184, 65, 0.2), rgba(139, 90, 60, 0.2));
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--brown));
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: -1;
}

.footer-social-link:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.footer-social-link:hover {
    border-color: var(--cream);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(245, 184, 65, 0.5);
}

.footer-social-link svg {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
}

.dex-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-gold), var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
    opacity: 0.85;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-gold);
    padding-left: 20px;
    transform: translateX(5px);
    opacity: 1;
}

.footer-link:hover::before {
    left: 0;
    opacity: 1;
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(245, 184, 65, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    color: var(--cream);
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.8;
}

.footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--brown));
    transition: width 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--primary-gold);
    opacity: 1;
}

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

.footer-separator {
    color: rgba(245, 184, 65, 0.4);
    font-size: 1rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .nav-links,
    .social-icons {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 80px 20px 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .mascot-container {
        width: 400px;
        height: 400px;
    }
    
    .rotating-ring {
        width: 400px;
        height: 400px;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tokenomics-content {
        flex-direction: column;
    }
    
    .pie-chart {
        width: 300px;
        height: 300px;
    }
    
    .chart-center {
        width: 150px;
        height: 150px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        width: calc(100% - 20px);
        margin: 10px 10px 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero {
        padding: 60px 15px 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .mascot-container {
        width: 320px;
        height: 320px;
    }
    
    .rotating-ring {
        width: 320px;
        height: 320px;
    }
    
    .about-text h2 {
        font-size: 30px;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
    }
    
    .pie-chart {
        width: 280px;
        height: 280px;
    }
    
    .chart-center {
        width: 140px;
        height: 140px;
    }
    
    .monkey-tail {
        left: 20px;
        transform: none;
        width: 60px;
    }

    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 70px;
    }

    .monkey-dot {
        left: 20px;
        transform: none;
    }

    .phase-card {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .banana-float {
        font-size: 24px;
    }

    .banana-1 {
        left: -30px;
        top: -15px;
    }

    .banana-2 {
        right: -30px;
    }

    .banana-3 {
        left: 40%;
        bottom: -15px;
    }
    
    .step-connector {
        width: 3rem;
    }
    
    .step-content {
        flex-direction: column;
        gap: 1rem;
        padding: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }

    .orb1, .orb2, .orb3 {
        display: none;
    }
}

@media (max-width: 639px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 15px 10px;
    }
    
    .mainlogo {
        height: 40px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .mascot-container {
        width: 280px;
        height: 280px;
    }
    
    .rotating-ring {
        width: 280px;
        height: 280px;
    }
    
    .pie-chart {
        width: 240px;
        height: 240px;
    }
    
    .chart-center {
        width: 120px;
        height: 120px;
    }
    
    .mobile-link {
        font-size: 24px;
    }
    
    .distribution-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .distribution-percentage {
        margin-left: 0;
    }
    
    .phase-card {
        padding: 25px;
    }

    .phase-title {
        font-size: 20px;
    }

    .phase-items li {
        font-size: 14px;
    }
    
    .step-card {
        flex-direction: column;
    }
    
    .step-connector {
        width: 100%;
        height: 2rem;
    }
    
    .connector-line {
        width: 3px;
        height: 100%;
        left: 35px;
        top: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .breakdown-title {
        font-size: 1.5rem;
    }
    
    .distribution-category {
        font-size: 0.95rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
}

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

/* Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #9945FF 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00FFA3 0%, transparent 70%);
    top: 20%;
    right: -250px;
    animation-delay: 5s;
}

.orb3 {
    display: none;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #23F3CE 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation-delay: 10s;
}

.orb4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #F4C542 0%, transparent 70%);
    top: 50%;
    left: 10%;
    animation-delay: 7s;
}