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

        html {
            scroll-behavior: smooth;
        }

        :root {
            --primary-blue: #2563EB;
            --secondary-green: #10B981;
            --highlight-purple: #A855F7;
            --light-bg: #F9FAFB;
            --soft-bg: #F3F4F6;
            --charcoal: #111827;
            --cool-gray: #6B7280;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--charcoal);
            background-color: var(--light-bg);
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

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

        /* Header */
        .header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--highlight-purple) 100%);
            color: var(--white);
            text-align: center;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .floating-emoji {
            position: absolute;
            font-size: 2rem;
            animation: float 3s ease-in-out infinite;
        }

        .emoji-1 { top: 20%; left: 10%; animation-delay: 0s; }
        .emoji-2 { top: 30%; right: 15%; animation-delay: 1s; }
        .emoji-3 { bottom: 20%; left: 20%; animation-delay: 2s; }
        .emoji-4 { top: 60%; right: 10%; animation-delay: 0.5s; }
        .emoji-5 { bottom: 30%; right: 25%; animation-delay: 1.5s; }
        .emoji-6 { top: 40%; left: 5%; animation-delay: 2.5s; }

        .header h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .header p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin: 10px;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }

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

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary-blue);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin: 2rem 0;
        }

        .hero-stats {
            margin-top: 3rem;
            display: flex;
            justify-content: center;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }

        .stat-value {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .stat-desc {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Sections */
        .section {
            padding: 80px 0;
        }

        .section:nth-child(even) {
            background-color: var(--white);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--cool-gray);
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        /* Partner Restaurants */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .partner-card {
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .partner-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary-green);
            animation: bounce 0.6s ease;
        }

        .partner-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            display: block;
        }

        .partner-card h3 {
            color: var(--primary-blue);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .partner-card p {
            color: var(--cool-gray);
            font-size: 0.9rem;
        }

        /* Upcoming Collaborations */
        .upcoming-section {
            margin-top: 4rem;
            text-align: center;
        }

        .upcoming-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 1rem;
        }

        .bouncing-arrow {
            display: inline-block;
            animation: bounceToText 2s ease-in-out infinite;
            margin-right: 0.5rem;
        }

        @keyframes bounceToText {
            0%, 100% {
                transform: translateX(0) scale(1);
            }
            25% {
                transform: translateX(10px) scale(1.1);
            }
            50% {
                transform: translateX(15px) scale(1.2);
            }
            75% {
                transform: translateX(5px) scale(1.05);
            }
        }

        .upcoming-subtitle {
            font-size: 1.1rem;
            color: var(--cool-gray);
            margin-bottom: 2rem;
        }

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

        .upcoming-card {
            background: var(--white);
            border: 2px dashed var(--cool-gray);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            opacity: 0.7;
        }

        [data-theme="dark"] .upcoming-card {
            background: #1E293B;
            border-color: #475569;
        }

        .upcoming-card:hover {
            transform: translateY(-2px);
            border-color: var(--primary-blue);
            opacity: 0.9;
        }

        .upcoming-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .upcoming-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--cool-gray);
            margin-bottom: 0.5rem;
        }

        .upcoming-card p {
            font-size: 0.9rem;
            color: var(--cool-gray);
            opacity: 0.8;
        }

        /* Tokenomics with Pie Chart */
        .tokenomics {
            background: linear-gradient(135deg, var(--soft-bg) 0%, var(--white) 100%);
        }

        .tokenomics-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .chart-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .pie-chart {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: conic-gradient(
                #F59E0B 0deg 90deg,
                #000000 90deg 144deg,
                #FF69B4 144deg 198deg,
                #FF6B35 198deg 252deg,
                #F59E0B 252deg 306deg,
                #87CEEB 306deg 324deg,
                #32CD32 324deg 335.52deg,
                #FFD700 335.52deg 343.68deg,
                #4169E1 343.68deg 360deg
            );
            margin-bottom: 30px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .pie-chart::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: var(--white);
            border-radius: 50%;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
        }

        .tokenomics-legend {
            list-style: none;
            max-width: 400px;
            margin: 0 auto;
        }

        .tokenomics-legend li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 1rem;
            font-weight: 500;
            justify-content: flex-start;
        }

        .legend-color {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            margin-right: 15px;
        }

        /* Meme Food Menu */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .menu-item {
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .menu-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-green), var(--highlight-purple));
            opacity: 0.1;
            transition: all 0.3s ease;
        }

        .menu-item:hover::before {
            left: 0;
        }

        .menu-item:hover {
            transform: translateY(-5px);
        }

        .menu-item:hover .food-icon {
            animation: wiggle 0.5s ease;
        }

        .food-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            display: block;
        }

        .menu-item h3 {
            color: var(--primary-blue);
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .menu-item p {
            color: var(--cool-gray);
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-green);
            background: linear-gradient(135deg, var(--secondary-green), var(--highlight-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .token-info {
            font-size: 0.9rem;
            color: var(--cool-gray);
            background: var(--soft-bg);
            padding: 8px 12px;
            border-radius: 20px;
            display: inline-block;
            margin-top: 0.5rem;
        }

        [data-theme="dark"] .token-info {
            background: #334155;
        }

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

        .roadmap-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(var(--primary-blue), var(--secondary-green));
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin: 40px 0;
            display: flex;
            align-items: center;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: auto;
            margin-left: 60px;
            text-align: left;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: auto;
            margin-right: 60px;
            text-align: right;
        }

        .timeline-content {
            background: var(--white);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            max-width: 300px;
            position: relative;
        }

        .timeline-icon {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: linear-gradient(var(--primary-blue), var(--secondary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .phase-title {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        /* Footer */
        .footer {
            background: var(--charcoal);
            color: var(--white);
            text-align: center;
            padding: 50px 0;
        }

        .social-icons {
            margin: 20px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .social-icons a {
            color: var(--secondary-green);
            transition: all 0.3s ease;
            text-decoration: none;
            padding: 8px;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-icons a svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .social-icons a:hover {
            color: var(--white);
            background: var(--secondary-green);
            transform: translateY(-2px);
        }

        /* Navigation */
        .nav-bar {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        [data-theme="dark"] .nav-bar {
            background: rgba(30, 41, 59, 0.95);
            border-bottom: 1px solid #334155;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
            position: relative;
        }

        .nav-logo {
            flex: 0 0 auto;
            margin-right: 2rem;
        }

        .nav-logo img {
            height: 60px;
            width: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary-blue);
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
        }

        /* .nav-logo .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-blue);
            text-decoration: none;
        } */

        .nav-center {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: center;
        }

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

        .nav-right {
            display: flex;
            align-items: center;
            flex: 0 0 auto;
            margin-left: 2rem;
        }

        .nav-links a {
            color: var(--cool-gray);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

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

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

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

        .nav-cta {
            background: linear-gradient(135deg, var(--primary-blue), var(--highlight-purple));
            color: var(--white);
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            margin-left: 1rem;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary-blue);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        [data-theme="dark"] .hamburger span {
            background: var(--secondary-green);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

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

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            width: 280px;
            max-width: calc(100vw - 40px);
            background: var(--white);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            border-radius: 0 0 15px 15px;
            padding: 20px;
            z-index: 1000;
        }

        [data-theme="dark"] .mobile-menu {
            background: #1E293B;
            border: 1px solid #334155;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            color: var(--cool-gray);
            text-decoration: none;
            font-weight: 500;
            padding: 12px 0;
            border-bottom: 1px solid #E5E7EB;
            transition: all 0.3s ease;
        }

        [data-theme="dark"] .mobile-menu a {
            border-bottom: 1px solid #334155;
        }

        .mobile-menu a:hover {
            color: var(--primary-blue);
            padding-left: 10px;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-menu .nav-cta {
            display: inline-block;
            margin-top: 15px;
            padding: 12px 24px;
        }

        .mobile-menu .theme-toggle {
            margin-top: 15px;
            background: transparent !important;
            border: 2px solid var(--primary-blue) !important;
            border-radius: 25px !important;
            padding: 8px 16px !important;
            font-size: 1rem !important;
            color: var(--primary-blue);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        [data-theme="dark"] .mobile-menu .theme-toggle {
            border-color: var(--secondary-green) !important;
            color: var(--secondary-green);
        }

        .mobile-menu .theme-toggle:hover {
            background: rgba(37, 99, 235, 0.1) !important;
            transform: scale(1.05);
        }

        [data-theme="dark"] .mobile-menu .theme-toggle:hover {
            background: rgba(16, 185, 129, 0.1) !important;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-center,
            .nav-right {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .nav-content {
                justify-content: space-between;
                height: 60px;
            }

            .nav-logo {
                margin-right: 0;
            }

            .nav-logo img {
                height: 50px;
                width: 50px;
                border-radius: 50%;
                object-fit: cover;
            }

            body {
                padding-top: 60px;
            }
        }

        /* Adjust body padding for fixed nav */
        body {
            padding-top: 70px;
        }

        /* Dark Mode Styles */
        [data-theme="dark"] {
            --light-bg: #0F172A;
            --soft-bg: #1E293B;
            --white: #1E293B;
            --charcoal: #F1F5F9;
            --cool-gray: #CBD5E1;
        }

        [data-theme="dark"] .header {
            background: linear-gradient(135deg, #1E293B 0%, #7C3AED 100%);
        }

        [data-theme="dark"] .header h1 {
            text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
            color: #FFFFFF;
        }

        [data-theme="dark"] .header h2 {
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            color: #F8FAFC;
        }

        [data-theme="dark"] .header p {
            text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
            color: #E2E8F0;
            opacity: 1;
        }

        [data-theme="dark"] .partner-card,
        [data-theme="dark"] .menu-item,
        [data-theme="dark"] .timeline-content {
            background: #1E293B;
            border: 1px solid #334155;
        }

        [data-theme="dark"] .pie-chart::after {
            background: #1E293B;
        }

        /* Dark Mode Toggle */
        .theme-toggle {
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s ease;
            margin-left: 1rem;
        }

        .theme-toggle:hover {
            background: rgba(37, 99, 235, 0.1);
            transform: scale(1.1);
        }

        [data-theme="dark"] .theme-toggle:hover {
            background: rgba(16, 185, 129, 0.1);
        }

        /* About Section */
        .about-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .about-main {
            background: linear-gradient(135deg, var(--soft-bg), var(--white));
            border-radius: 30px;
            padding: 4rem;
            text-align: center;
        }

        [data-theme="dark"] .about-main {
            background: linear-gradient(135deg, #1E293B, #334155);
        }

        .about-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--charcoal);
            margin-bottom: 3rem;
            font-weight: 500;
        }

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

        .feature-item {
            text-align: center;
        }

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

        .feature-item h3 {
            color: var(--primary-blue);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .feature-item p {
            color: var(--cool-gray);
            font-size: 0.9rem;
        }

        /* Additional Responsive Styles for Content */
        @media (max-width: 768px) {
            .header h1 { font-size: 2rem; }
            .header p { font-size: 1.1rem; }
            .section-title { font-size: 2rem; }
            .tokenomics-content { 
                grid-template-columns: 1fr; 
                gap: 30px;
                text-align: center;
            }
            .pie-chart { 
                width: 250px; 
                height: 250px; 
            }
            .chart-container {
                order: -1;
            }
            .floating-emoji { font-size: 1.5rem; }
            
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 60px;
                margin-right: 20px;
                text-align: left;
            }

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

            .about-main {
                padding: 2rem;
            }

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