
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif!important;
            background: url('https://jeetsvsdegens.com/newbg2.jpg')!important;
            background-position: fixed;
            min-height: 100vh;
            color: #ffffff;
            padding-top: 100px;
            transition: padding-top 0.3s ease;
        }

        body.header-shrunk {
            padding-top: 80px;
        }

        /* Enhanced Header Styles */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999999;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(102, 126, 234, 0.2);
            padding: 20px 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .main-header.shrunk {
            padding: 10px 0;
            background: rgba(0, 0, 0, 0.98);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
        }

        .header-content {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            transition: all 0.3s ease;
        }

        .logo img {
            max-height: 60px;
            transition: all 0.3s ease;
            filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
        }

        .main-header.shrunk .logo img {
            max-height: 40px;
        }

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

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: #b0b7ff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 12px 20px;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link::before,
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link::before {
            top: 8px;
            left: 8px;
        }

        .nav-link::after {
            bottom: 8px;
            right: 8px;
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            width: 12px;
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.6);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 12px;
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.6);
        }

        .bracket-left,
        .bracket-right {
            position: absolute;
            width: 12px;
            height: 12px;
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
        }

        .bracket-left {
            top: 4px;
            left: 4px;
            border-top-color: #667eea;
            border-left-color: #667eea;
        }

        .bracket-right {
            bottom: 4px;
            right: 4px;
            border-bottom-color: #764ba2;
            border-right-color: #764ba2;
        }

        .nav-link:hover {
            background: rgba(102, 126, 234, 0.15);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
        }

        .nav-link:hover .bracket-left,
        .nav-link:hover .bracket-right,
        .nav-link.active .bracket-left,
        .nav-link.active .bracket-right {
            opacity: 1;
        }

        .nav-link.active {
            background: rgba(102, 126, 234, 0.2);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-toggle::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.7rem;
            margin-left: 6px;
            transition: transform 0.3s ease;
        }

        .dropdown.open .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            padding: 8px 0;
        }

        .dropdown.open .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            color: #b0b7ff;
            text-decoration: none;
            padding: 12px 20px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-item:hover {
            background: rgba(102, 126, 234, 0.15);
            color: #ffffff;
            border-left-color: #667eea;
            transform: translateX(4px);
        }

        .analyze-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .analyze-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .analyze-btn:hover::before {
            left: 100%;
        }

        .analyze-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
        }

        /* Page Container */
        .kol-container {
            width: 100%;
        }

        /* Hero Title Section */
        .kol-hero {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(102, 126, 234, 0.2);
            padding: 50px 0;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .kol-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
            z-index: -1;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .hero-title {
            font-family: "Titillium Web", sans-serif;
            font-size: 3.2rem;
            font-weight: 700;
            color: #fff;
            text-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .hero-title i {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .breadcrumbs {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #b0b7ff;
        }

        .breadcrumb-item {
            color: #888;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-item:hover {
            color: #667eea;
        }

        .breadcrumb-item.active {
            color: #ffffff;
            font-weight: 600;
        }

        .breadcrumb-separator {
            color: #555;
        }

        .hero-description {
            font-size: 1.1rem;
            color: #b0b7ff;
            line-height: 1.6;
            max-width: 800px;
        }

        /* Search and Filter Section */
        .search-filter-section {
            max-width: 1400px;
            margin: 0 auto 40px;
            padding: 0 20px;
        }

        .search-filter-container {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 40px;
        }

        .search-filter-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 20px;
            align-items: end;
        }

        .search-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .search-group label {
            font-family: "Titillium Web", sans-serif;
            font-weight: 600;
            color: #ffffff;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .search-input,
        .filter-select {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 12px;
            padding: 12px 16px;
            color: #ffffff;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .search-input:focus,
        .filter-select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 15px rgba(102, 126, 234, 0.3);
            background: rgba(255, 255, 255, 0.12);
        }

        .search-input::placeholder {
            color: #888;
        }

        .filter-select option {
            background: #1a1a1a;
            color: #ffffff;
        }

        .stats-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
       
            border-bottom: 1px solid rgba(102, 126, 234, 0.1);
        }

        .results-count {
            font-family: "Titillium Web", sans-serif;
            font-weight: 600;
            color: #b0b7ff;
        }

        .view-toggle {
            display: flex;
            gap: 8px;
        }

        .view-btn {
            background: rgba(102, 126, 234, 0.1);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 8px;
            padding: 8px 12px;
            color: #b0b7ff;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-btn.active,
        .view-btn:hover {
            background: rgba(102, 126, 234, 0.3);
            color: #ffffff;
        }

        /* Category Tags */
        .category-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .category-tag {
            background: rgba(102, 126, 234, 0.1);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 25px;
            padding: 8px 16px;
            color: #b0b7ff;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .category-tag.active,
        .category-tag:hover {
            background: rgba(102, 126, 234, 0.3);
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* KOL Grid */
        .main-kols {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .kol-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 25px;
        }

        .kol-card {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 20px;
            padding: 30px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .kol-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .kol-card:hover::before {
            transform: scaleX(1);
        }

        .kol-card:hover {
            transform: translateY(-8px);
            border-color: rgba(102, 126, 234, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(102, 126, 234, 0.2);
        }

        .kol-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .kol-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            font-weight: 700;
            flex-shrink: 0;
            overflow: hidden;
        }

        .kol-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .kol-info {
            flex: 1;
        }

        .kol-name {
            font-family: "Titillium Web", sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .kol-handle {
            color: #667eea;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .kol-description {
            color: #b0b7ff;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .kol-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 12px;
        }

        .stat-label {
            font-size: 0.8rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .stat-value {
            font-weight: 600;
            color: #ffffff;
            font-size: 0.9rem;
        }

        .kol-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .badge {
            background: rgba(102, 126, 234, 0.2);
            color: #b0b7ff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .badge.positive {
            background: rgba(34, 197, 94, 0.2);
            color: #86efac;
        }

        .badge.negative {
            background: rgba(239, 68, 68, 0.2);
            color: #fca5a5;
        }

        .kol-actions {
            display: flex;
            gap: 10px;
        }

        .action-btn {
            flex: 1;
            background: rgba(102, 126, 234, 0.1);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 8px;
            padding: 10px;
            color: #b0b7ff;
            text-decoration: none;
            text-align: center;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            cursor: pointer;
        }

        .action-btn:hover {
            background: rgba(102, 126, 234, 0.3);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .action-btn.primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
        }

        .action-btn.primary:hover {
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        /* Custom Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 999999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 40px;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fca5a5;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(239, 68, 68, 0.4);
            color: #ffffff;
        }

        .modal-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(102, 126, 234, 0.2);
        }

        .modal-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            font-weight: 700;
            overflow: hidden;
        }

        .modal-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .modal-info h2 {
            font-family: "Titillium Web", sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .modal-handle {
            color: #667eea;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .modal-section {
            margin-bottom: 25px;
        }

        .modal-section h3 {
            font-family: "Titillium Web", sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .modal-section p {
            color: #b0b7ff;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .modal-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .modal-stat-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 15px;
        }

        .modal-stat-label {
            font-size: 0.9rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .modal-stat-value {
            font-weight: 600;
            color: #ffffff;
            font-size: 1rem;
        }

        .follower-count {
            color: #667eea;
            font-weight: 700;
        }

        /* Footer Styles */
        .main-footer {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(102, 126, 234, 0.2);
            padding: 60px 0 30px;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-section h4 {
            font-family: "Titillium Web", sans-serif;
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-logo img {
            max-height: 50px;
            margin-bottom: 15px;
        }

        .footer-logo p {
            color: #b0b7ff;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #b0b7ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #667eea;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(102, 126, 234, 0.1);
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b0b7ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: rgba(102, 126, 234, 0.2);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(102, 126, 234, 0.1);
            padding: 30px 0;
            margin-top: 40px;
        }

        .footer-bottom-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #888;
        }

        .footer-links {
            display: flex;
            gap: 30px;
        }

        .footer-links a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #667eea;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-content {
                padding: 0 15px;
            }

            .nav-links {
                display: none;
            }

            .hero-content {
                padding: 0 15px;
            }

            .hero-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .search-filter-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .kol-grid {
                grid-template-columns: 1fr;
            }

            .kol-card {
                padding: 20px;
            }

            .stats-bar {
                flex-direction: column;
                gap: 15px;
            }

            .category-filters {
                justify-content: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 20px;
            }

            .modal-content {
                width: 95%;
                padding: 30px 20px;
            }

            .modal-stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Hidden class for filtering */
        .hidden {
            display: none !important;
        }

        /* Loading state */
        .loading {
            text-align: center;
            padding: 60px 20px;
            color: #b0b7ff;
        }

        .loading i {
            font-size: 2rem;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }