:root {
    --primary: #FFD700; /* Golden yellow */
    --primary-light: #FFDF00; /* Lighter yellow */
    --secondary: #000000; /* Black */
    --dark: #121212; /* Very dark gray (almost black) */
    --darker: #000000; /* Pure black */
    --light: #F5F5F5; /* Light gray */
    --lighter: #FFFFFF; /* White */
    --accent: #FFD700; /* Using yellow as accent */
    --text: #000000; /* Black text */
    --text-light: #FFFFFF; /* White text */
    --bg: #FFFFFF; /* White background */
    --card-bg: #F5F5F5; /* Light gray cards */
    --header-bg: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    --footer-bg: #000000; /* Black footer */
}

[data-theme="dark"] {
    --primary: #FFD700; /* Golden yellow */
    --primary-light: #FFDF00; /* Lighter yellow */
    --secondary: #FFFFFF; /* White */
    --dark: #000000; /* Black */
    --darker: #121212; /* Very dark gray */
    --light: #F5F5F5; /* Light gray */
    --lighter: #FFFFFF; /* White */
    --accent: #FFD700; /* Yellow accent */
    --text: #FFFFFF; /* White text */
    --text-light: #FFFFFF; /* White text */
    --bg: #000000; /* Black background */
    --card-bg: #121212; /* Dark gray cards */
    --header-bg: rgba(0, 0, 0, 0.9); /* Semi-transparent black */
    --footer-bg: #000000; /* Black footer */
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            transition: background-color 0.3s, color 0.3s;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background-color: var(--header-bg);
            position: fixed;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo img {
            height: 30px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
        }

        .logo-text span {
            color: var(--secondary);
        }

        nav.desktop-nav {
            display: flex;
            align-items: center;
        }

        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav.desktop-nav ul li a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
        }

        nav.desktop-nav ul li a:hover {
            color: var(--primary);
        }

        nav.desktop-nav ul li a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        nav.desktop-nav ul li a:hover:after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .theme-toggle {
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .theme-toggle:hover {
            transform: scale(1.3);
        }

        .btn {
            background-color: var(--primary);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(108, 77, 246, 0.3);
            background-color: var(--primary-light);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }

        /* Mobile Menu */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--bg);
            z-index: 1000;
            transition: right 0.3s ease-in-out;
            padding: 2rem;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .mobile-nav-logo img {
            height: 30px;
        }

        .mobile-nav-logo-text {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .close-menu {
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            list-style: none;
        }

        .mobile-nav-links li a {
            color: var(--text);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: color 0.3s;
        }

        .mobile-nav-links li a:hover {
            color: var(--primary);
        }

        .mobile-nav-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: auto;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        /* Hero Section */
        .hero {
            padding: 8rem 5% 5rem;
            display: flex;
            align-items: center;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 600px;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
        }

        .hero-image {
            position: absolute;
            right: 5%;
            top: 60%;
            transform: translateY(-50%);
            width: 40%;
            max-width: 600px;
            z-index: 1;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        /* Features Section */
        .features {
            padding: 5rem 5%;
            background-color: var(--card-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background-color: var(--bg);
            border-radius: 10px;
            padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .feature-card p {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.8;
        }

        /* About Section */
        .about {
            padding: 5rem 5%;
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-content {
            flex: 1;
        }

        .about-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        /* Tokenomics Section */
        .tokenomics {
            padding: 5rem 5%;
            background-color: var(--card-bg);
        }

        .tokenomics-grid {
            position: relative;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            
        }

        .token-card {
            background-color: var(--bg);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s;
        }

        .token-card:hover {
            transform: translateY(-10px);
        }

        .token-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .token-card p {
            font-size: 1rem;
            opacity: 0.8;
        }

        /* Roadmap Section */
        .roadmap {
            padding: 5rem 5%;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 3rem auto 0;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 10px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -12px;
            background-color: var(--bg);
            border: 4px solid var(--primary);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }

        .left {
            left: 0;
        }

        .right {
            left: 50%;
        }

        .timeline-content {
            padding: 20px 30px;
            background-color: var(--card-bg);
            position: relative;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .timeline-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .timeline-content p {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Team Section */
        .team {
            padding: 5rem 5%;
            background-color: var(--card-bg);
            text-align: center;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .team-member {
            background-color: var(--bg);
            border-radius: 10px;
            padding: 2rem;
            transition: transform 0.3s;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .member-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            overflow: hidden;
            border: 3px solid var(--primary);
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-member h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .team-member p {
            font-size: 1rem;
            opacity: 0.8;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-links a {
            color: var(--text);
            font-size: 1.2rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--primary);
        }

        /* CTA Section */
        .cta {
            padding: 5rem 5%;
            text-align: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
        }

        .cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .cta p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        .cta .btn {
            background-color: var(--secondary);
            color: var(--accent);
            font-size: 1.1rem;
            padding: 0.8rem 2rem;
        }

        .cta .btn:hover {
            background-color: white;
        }

        /* Footer */
        footer {
            background-color: var(--footer-bg);
            color: var(--text-light);
            padding: 5rem 5% 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            align-content: center;
            padding: 2rem;

        }

        .footer-column h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links li a {
            color: var(--text-light);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-links li a:hover {
            opacity: 1;
            color:  var(--lighter);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icons a {
            color: var(--text-light);
            font-size: 1.2rem;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 10rem;
            }

            .hero-content {
                max-width: 100%;
                margin-bottom: 3rem;
            }

            .hero-btns {
                justify-content: center;
            }

            .hero-image {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                width: 80%;
                margin: 0 auto;
            }

            .about {
                flex-direction: column;
            }

            .about-image {
                margin-bottom: 2rem;
            }

            .timeline::after {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item::after {
                left: 18px;
            }

            .left::after, .right::after {
                left: 18px;
            }

            .right {
                left: 0%;
            }
        }

        @media (max-width: 768px) {
            nav.desktop-nav {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .features-grid, .tokenomics-grid, .team-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero-btns {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }