        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #F7F7F7;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(#FF6B6B, #FF9A3C);
            border-radius: 6px;
            border: 2px solid #F7F7F7;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(#FF9A3C, #FF6B6B);
        }
        
        /* Glow Effects */
        .glow {
            text-shadow: 0 0 10px rgba(255, 209, 102, 0.7);
        }
        
        .glow-box {
            box-shadow: 0 0 20px rgba(255, 209, 102, 0.3);
        }
        
        .glow-box:hover {
            box-shadow: 0 0 30px rgba(255, 209, 102, 0.5);
        }
        
        /* Custom Buttons */
        .btn-primary {
            background: linear-gradient(45deg, #FF6B6B, #FF9A3C);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
            color: white;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
        }
        
        .btn-secondary {
            background: linear-gradient(45deg, #FFD166, #FFA500);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 209, 102, 0.4);
            color: #1A202C;
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 209, 102, 0.6);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('./img/background.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
        }
        
        /* Coin Section */
        .coin-section {
            background: linear-gradient(rgba(247, 247, 247, 0.95), rgba(247, 247, 247, 0.95)), url('https://i.imgur.com/5XJgZ9F.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        /* Game Section */
        .game-section {
            background: linear-gradient(rgba(247, 247, 247, 0.95), rgba(247, 247, 247, 0.95)), url('https://i.imgur.com/8zJvZyT.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        /* Tokenomics Chart */
        .tokenomic-chart {
            width: 100%;
            height: 400px;
            background: conic-gradient(
                #FF6B6B 0% 15%,
                #FF9A3C 15% 45%,
                #FFD166 45% 65%,
                #06D6A0 65% 85%,
                #118AB2 85% 100%
            );
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(255, 209, 102, 0.3);
            transition: all 0.5s ease;
        }
        
        .tokenomic-chart:hover {
            transform: rotate(10deg) scale(1.05);
            box-shadow: 0 0 40px rgba(255, 209, 102, 0.5);
        }
        
        /* Roadmap */
        .roadmap-item {
            position: relative;
            padding-left: 3rem;
        }
        
        .roadmap-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 24px;
            height: 24px;
            background: #FF6B6B;
            border-radius: 50%;
            border: 3px solid #FFD166;
            z-index: 1;
        }
        
        .roadmap-item:after {
            content: '';
            position: absolute;
            left: 11px;
            top: 24px;
            width: 3px;
            height: calc(100% - 24px);
            background: linear-gradient(to bottom, #FF6B6B, #FFD166);
        }
        
        .roadmap-item:last-child:after {
            display: none;
        }
        
        /* Game Container */
        .game-container {
            display: none;
        }
        
        .active-section {
            display: block;
            animation: fadeIn 0.5s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Navbar */
        .nav-link {
            position: relative;
            color: #2D3748;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #FFD166;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link.active {
            color: #FF6B6B;
        }
        
        .nav-link.active:after {
            width: 100%;
        }
        
        /* Floating Animation */
        .float {
            animation: float 6s ease-in-out infinite;
        }
        
        .float-reverse {
            animation: float-reverse 6s ease-in-out infinite;
        }
        
        /* Particle Background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            background: rgba(255, 209, 102, 0.5);
            border-radius: 50%;
            pointer-events: none;
        }
        .text-primary{
            --tw-text-opacity: 1;
            color: rgb(255 107 107 / var(--tw-text-opacity, 1));
        }
        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(45deg, #FF6B6B, #FFD166);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Custom Card */
        .card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 209, 102, 0.2);
            transition: all 0.3s ease;
            color: #2D3748;
        }
        
        .card:hover {
            transform: translateY(-10px);
            border: 1px solid rgba(255, 209, 102, 0.4);
            box-shadow: 0 10px 30px rgba(255, 209, 102, 0.2);
        }
        
        /* Metamask Button */
        .metamask-btn {
            background: linear-gradient(45deg, #F6851B, #E2761B);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(246, 133, 27, 0.4);
            color: white;
        }
        
        .metamask-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(246, 133, 27, 0.6);
        }
        
        /* Oracle Button */
        .oracle-btn {
            background: linear-gradient(45deg, #00AEF0, #0085FF);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 133, 255, 0.4);
            color: white;
        }
        
        .oracle-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 133, 255, 0.6);
        }
        
        /* Container max-width */
        .container {
            max-width: 1200px !important;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-section, .coin-section, .game-section {
                background-attachment: scroll;
            }
        }