        :root {
            --jp-primary: #ff6b00;
            --jp-primary-dark: #e65100;
            --jp-secondary: #f0a200;
            --jp-accent: #ffd700;
            --jp-text: #ffffff;
            --jp-text-muted: #b0b0b0;
            --jp-bg-dark: #0f0f1a;
            --jp-bg-card: #f0a200;
            --jp-border: rgba(254, 232, 103, 0.3);
            --jp-glow: rgba(241, 163, 0, 0.5);
            --jp-gradient: linear-gradient(135deg, #ff6b00 0%, #ff8c00 50%, #ffd700 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--jp-bg-dark);
            color: var(--jp-text);
        }

        /* ========== TOP BAR ========== */
        .jp-top-bar {
            background: linear-gradient(90deg, #0f0f1a 0%, #f0a200 50%, #0f0f1a 100%);
            border-bottom: 1px solid var(--jp-border);
            padding: 8px 0;
            position: relative;
            overflow: hidden;
        }

        .jp-top-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(254, 232, 103, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .jp-top-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .jp-top-left {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .jp-top-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--jp-text-muted);
            font-size: 12px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .jp-top-item:hover {
            color: var(--jp-primary);
            transform: translateY(-1px);
        }

        .jp-top-item i {
            color: var(--jp-primary);
            font-size: 14px;
        }

        .jp-top-right {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .jp-lang-switch {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(254, 232, 103, 0.1);
            border: 1px solid var(--jp-border);
            border-radius: 20px;
            padding: 4px 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .jp-lang-switch:hover {
            background: rgba(254, 232, 103, 0.2);
            border-color: var(--jp-primary);
        }

        .jp-lang-switch span {
            font-size: 12px;
            font-weight: 600;
            color: var(--jp-primary);
        }

        .jp-social-icons {
            display: flex;
            gap: 12px;
        }

        .jp-social-icons a {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(254, 232, 103, 0.1);
            border: 1px solid var(--jp-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--jp-text-muted);
            font-size: 12px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .jp-social-icons a:hover {
            background: var(--jp-primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(254, 232, 103, 0.4);
        }

        /* ========== MAIN HEADER ========== */
        .jp-main-header {
            background: linear-gradient(180deg, #f0a200 0%, #0f0f1a 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--jp-primary);
            box-shadow: 0 4px 30px rgba(254, 232, 103, 0.15);
        }

        .jp-main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }

        /* Logo */
        .jp-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .jp-logo-icon {
            width: 50px;
            height: 50px;
            background: var(--jp-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 0 20px rgba(254, 232, 103, 0.5);
            animation: pulse-glow 2s infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(254, 232, 103, 0.5); }
            50% { box-shadow: 0 0 30px rgba(254, 232, 103, 0.8); }
        }

        .jp-logo-text {
            display: flex;
            flex-direction: column;
        }

        .jp-logo-brand {
            font-family: 'Orbitron', sans-serif;
            font-size: 28px;
            font-weight: 900;
            background: var(--jp-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            line-height: 1;
        }

        .jp-logo-tagline {
            font-size: 10px;
            color: var(--jp-text-muted);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-top: 2px;
        }

        /* Search Bar */
        .jp-search-wrapper {
            flex: 1;
            max-width: 600px;
            position: relative;
        }

        .jp-search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--jp-border);
            border-radius: 50px;
            padding: 4px;
            transition: all 0.3s ease;
        }

        .jp-search-box:focus-within {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--jp-primary);
            box-shadow: 0 0 20px rgba(254, 232, 103, 0.2);
        }

        .jp-search-input {
            flex: 1;
            background: none;
            border: none;
            padding: 12px 20px;
            color: var(--jp-text);
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            outline: none;
        }

        .jp-search-input::placeholder {
            color: var(--jp-text-muted);
        }

        .jp-search-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--jp-gradient);
            border: none;
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .jp-search-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(254, 232, 103, 0.6);
        }

        .jp-search-tags {
            display: flex;
            gap: 8px;
            margin-top: 8px;
            padding-left: 16px;
        }

        .jp-search-tag {
            font-size: 11px;
            color: var(--jp-text-muted);
            background: rgba(254, 232, 103, 0.1);
            padding: 2px 10px;
            border-radius: 12px;
            border: 1px solid var(--jp-border);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .jp-search-tag:hover {
            background: var(--jp-primary);
            color: white;
            border-color: var(--jp-primary);
        }

        /* User Actions */
        .jp-user-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .jp-action-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            text-decoration: none;
            color: var(--jp-text-muted);
            transition: all 0.3s ease;
            position: relative;
            padding: 8px;
            border-radius: 12px;
        }

        .jp-action-btn:hover {
            color: var(--jp-primary);
            background: rgba(254, 232, 103, 0.1);
            transform: translateY(-2px);
        }

        .jp-action-btn i {
            font-size: 20px;
        }

        .jp-action-btn span {
            font-size: 11px;
            font-weight: 500;
        }

        .jp-action-badge {
            position: absolute;
            top: 4px;
            right: 4px;
            width: 18px;
            height: 18px;
            background: var(--jp-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: white;
            animation: bounce 1s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .jp-login-btn {
            background: var(--jp-gradient);
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 25px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(254, 232, 103, 0.3);
        }

        .jp-login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(254, 232, 103, 0.5);
        }

        /* ========== NAVIGATION ========== */
        .jp-nav {
            background: linear-gradient(90deg, #0f0f1a 0%, #f0a200 50%, #0f0f1a 100%);
            border-bottom: 1px solid var(--jp-border);
            position: relative;
        }

        .jp-nav::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--jp-gradient);
            opacity: 0.5;
        }

        .jp-nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .jp-nav-list {
            display: flex;
            list-style: none;
            gap: 0;
        }

        .jp-nav-item {
            position: relative;
        }

        .jp-nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 20px;
            color: var(--jp-text-muted);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .jp-nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--jp-gradient);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 3px 3px 0 0;
        }

        .jp-nav-link:hover,
        .jp-nav-link.active {
            color: var(--jp-primary);
            background: rgba(254, 232, 103, 0.05);
        }

        .jp-nav-link:hover::before,
        .jp-nav-link.active::before {
            width: 80%;
        }

        .jp-nav-link i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .jp-nav-item:hover .jp-nav-link i {
            transform: rotate(180deg);
        }

        /* Hot Badge */
        .jp-hot-badge {
            background: linear-gradient(135deg, #ff0000, #ff6b00);
            color: white;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 4px;
            animation: pulse-red 1.5s infinite;
        }

        @keyframes pulse-red {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* New Badge */
        .jp-new-badge {
            background: linear-gradient(135deg, #00c853, #00e676);
            color: white;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 4px;
        }

        /* Mega Menu */
        .jp-mega-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 800px;
            background: linear-gradient(180deg, #f0a200 0%, #0f0f1a 100%);
            border: 1px solid var(--jp-border);
            border-top: 3px solid var(--jp-primary);
            border-radius: 0 0 16px 16px;
            padding: 24px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            z-index: 1001;
        }

        .jp-nav-item:hover .jp-mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .jp-mega-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .jp-mega-col h4 {
            color: var(--jp-primary);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--jp-border);
        }

        .jp-mega-col ul {
            list-style: none;
        }

        .jp-mega-col ul li {
            margin-bottom: 8px;
        }

        .jp-mega-col ul li a {
            color: var(--jp-text-muted);
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .jp-mega-col ul li a::before {
            content: '›';
            color: var(--jp-primary);
            font-weight: 700;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .jp-mega-col ul li a:hover {
            color: var(--jp-primary);
            padding-left: 8px;
        }

        .jp-mega-col ul li a:hover::before {
            opacity: 1;
        }

        /* Promo Banner in Mega Menu */
        .jp-mega-promo {
            grid-column: span 4;
            background: linear-gradient(135deg, rgba(254, 232, 103, 0.1), rgba(255, 215, 0, 0.1));
            border: 1px solid var(--jp-border);
            border-radius: 12px;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 16px;
        }

        .jp-mega-promo-text h5 {
            color: var(--jp-primary);
            font-size: 16px;
            margin-bottom: 4px;
        }

        .jp-mega-promo-text p {
            color: var(--jp-text-muted);
            font-size: 13px;
        }

        .jp-mega-promo-btn {
            background: var(--jp-gradient);
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .jp-mega-promo-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(254, 232, 103, 0.4);
        }

        /* ========== PROMO BAR ========== */
        .jp-promo-bar {
            background: var(--jp-gradient);
            padding: 10px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .jp-promo-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shine 2s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 200%; }
        }

        .jp-promo-text {
            font-size: 14px;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
            position: relative;
            z-index: 1;
        }

        .jp-promo-text span {
            background: rgba(0, 0, 0, 0.2);
            padding: 4px 12px;
            border-radius: 20px;
            margin: 0 8px;
        }

        /* ========== MOBILE MENU ========== */
        .jp-mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }

        .jp-mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--jp-primary);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .jp-search-wrapper {
                max-width: 400px;
            }

            .jp-nav-link {
                padding: 14px 12px;
                font-size: 11px;
            }
        }

        @media (max-width: 768px) {
            .jp-top-container {
                flex-direction: column;
                gap: 8px;
            }

            .jp-main-container {
                flex-wrap: wrap;
                gap: 16px;
            }

            .jp-search-wrapper {
                order: 3;
                max-width: 100%;
                width: 100%;
            }

            .jp-mobile-toggle {
                display: flex;
            }

            .jp-nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 80%;
                height: 100vh;
                background: var(--jp-bg-dark);
                z-index: 2000;
                padding: 24px;
                overflow-y: auto;
            }

            .jp-nav.active {
                display: block;
            }

            .jp-nav-list {
                flex-direction: column;
            }

            .jp-nav-link {
                padding: 16px 0;
                border-bottom: 1px solid var(--jp-border);
            }

            .jp-mega-menu {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                box-shadow: none;
                border: none;
                padding: 16px 0;
            }

            .jp-nav-item.active .jp-mega-menu {
                display: block;
            }

            .jp-mega-grid {
                grid-template-columns: 1fr;
            }

            .jp-mega-promo {
                grid-column: span 1;
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }

            .jp-user-actions {
                gap: 12px;
            }

            .jp-action-btn span {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .jp-logo-brand {
                font-size: 20px;
            }

            .jp-logo-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .jp-login-btn span {
                display: none;
            }

            .jp-login-btn {
                padding: 10px;
            }
        }

        
        /* ========== BOTTOM NAVIGATION ========== */
        .jp-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            background: linear-gradient(180deg, rgba(15, 15, 26, 0.98) 0%, #0f0f1a 100%);
            border-top: 2px solid var(--jp-primary);
            box-shadow: 0 -4px 30px rgba(255, 107, 0, 0.2), 0 -10px 40px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(20px);
        }

        .jp-bottom-nav::before {
            content: '';
            position: absolute;
            top: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--jp-gradient);
            animation: border-glow 2s infinite alternate;
        }

        @keyframes border-glow {
            0% { opacity: 0.5; box-shadow: 0 0 10px rgba(255, 107, 0, 0.3); }
            100% { opacity: 1; box-shadow: 0 0 25px rgba(255, 107, 0, 0.8); }
        }

        .jp-bottom-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .jp-bottom-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            gap: 16px;
        }

        /* LEFT: Quick Actions */
        .jp-bottom-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .jp-quick-action {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 8px 16px;
            border-radius: 12px;
            background: rgba(255, 107, 0, 0.08);
            border: 1px solid var(--jp-border);
            text-decoration: none;
            color: var(--jp-text-muted);
            transition: all 0.3s ease;
            position: relative;
            min-width: 70px;
        }

        .jp-quick-action:hover {
            background: rgba(255, 107, 0, 0.2);
            border-color: var(--jp-primary);
            color: var(--jp-primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.2);
        }

        .jp-quick-action i {
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .jp-quick-action:hover i {
            transform: scale(1.2);
        }

        .jp-quick-action span {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .jp-quick-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            width: 22px;
            height: 22px;
            background: linear-gradient(135deg, #ff0000, #ff6b00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 800;
            color: white;
            border: 2px solid var(--jp-bg-dark);
            animation: pulse-badge 1.5s infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }

        /* CENTER: Main Menu */
        .jp-bottom-center {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .jp-bottom-menu {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--jp-border);
            border-radius: 50px;
            padding: 6px;
        }

        .jp-menu-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 10px 20px;
            border-radius: 40px;
            text-decoration: none;
            color: var(--jp-text-muted);
            transition: all 0.3s ease;
            position: relative;
            min-width: 80px;
        }

        .jp-menu-item:hover {
            color: var(--jp-primary);
            background: rgba(255, 107, 0, 0.1);
        }

        .jp-menu-item.active {
            background: var(--jp-gradient);
            color: white;
            box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
            transform: translateY(-8px);
        }

        .jp-menu-item.active::before {
            content: '';
            position: absolute;
            bottom: -12px;
            width: 6px;
            height: 6px;
            background: var(--jp-primary);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--jp-primary);
        }

        .jp-menu-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .jp-menu-item:hover .jp-menu-icon {
            transform: scale(1.15);
        }

        .jp-menu-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        /* RIGHT: CTA & Profile */
        .jp-bottom-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .jp-deposit-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--jp-gradient);
            border: none;
            border-radius: 50px;
            color: white;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .jp-deposit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: all 0.5s ease;
        }

        .jp-deposit-btn:hover::before {
            left: 100%;
        }

        .jp-deposit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
        }

        .jp-deposit-btn i {
            font-size: 16px;
        }

        .jp-profile-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 215, 0, 0.2));
            border: 2px solid var(--jp-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--jp-primary);
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .jp-profile-btn:hover {
            background: var(--jp-gradient);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
        }

        .jp-profile-status {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 14px;
            height: 14px;
            background: #00e676;
            border-radius: 50%;
            border: 2px solid var(--jp-bg-dark);
        }

        /* ========== FLOATING ACTION BUTTON ========== */
        .jp-fab {
            position: fixed;
            bottom: 100px;
            right: 24px;
            z-index: 9998;
        }

        .jp-fab-main {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--jp-gradient);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fab-float 3s ease-in-out infinite;
        }

        @keyframes fab-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .jp-fab-main:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(255, 107, 0, 0.6);
        }

        .jp-fab-menu {
            position: absolute;
            bottom: 70px;
            right: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .jp-fab:hover .jp-fab-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .jp-fab-item {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--jp-bg-card);
            border: 1px solid var(--jp-border);
            color: var(--jp-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .jp-fab-item:hover {
            background: var(--jp-gradient);
            color: white;
            transform: scale(1.15);
            box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
        }

        /* ========== PROGRESS BAR ========== */
        .jp-progress-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: rgba(255, 107, 0, 0.1);
            z-index: 10000;
        }

        .jp-progress-fill {
            height: 100%;
            width: 65%;
            background: var(--jp-gradient);
            box-shadow: 0 0 10px var(--jp-primary);
            animation: progress-shine 2s infinite;
        }

        @keyframes progress-shine {
            0% { opacity: 0.7; }
            50% { opacity: 1; }
            100% { opacity: 0.7; }
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .jp-bottom-main {
                gap: 12px;
            }

            .jp-menu-item {
                padding: 8px 14px;
                min-width: 60px;
            }

            .jp-menu-label {
                font-size: 10px;
            }
        }

        @media (max-width: 768px) {
            .jp-bottom-left {
                display: none;
            }

            .jp-bottom-center {
                flex: 1;
            }

            .jp-bottom-menu {
                width: 100%;
                justify-content: space-around;
            }

            .jp-menu-item {
                padding: 8px 10px;
                min-width: auto;
            }

            .jp-menu-item.active {
                transform: translateY(-6px);
            }

            .jp-menu-label {
                display: none;
            }

            .jp-menu-item.active .jp-menu-label {
                display: block;
                position: absolute;
                bottom: -20px;
                font-size: 9px;
                background: var(--jp-gradient);
                padding: 2px 8px;
                border-radius: 10px;
                color: white;
            }

            .jp-deposit-btn span {
                display: none;
            }

            .jp-deposit-btn {
                padding: 12px;
                border-radius: 50%;
            }

            .jp-fab {
                bottom: 90px;
                right: 16px;
            }
        }

        @media (max-width: 480px) {
            .jp-bottom-container {
                padding: 0 8px;
            }

            .jp-bottom-main {
                padding: 8px 0;
            }

            .jp-menu-icon {
                font-size: 20px;
            }

            .jp-deposit-btn,
            .jp-profile-btn {
                width: 40px;
                height: 40px;
                padding: 0;
            }

            .jp-fab-main {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }
        }

        /* Demo Content */
        .demo-content {
            padding: 40px 24px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .demo-card {
            background: var(--jp-bg-card);
            border: 1px solid var(--jp-border);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 20px;
        }

            /* ========== CONTAINER ========== */
        .jp-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 24px;
        }

        /* ========== SECTION CARD ========== */
        .jp-section {
            background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 15, 26, 0.9));
            border: 1px solid var(--jp-border);
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 32px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }

        .jp-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--jp-gradient);
            opacity: 0.7;
        }

        .jp-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .jp-section:hover {
            border-color: rgba(255, 107, 0, 0.5);
            box-shadow: 0 20px 60px rgba(255, 107, 0, 0.1), 0 0 30px rgba(255, 107, 0, 0.05);
            transform: translateY(-4px);
        }

        /* ========== BADGE ========== */
        .jp-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--jp-gradient);
            color: white;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
            box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
            position: relative;
            z-index: 1;
            animation: badge-pulse 2s infinite;
        }

        @keyframes badge-pulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3); }
            50% { box-shadow: 0 4px 30px rgba(255, 107, 0, 0.6); }
        }

        .jp-badge i {
            font-size: 14px;
        }

        /* ========== TYPOGRAPHY ========== */
        .jp-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 36px;
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 24px;
            background: var(--jp-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .jp-subtitle {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--jp-accent);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .jp-subtitle::before {
            content: '';
            width: 4px;
            height: 28px;
            background: var(--jp-gradient);
            border-radius: 4px;
        }

        .jp-text {
            color: var(--jp-text-muted);
            font-size: 16px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .jp-text strong {
            color: var(--jp-primary);
            font-weight: 600;
        }

        /* ========== LIST STYLES ========== */
        .jp-feature-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 16px;
            margin-top: 24px;
            position: relative;
            z-index: 1;
        }

        .jp-feature-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: rgba(255, 107, 0, 0.05);
            border: 1px solid var(--jp-border);
            border-radius: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .jp-feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--jp-gradient);
            opacity: 0.1;
            transition: width 0.3s ease;
        }

        .jp-feature-item:hover {
            border-color: var(--jp-primary);
            transform: translateX(8px);
            box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15);
        }

        .jp-feature-item:hover::before {
            width: 100%;
        }

        .jp-feature-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: var(--jp-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
            position: relative;
            z-index: 1;
        }

        .jp-feature-text {
            font-size: 15px;
            font-weight: 600;
            color: var(--jp-text);
            position: relative;
            z-index: 1;
        }

        .jp-feature-desc {
            font-size: 13px;
            color: var(--jp-text-muted);
            margin-top: 4px;
            position: relative;
            z-index: 1;
        }

        /* ========== FAQ STYLES ========== */
        .jp-faq-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .jp-faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--jp-border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .jp-faq-item:hover {
            border-color: rgba(255, 107, 0, 0.5);
        }

        .jp-faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            background: none;
            border: none;
            color: var(--jp-text);
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            text-align: left;
            transition: all 0.3s ease;
        }

        .jp-faq-question:hover {
            color: var(--jp-primary);
            background: rgba(255, 107, 0, 0.05);
        }

        .jp-faq-question i {
            font-size: 14px;
            color: var(--jp-primary);
            transition: transform 0.3s ease;
        }

        .jp-faq-item.active .jp-faq-question i {
            transform: rotate(180deg);
        }

        .jp-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .jp-faq-item.active .jp-faq-answer {
            max-height: 200px;
        }

        .jp-faq-answer p {
            padding: 0 24px 20px;
            color: var(--jp-text-muted);
            font-size: 14px;
            line-height: 1.8;
        }

        /* ========== REVIEW GRID ========== */
        .jp-review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .jp-review-card {
            background: linear-gradient(145deg, rgba(26, 26, 46, 0.6), rgba(15, 15, 26, 0.8));
            border: 1px solid var(--jp-border);
            border-radius: 20px;
            padding: 28px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .jp-review-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            right: 20px;
            font-family: 'Orbitron', sans-serif;
            font-size: 80px;
            color: rgba(255, 107, 0, 0.1);
            line-height: 1;
        }

        .jp-review-card:hover {
            border-color: var(--jp-primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
        }

        .jp-review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .jp-review-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--jp-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
        }

        .jp-review-info {
            flex: 1;
        }

        .jp-review-name {
            font-weight: 700;
            color: var(--jp-text);
            font-size: 15px;
        }

        .jp-review-location {
            font-size: 12px;
            color: var(--jp-text-muted);
        }

        .jp-review-stars {
            color: var(--jp-accent);
            font-size: 14px;
            margin-bottom: 12px;
        }

        .jp-review-text {
            color: var(--jp-text-muted);
            font-size: 14px;
            font-style: italic;
            line-height: 1.8;
        }

        /* ========== CTA SECTION ========== */
        .jp-cta-section {
            background: var(--jp-gradient);
            border-radius: 24px;
            padding: 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 40px;
        }

        .jp-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
            animation: cta-rotate 10s linear infinite;
        }

        @keyframes cta-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .jp-cta-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .jp-cta-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        .jp-cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .jp-cta-btn {
            padding: 16px 40px;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .jp-cta-btn-primary {
            background: white;
            color: var(--jp-primary-dark);
            border: none;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .jp-cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        .jp-cta-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .jp-cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-3px);
        }

        /* ========== ANIMATIONS ========== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .jp-section {
            animation: fadeInUp 0.6s ease forwards;
        }

        .jp-section:nth-child(2) { animation-delay: 0.1s; }
        .jp-section:nth-child(3) { animation-delay: 0.2s; }
        .jp-section:nth-child(4) { animation-delay: 0.3s; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .jp-container {
                padding: 24px 16px;
            }

            .jp-section {
                padding: 28px 20px;
                border-radius: 20px;
            }

            .jp-title {
                font-size: 26px;
            }

            .jp-subtitle {
                font-size: 20px;
            }

            .jp-feature-list {
                grid-template-columns: 1fr;
            }

            .jp-review-grid {
                grid-template-columns: 1fr;
            }

            .jp-cta-section {
                padding: 32px 24px;
            }

            .jp-cta-title {
                font-size: 22px;
            }

            .jp-cta-buttons {
                flex-direction: column;
            }

            .jp-cta-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .jp-title {
                font-size: 22px;
            }

            .jp-badge {
                font-size: 10px;
                padding: 8px 16px;
            }

            .jp-feature-item {
                padding: 16px;
            }

            .jp-feature-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }

      .jp-back-to-top {
            position: fixed;
            bottom: 120px;
            right: 24px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--jp-gradient);
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
            transition: all 0.3s ease;
            z-index: 999;
            animation: bounce-in 0.5s ease;
        }

        @keyframes bounce-in {
            0% { transform: scale(0); }
            60% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .jp-back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 30px rgba(255, 107, 0, 0.6);
        }

        .jp-back-to-top.visible {
            display: flex;
        }

        /* ========== FOOTER MAIN ========== */
        .jp-footer {
            background: linear-gradient(180deg, #0a0a14 0%, #0f0f1a 50%, #1a1a2e 100%);
            border-top: 2px solid var(--jp-primary);
            position: relative;
            overflow: hidden;
        }

        .jp-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--jp-gradient);
            box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
        }

        .jp-footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .jp-footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 24px 0;
            position: relative;
            z-index: 1;
        }

        /* ========== FOOTER TOP ========== */
        .jp-footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid var(--jp-border);
        }

        /* Brand Column */
        .jp-footer-brand {
            max-width: 320px;
        }

        .jp-footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            text-decoration: none;
        }

        .jp-footer-logo-icon {
            width: 44px;
            height: 44px;
            background: var(--jp-gradient);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
        }

        .jp-footer-logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 22px;
            font-weight: 900;
            background: var(--jp-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }

        .jp-footer-desc {
            color: var(--jp-text-muted);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .jp-footer-social {
            display: flex;
            gap: 12px;
        }

        .jp-footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid var(--jp-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--jp-text-muted);
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .jp-footer-social a:hover {
            background: var(--jp-gradient);
            color: white;
            border-color: var(--jp-primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
        }

        /* Link Columns */
        .jp-footer-column h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--jp-accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .jp-footer-column h4::before {
            content: '';
            width: 3px;
            height: 16px;
            background: var(--jp-gradient);
            border-radius: 2px;
        }

        .jp-footer-links {
            list-style: none;
        }

        .jp-footer-links li {
            margin-bottom: 12px;
        }

        .jp-footer-links a {
            color: var(--jp-text-muted);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            padding: 4px 0;
        }

        .jp-footer-links a::before {
            content: '›';
            color: var(--jp-primary);
            font-weight: 700;
            font-size: 16px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .jp-footer-links a:hover {
            color: var(--jp-primary);
            padding-left: 8px;
        }

        .jp-footer-links a:hover::before {
            opacity: 1;
        }

        /* ========== FOOTER MIDDLE ========== */
        .jp-footer-middle {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            padding: 48px 0;
            border-bottom: 1px solid var(--jp-border);
        }

        /* Payment Methods */
        .jp-payment-section h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--jp-accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .jp-payment-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .jp-payment-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--jp-border);
            border-radius: 10px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--jp-text-muted);
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .jp-payment-item:hover {
            background: rgba(255, 107, 0, 0.1);
            border-color: var(--jp-primary);
            color: var(--jp-primary);
            transform: translateY(-2px);
        }

        .jp-payment-item i {
            font-size: 18px;
        }

        /* App Download */
        .jp-apps-section h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--jp-accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .jp-apps-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .jp-app-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--jp-border);
            border-radius: 12px;
            text-decoration: none;
            color: var(--jp-text);
            transition: all 0.3s ease;
        }

        .jp-app-btn:hover {
            background: rgba(255, 107, 0, 0.1);
            border-color: var(--jp-primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15);
        }

        .jp-app-btn i {
            font-size: 28px;
            color: var(--jp-primary);
        }

        .jp-app-btn-text {
            display: flex;
            flex-direction: column;
        }

        .jp-app-btn-text span:first-child {
            font-size: 10px;
            color: var(--jp-text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .jp-app-btn-text span:last-child {
            font-size: 16px;
            font-weight: 700;
        }

        /* ========== FOOTER BOTTOM ========== */
        .jp-footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            flex-wrap: wrap;
            gap: 16px;
        }

        .jp-footer-copyright {
            color: var(--jp-text-muted);
            font-size: 13px;
        }

        .jp-footer-copyright strong {
            color: var(--jp-primary);
        }

        .jp-footer-legal {
            display: flex;
            gap: 24px;
        }

        .jp-footer-legal a {
            color: var(--jp-text-muted);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s ease;
        }

        .jp-footer-legal a:hover {
            color: var(--jp-primary);
        }

        /* ========== LICENSE BADGE ========== */
        .jp-license-section {
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid var(--jp-border);
            padding: 24px 0;
            text-align: center;
        }

        .jp-license-text {
            color: var(--jp-text-muted);
            font-size: 12px;
            line-height: 1.8;
        }

        .jp-license-text a {
            color: var(--jp-primary);
            text-decoration: none;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .jp-footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .jp-footer-brand {
                grid-column: span 2;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .jp-footer-container {
                padding: 40px 20px 0;
            }

            .jp-footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .jp-footer-brand {
                grid-column: span 1;
            }

            .jp-footer-middle {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .jp-footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .jp-apps-buttons {
                justify-content: center;
            }

            .jp-back-to-top {
                bottom: 100px;
                right: 16px;
                width: 44px;
                height: 44px;
            }
        }

        @media (max-width: 480px) {
            .jp-payment-grid {
                justify-content: center;
            }

            .jp-app-btn {
                width: 100%;
                justify-content: center;
            }
        }