        @import url('https://fonts.googleapis.com/css2?family=Bangers&family=Roboto:wght@400;700&display=swap');

        :root {
          --primary: #ffe200;
          --secondary: #ff0000;
          --accent: #00c2ff;
          --background: #0f0e17;
          --text: #fffffe;
        }

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

        body { 
          font-family: 'Roboto', sans-serif;
          background: var(--background);
          color: var(--text);
          font-size: 1.4rem;
          line-height: 1.6;
          overflow-x: hidden;
        }

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

        header {
          background: rgba(15, 14, 23, 0.8);
          padding: 20px 0;
          position: fixed;
          width: 100%;
          z-index: 1000;
          transition: all 0.3s ease;
        }

        header.scrolled {
          background: rgba(15, 14, 23, 0.95);
          box-shadow: 0 2px 15px rgba(0,0,0,0.3);
        }

        .logo {
          font-family: 'Bangers', cursive;
          font-size: 3rem;
          color: var(--primary);
          text-shadow: 1px 1px var(--secondary);
        }

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

        .nav-links {
          display: flex;
          align-items: center;
        }

        nav a {
          color: var(--text);
          text-decoration: none;
          margin-left: 30px;
          font-weight: bold;
          font-size: 1.4rem;
          transition: color 0.3s ease;
        }

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

        .menu-toggle {
          display: none;
          cursor: pointer;
          font-size: 1.5rem;
        }

        .hero {
          background-image: url('/images/bg.png');
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;
          height: 120vh;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          position: relative;
          overflow: hidden;
        }

        .hero::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(15, 14, 23, 0.7);
        }

        .hero-content {
          position: relative;
          z-index: 1;
        }

        h1 {
          font-size: 8rem;
          color: var(--primary);
          text-shadow: 1px 1px var(--secondary);
        }

        @keyframes glow {
          from {
            text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--primary), 0 0 20px var(--primary), 0 0 35px var(--primary), 0 0 40px var(--primary), 0 0 50px var(--primary);
          }
          to {
            text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--secondary), 0 0 40px var(--secondary), 0 0 70px var(--secondary), 0 0 80px var(--secondary), 0 0 100px var(--secondary);
          }
        }

        .btn {
          margin: 5px;
          display: inline-block;
          padding: 12px 40px;
          background: #6366f1;
          color: var(--text);
          border-radius: 50px;
          text-decoration: none;
          font-size: 1.8rem;
          font-weight: bold;
          transition: all 0.3s ease;
          border: 2px solid #6366f1;
          text-transform: uppercase;
          letter-spacing: 1px;
        }

        .btn:hover {
          background: transparent;
          color: var(--accent);
          box-shadow: 0 0 20px var(--accent);
        }

        .features {
          padding: 100px 0;
          background: linear-gradient(to bottom, var(--background), #1a1a2e);
        }

        .feature {
          text-align: center;
          margin-bottom: 50px;
          padding: 30px;
          background: rgba(255,255,255,0.05);
          border-radius: 15px;
          transition: all 0.3s ease;
        }

        .feature:hover {
          transform: translateY(-10px);
          box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .feature i {
          font-size: 4rem;
          color: var(--accent);
          margin-bottom: 20px;
        }

        h2 {
          font-size: 3.5rem;
          margin-bottom: 50px;
          color: var(--primary);
          text-align: center;
        }

        h3 {
          font-size: 2rem;
          margin-bottom: 20px;
          color: var(--accent);
        }

        .tokenomics {
          background: linear-gradient(to bottom, #1a1a2e, var(--background));
          padding: 100px 0;
        }

        .about {
          text-align: center;
        }

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

        .tokenomics-item {
          background: rgba(255,255,255,0.05);
          padding: 30px;
          border-radius: 15px;
          text-align: center;
          transition: all 0.3s ease;
        }

        .tokenomics-item:hover {
          transform: scale(1.05);
          box-shadow: 0 0 30px rgba(76, 201, 240, 0.3);
        }

        .roadmap {
          padding: 100px 0;
          background: linear-gradient(to bottom, var(--background), #1a1a2e);
        }

        .roadmap-item {
          background: rgba(255,255,255,0.05);
          padding: 30px;
          margin-bottom: 30px;
          border-radius: 15px;
          position: relative;
          transition: all 0.3s ease;
        }

        .roadmap-item::before {
          content: '';
          position: absolute;
          width: 20px;
          height: 20px;
          background: var(--accent);
          border-radius: 50%;
          left: -40px;
          top: 50%;
          transform: translateY(-50%);
        }

        .roadmap-item:hover {
          transform: translateX(10px);
          box-shadow: 0 0 30px rgba(76, 201, 240, 0.3);
        }

        footer {
          background: var(--background);
          color: var(--text);
          font-size: 1rem;
          text-align: center;
          padding: 40px 0;
        }

        .social-links a {
          color: var(--accent);
          font-size: 1.4rem;
          margin: 0 15px;
          transition: color 0.3s ease;
        }

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

        @keyframes flap {
          0%, 100% { transform: translateY(0) rotate(0deg); }
          50% { transform: translateY(-20px) rotate(5deg); }
        }

        .flappy-bird {
          position: absolute;
          width: 60px;
          height: 60px;
          animation: flap 0.5s infinite;
          filter: drop-shadow(0 0 10px var(--primary));
        }

        #bird1 { top: 10%; left: 10%; }
        #bird2 { top: 30%; right: 20%; }
        #bird3 { bottom: 15%; left: 30%; }

        @media (max-width: 768px) {
          .logo { font-size: 2rem; }
          nav a { font-size: 1rem; margin-left: 15px; }
          h1 { font-size: 4rem; }
          .btn { padding: 10px 30px; font-size: 1rem; }
          .feature i { font-size: 3rem; }
          h2 { font-size: 2.5rem; }
          h3 { font-size: 1.5rem; }
          
          .menu-toggle {
            display: block;
          }
          
          .nav-links {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(15, 14, 23, 0.95);
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
          }
          
          .nav-links.active {
            display: flex;
          }
          
          .nav-links a {
            margin: 10px 0;
          }
        }
        /* New styles for brand logos section */
        .brand-logos {
            padding: 50px 0;
            text-align: center;
        }
        .brand-logos h2 {
            margin-bottom: 30px;
        }
        .logo-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        .logo-item {
            width: 150px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .logo-item:hover {
            transform: scale(1.05);
        }
        .logo-item img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }
