 :root {
            --primary: #00FFA3;
            --secondary: #9D4EDD;
            --silver: #E0E6ED;
            --bg-dark: #050507;
            --glass-surface: rgba(15, 15, 20, 0.75);
            --glass-border: rgba(255, 255, 255, 0.08);
            --font-display: 'Rajdhani', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

       
        /* --- Cinematic Background --- */
        .cinematic-bg {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 15% 50%, #1a0b2e 0%, #050507 50%, #000000 100%);
            z-index: -3;
        }

        .orb {
            position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.3; z-index: -2;
            animation: floatOrb 20s infinite ease-in-out;
        }
        .orb-1 { width: 500px; height: 500px; background: var(--secondary); top: -150px; left: -100px; animation-duration: 25s; }
        .orb-2 { width: 400px; height: 400px; background: #0044ff; bottom: 10%; right: -100px; animation-duration: 18s; animation-delay: -5s; }
        .orb-3 { width: 300px; height: 300px; background: var(--primary); top: 40%; left: 30%; opacity: 0.1; animation-duration: 30s; }

        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(40px, -40px) scale(1.1); }
        }

        .film-grain {
            position: fixed; inset: 0; z-index: -1; pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
        }

        #bg-canvas { position: fixed; inset: 0; z-index: -1; }

        /* --- Components --- */
        .glass-panel {
            background: var(--glass-surface);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
            transition: border-color 0.3s;
        }

        /* --- Modern Header (Glassmorphism) --- */
        #navbar {
            position: fixed; top: 0; left: 0; width: 100%; padding: 20px 5%;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000;
            background: transparent; /* Start fully transparent */
            transition: all 0.4s ease;
        }
        #navbar.scrolled {
            background: rgba(10, 10, 15, 0.3); /* Low opacity */
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            padding: 15px 5%;
        }

        .logo {
            font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
            color: white; text-transform: uppercase; letter-spacing: 1.5px;
            display: flex; align-items: center; gap: 10px;
            text-shadow: 0 0 20px rgba(0, 255, 163, 0.2);
        }
        .logo i { 
            color: var(--primary); 
            filter: drop-shadow(0 0 8px var(--primary));
        }

        /* --- Cancel Button (New) --- */
        .cancel-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #aaa;
            padding: 8px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.85rem;
            transition: 0.3s;
            font-family: var(--font-display);
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
            margin-right: 10px; /* Space between buttons */
        }
        .cancel-btn:hover {
            background: rgba(255, 100, 100, 0.1);
            border-color: rgba(255, 100, 100, 0.4);
            color: #ff8a8a;
        }

        /* --- Interact Button --- */
        .interact-button {
            background: rgba(255, 255, 255, 0.05); 
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white; 
            padding: 10px 28px; 
            border-radius: 50px;
            cursor: pointer; 
            font-size: 0.85rem; 
            font-weight: 600; 
            transition: all 0.3s ease;
            font-family: var(--font-display); 
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
            outline: none;
            min-height: 44px; 
            display: flex; align-items: center; justify-content: center;
        }
        .interact-button:hover { 
            background: rgba(255, 255, 255, 0.15); 
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 20px rgba(0, 255, 163, 0.2);
            transform: translateY(-1px);
        }

        /* --- Layout --- */
        .container {
            max-width: 1300px; margin: 0 auto; padding: 140px 5% 60px;
            display: grid; grid-template-columns: 1fr 0.9fr; gap: 50px; align-items: center;
        }

        .hero-text h1 {
            font-family: var(--font-display); font-size: 4rem; line-height: 0.95;
            margin-bottom: 25px; background: linear-gradient(180deg, #fff 0%, #aab 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            text-transform: uppercase;
        }
        .hero-text p { color: #888; max-width: 500px; line-height: 1.6; margin-bottom: 30px; font-size: 1.05rem; }
        
        .stats-row { 
            display: flex; gap: 30px; margin-top: 40px; border-top: 1px solid var(--glass-border); padding-top: 30px; 
        }
        .stat-item h4 { font-family: var(--font-display); font-size: 2rem; color: white; font-weight: 700; }
        .stat-item span { font-size: 0.85rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }

        /* --- Live Feed Card --- */
        .feed-card {
            display: flex; flex-direction: column; height: 550px;
            overflow: hidden; position: relative;
        }
        .feed-header {
            padding: 20px 25px; border-bottom: 1px solid var(--glass-border);
            display: flex; justify-content: space-between; align-items: center;
        }
        .feed-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: white; }
        .live-badge {
            background: rgba(0, 255, 163, 0.1); color: var(--primary);
            padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 600;
            display: flex; align-items: center; gap: 6px; border: 1px solid rgba(0, 255, 163, 0.2);
        }
        .pulse { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; animation: pulse 1.5s infinite; }
        @keyframes pulse { 0% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,255,163,0.7); } 70% { opacity: 0; box-shadow: 0 0 0 6px rgba(0,255,163,0); } 100% { opacity: 0; } }

        .feed-body { flex: 1; overflow: hidden; position: relative; }
        
        .feed-item {
            display: flex; justify-content: space-between; align-items: center;
            padding: 12px 25px; border-bottom: 1px solid rgba(255,255,255,0.02);
            animation: slideIn 0.5s ease-out forwards;
            opacity: 0; transform: translateX(20px);
        }
        @keyframes slideIn { to { opacity: 1; transform: translateX(0); } }

        .wallet-info { display: flex; flex-direction: column; }
        
        .wallet-addr {
            font-family: monospace; color: #a0a0b0; font-size: 0.9rem;
            display: flex; align-items: center; gap: 8px;
        }
        .wallet-addr i { color: var(--secondary); font-size: 0.8rem; }

        .wallet-name {
            font-size: 0.75rem; color: #666; margin-top: 3px;
            display: flex; align-items: center; gap: 5px;
        }
        .wallet-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }

        .tx-amount {
            font-family: var(--font-display); font-weight: 700; color: white;
            font-size: 1rem; display: flex; align-items: center; gap: 4px;
            white-space: nowrap;
        }
        .tx-amount span { color: #666; font-size: 0.8rem; font-weight: 400; }

        /* --- Widget --- */
        .claim-widget {
            padding: 25px; background: rgba(0,0,0,0.3); border-top: 1px solid var(--glass-border);
            text-align: center;
        }
        .timer-strip {
            display: flex; justify-content: center; gap: 15px; margin-bottom: 15px;
            font-family: var(--font-display); color: #aaa; font-size: 0.9rem;
        }
        .timer-val { color: var(--primary); font-weight: 700; }
        
        .claim-btn {
            width: 100%; 
            padding: 14px; 
            border-radius: 12px; 
            border: none;
            background: linear-gradient(90deg, var(--secondary), #7000ff); 
            color: white; 
            font-family: var(--font-display); 
            font-weight: 700;
            font-size: 1.1rem; 
            cursor: pointer; 
            text-transform: uppercase; 
            letter-spacing: 1px;
            transition: 0.3s; 
            position: relative; 
            overflow: hidden;
            white-space: nowrap;
        }
        
        .claim-btn:hover { 
            box-shadow: 0 0 25px rgba(157, 78, 221, 0.4); 
            transform: translateY(-2px); 
            background: linear-gradient(90deg, #a050ff, #8a2be2); 
            color: white;
            border: none;
        }
        
        .claim-btn::after {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }
        .claim-btn:hover::after { left: 100%; }


        /* =========================================
           RESPONSIVE MEDIA QUERIES
           ========================================= */

        @media (max-width: 900px) {
            .container {
                grid-template-columns: 1fr; gap: 30px; padding-top: 100px; padding-bottom: 40px;
                align-items: start;
            }
            .hero-text {
                text-align: center; display: flex; flex-direction: column; align-items: center;
            }
            .hero-text h1 { font-size: 2.8rem; text-align: center; line-height: 1.1; }
            .hero-text p { font-size: 1rem; }
            .stats-row { justify-content: center; width: 100%; flex-wrap: wrap; gap: 20px; }
            .feed-card { height: 450px; width: 100%; max-width: 500px; margin: 0 auto; }
            
            /* Hide Cancel Button on Tablet/Mobile to save space */
            .cancel-btn { display: none; }
        }

        @media (max-width: 600px) {
            #navbar { padding: 12px 20px; }
            .logo { font-size: 1.1rem; }
            .logo span { display: none; }
            .hero-text h1 { font-size: 2.2rem; margin-bottom: 15px; }
            .hero-text p { font-size: 0.9rem; margin-bottom: 20px; }
            .stats-row { margin-top: 20px; padding-top: 20px; gap: 15px; }
            .stat-item h4 { font-size: 1.5rem; }
            .feed-card { height: 400px; max-width: 100%; }
            .feed-header { padding: 15px; }
            .feed-item { padding: 10px 15px; }
            .wallet-addr { font-size: 0.8rem; }
            .tx-amount { font-size: 0.9rem; }
            .claim-widget { padding: 15px; }
            .timer-strip { font-size: 0.8rem; gap: 10px; flex-direction: row; justify-content: space-between; }
            .claim-btn { font-size: 1rem; padding: 12px; }
            .interact-button { padding: 8px 16px; font-size: 0.8rem; }
        }