 /* Scope */
    #SmmPanelUS-Guest-Features {
        /* Palette Match */
        --GF-Bg: #0D0E1E;
        --GF-Card: #151624;
        --GF-Text: #FFFFFF;
        --GF-Muted: #a0aec0;
        --GF-Primary: #4B75EE;
        --GF-Border: #2d2e42;
        
        padding: 50px 0 100px 0;
        font-family: 'Inter', sans-serif;
    }

    /* Light Mode Override */
    body.light #SmmPanelUS-Guest-Features,
    .theme-light-active #SmmPanelUS-Guest-Features {
        --GF-Bg: #F4F6F9;
        --GF-Card: #FFFFFF;
        --GF-Text: #0D0E1E;
        --GF-Muted: #64748b;
        --GF-Border: #E0E0E0;
    }

    #SmmPanelUS-Guest-Features * { box-sizing: border-box; }

    /* Title */
    #SmmPanelUS-Guest-Features .gf-title {
        font-size: 2.5rem; font-weight: 800; color: var(--GF-Text); margin-bottom: 15px;
    }
    #SmmPanelUS-Guest-Features .gf-gradient {
        background: linear-gradient(90deg, #4B75EE, #8257e5);
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    #SmmPanelUS-Guest-Features .gf-desc {
        font-size: 1.1rem; color: var(--GF-Muted); max-width: 600px; margin: 0 auto;
    }

    /* --- GRID SYSTEM (3 Columns Desktop) --- */
    #SmmPanelUS-Guest-Features .gf-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(250px, auto);
        gap: 25px;
    }

    /* Card Base */
    #SmmPanelUS-Guest-Features .gf-card {
        background: var(--GF-Card); border: 1px solid var(--GF-Border);
        border-radius: 24px; padding: 30px; position: relative; overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex; flex-direction: column;
    }
    #SmmPanelUS-Guest-Features .gf-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        border-color: var(--GF-Primary);
    }
    #SmmPanelUS-Guest-Features .card-content { flex-grow: 1; display: flex; flex-direction: column; }

    /* Grid Areas */
    #SmmPanelUS-Guest-Features .card-api { grid-column: span 2; } /* Wide */
    #SmmPanelUS-Guest-Features .card-geo { grid-column: span 1; grid-row: span 2; } /* Tall */
    
    /* Content Styles */
    #SmmPanelUS-Guest-Features .icon-box {
        width: 50px; height: 50px; border-radius: 12px;
        display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
        margin-bottom: 20px;
    }
    #SmmPanelUS-Guest-Features .purple { background: rgba(130, 87, 229, 0.1); color: #8257e5; }
    #SmmPanelUS-Guest-Features .blue { background: rgba(75, 117, 238, 0.1); color: #4B75EE; }
    #SmmPanelUS-Guest-Features .orange { background: rgba(245, 158, 11, 0.1); color: #f97316; }
    #SmmPanelUS-Guest-Features .green { background: rgba(36, 171, 94, 0.1); color: #24ab5e; }
    #SmmPanelUS-Guest-Features .red { background: rgba(220, 38, 38, 0.1); color: #dc2626; }
    #SmmPanelUS-Guest-Features .yellow { background: rgba(250, 204, 21, 0.1); color: #eab308; }

    #SmmPanelUS-Guest-Features h3 { font-size: 1.4rem; font-weight: 700; color: var(--GF-Text); margin-bottom: 10px; }
    #SmmPanelUS-Guest-Features p { font-size: 0.95rem; color: var(--GF-Muted); line-height: 1.5; margin-bottom: 20px; }

    /* API Card Specifics */
    #SmmPanelUS-Guest-Features .card-api .card-content { flex-direction: row; align-items: center; justify-content: space-between; }
    #SmmPanelUS-Guest-Features .card-api .card-text { max-width: 50%; }
    
    #SmmPanelUS-Guest-Features .visual-terminal {
        background: #09090b; border-radius: 12px; padding: 0; width: 45%;
        border: 1px solid rgba(255,255,255,0.1); font-family: monospace; font-size: 0.8rem;
    }
    #SmmPanelUS-Guest-Features .term-header { background: rgba(255,255,255,0.05); padding: 8px 12px; display: flex; gap: 6px; }
    #SmmPanelUS-Guest-Features .dot { width: 8px; height: 8px; border-radius: 50%; }
    #SmmPanelUS-Guest-Features .r { background: #ff5f56; }
    #SmmPanelUS-Guest-Features .y { background: #ffbd2e; }
    #SmmPanelUS-Guest-Features .g { background: #27c93f; }
    #SmmPanelUS-Guest-Features .term-body { padding: 15px; color: #fff; }
    #SmmPanelUS-Guest-Features .c-method { color: #f59e0b; font-weight: bold; }
    #SmmPanelUS-Guest-Features .c-key { color: #4B75EE; }
    #SmmPanelUS-Guest-Features .code-success { color: #24ab5e; margin-top: 5px; }

    /* Geo Card Specifics */
    #SmmPanelUS-Guest-Features .geo-scroll-box {
        margin-top: auto; max-height: 300px; overflow-y: auto; padding-right: 5px;
    }
    #SmmPanelUS-Guest-Features .geo-scroll-box::-webkit-scrollbar { width: 4px; }
    #SmmPanelUS-Guest-Features .geo-scroll-box::-webkit-scrollbar-thumb { background: var(--GF-Border); border-radius: 2px; }

    #SmmPanelUS-Guest-Features .geo-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    #SmmPanelUS-Guest-Features .geo-tags span {
        background: rgba(255,255,255,0.05); color: var(--GF-Text); border: 1px solid var(--GF-Border);
        padding: 5px 10px; border-radius: 6px; font-size: 0.8rem; font-weight: 600;
    }
    .theme-light-active #SmmPanelUS-Guest-Features .geo-tags span { background: #eee; }

    /* Subscriptions Visual */
    #SmmPanelUS-Guest-Features .sub-visual { display: flex; gap: 10px; margin-top: auto; }
    #SmmPanelUS-Guest-Features .sub-visual span {
        padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    }
    #SmmPanelUS-Guest-Features .badge-future { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
    #SmmPanelUS-Guest-Features .badge-past { background: rgba(75, 117, 238, 0.1); color: #4B75EE; }

    #SmmPanelUS-Guest-Features .link-arrow {
        color: var(--GF-Primary); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: 0.2s;
    }
    #SmmPanelUS-Guest-Features .link-arrow:hover { opacity: 0.8; transform: translateX(5px); }

    /* Mobile */
    @media (max-width: 991px) {
        #SmmPanelUS-Guest-Features .gf-grid {
            grid-template-columns: 1fr; grid-template-rows: auto;
        }
        #SmmPanelUS-Guest-Features .card-api { grid-column: span 1; }
        #SmmPanelUS-Guest-Features .card-api .card-content { flex-direction: column; text-align: left; }
        #SmmPanelUS-Guest-Features .card-api .card-text { max-width: 100%; margin-bottom: 20px; }
        #SmmPanelUS-Guest-Features .visual-terminal { width: 100%; }
        #SmmPanelUS-Guest-Features .card-geo { grid-column: span 1; grid-row: span 1; min-height: 400px; }
    }

    /* Scope */
    #SmmPanelUS-Trust-Core {
        /* Palette Match */
        --T-Bg: #0D0E1E;
        --T-Card-Bg: #151624;
        --T-Text: #FFFFFF;
        --T-Muted: #a0aec0;
        --T-Primary: #4B75EE;
        --T-Border: #2d2e42;
        --T-Shadow: 0 15px 40px rgba(0,0,0,0.2);
        
        width: 100%;
        overflow: hidden;
        padding: 50px 0 100px 0;
        background-color: var(--T-Bg);
        font-family: 'Inter', sans-serif;
    }

    /* Light Mode */
    body.light #SmmPanelUS-Trust-Core,
    .theme-light-active #SmmPanelUS-Trust-Core {
        --T-Bg: #F4F6F9;
        --T-Card-Bg: #FFFFFF;
        --T-Text: #0D0E1E;
        --T-Muted: #64748b;
        --T-Border: #E0E0E0;
        --T-Shadow: 0 15px 40px rgba(0,0,0,0.06);
    }

    #SmmPanelUS-Trust-Core * { box-sizing: border-box; }

    /* Headers */
    #SmmPanelUS-Trust-Core .trust-tag {
        display: inline-block; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; 
        color: var(--T-Primary); margin-bottom: 15px; letter-spacing: 1px;
    }
    #SmmPanelUS-Trust-Core .trust-title {
        font-size: 2.8rem; font-weight: 800; color: var(--T-Text); line-height: 1.1; margin-bottom: 20px;
    }
    #SmmPanelUS-Trust-Core .trust-highlight { color: var(--T-Primary); }
    #SmmPanelUS-Trust-Core .trust-desc {
        font-size: 1.1rem; color: var(--T-Muted); line-height: 1.6; max-width: 700px; margin: 0 auto;
    }

    /* --- 1. MANIFEST GRID --- */
    #SmmPanelUS-Trust-Core .manifest-grid {
        display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    #SmmPanelUS-Trust-Core .manifest-card {
        background: var(--T-Card-Bg); border: 1px solid var(--T-Border); border-radius: 24px;
        padding: 40px; position: relative; overflow: hidden; display: flex; flex-direction: column;
        transition: transform 0.3s ease; height: 100%; text-align: left;
    }
    #SmmPanelUS-Trust-Core .manifest-card:hover { transform: translateY(-5px); box-shadow: var(--T-Shadow); }
    
    #SmmPanelUS-Trust-Core .card-head { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
    #SmmPanelUS-Trust-Core .manifest-card h3 { font-size: 1.4rem; font-weight: 700; margin: 0; color: var(--T-Text); }
    #SmmPanelUS-Trust-Core .manifest-card p { font-size: 1rem; opacity: 0.9; line-height: 1.6; margin: 0; color: var(--T-Muted); }
    
    #SmmPanelUS-Trust-Core .card-icon { 
        width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0;
    }

    /* Card Variants */
    #SmmPanelUS-Trust-Core .manifest-card.dark { background: #0D0E1E; border: 1px solid var(--T-Border); }
    #SmmPanelUS-Trust-Core .manifest-card.dark .card-icon { background: rgba(255,255,255,0.05); color: #fff; }
    /* Override for Light Mode on Dark Card */
    body.light #SmmPanelUS-Trust-Core .manifest-card.dark { background: #0D0E1E; color: #fff; }
    body.light #SmmPanelUS-Trust-Core .manifest-card.dark h3,
    body.light #SmmPanelUS-Trust-Core .manifest-card.dark p { color: #fff; }

    #SmmPanelUS-Trust-Core .manifest-card.light .card-icon { background: rgba(75, 117, 238, 0.1); color: var(--T-Primary); }
    
    #SmmPanelUS-Trust-Core .manifest-card.accent { background: var(--T-Primary); color: #fff; border: none; }
    #SmmPanelUS-Trust-Core .manifest-card.accent h3, 
    #SmmPanelUS-Trust-Core .manifest-card.accent p { color: #fff; }
    #SmmPanelUS-Trust-Core .manifest-card.accent .card-icon { background: rgba(255,255,255,0.2); color: #fff; }

    /* --- 2. REVIEWS MARQUEE --- */
    #SmmPanelUS-Trust-Core .reviews-marquee-wrapper {
        overflow: hidden; position: relative; margin-top: 50px;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }
    #SmmPanelUS-Trust-Core .marquee-track {
        display: flex; gap: 20px; width: max-content; animation: scrollLeft 60s linear infinite;
    }
    @keyframes scrollLeft { to { transform: translateX(-50%); } }
    
    #SmmPanelUS-Trust-Core .review-bubble {
        background: var(--T-Card-Bg); border: 1px solid var(--T-Border); border-radius: 50px;
        padding: 15px 30px; white-space: nowrap; display: flex; align-items: center; gap: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    }
    #SmmPanelUS-Trust-Core .review-bubble.dark { background: var(--T-Bg); }
    
    #SmmPanelUS-Trust-Core .stars { color: #FFBD2E; font-size: 0.8rem; display: flex; gap: 2px; }
    #SmmPanelUS-Trust-Core .review-bubble p { margin: 0; font-size: 0.95rem; color: var(--T-Text); font-weight: 500; }
    #SmmPanelUS-Trust-Core .review-bubble span { font-weight: 700; color: var(--T-Primary); font-size: 0.8rem; }

    /* --- 3. FAQ --- */
    #SmmPanelUS-Trust-Core .mb-100 { margin-bottom: 100px; }
    #SmmPanelUS-Trust-Core .sticky-wrapper { position: sticky; top: 100px; }
    
    #SmmPanelUS-Trust-Core .link-arrow {
        color: var(--T-Primary); font-weight: 700; text-decoration: none; font-size: 1.1rem;
        border-bottom: 2px solid rgba(75,117,238,0.2); padding-bottom: 2px; transition: 0.3s; display: inline-block; margin-top: 20px;
    }
    #SmmPanelUS-Trust-Core .link-arrow:hover { border-color: var(--T-Primary); }

    #SmmPanelUS-Trust-Core .faq-wrapper { display: flex; flex-direction: column; gap: 15px; }
    #SmmPanelUS-Trust-Core .faq-item {
        background: var(--T-Card-Bg); border: 1px solid var(--T-Border); border-radius: 16px;
        overflow: hidden; transition: border-color 0.3s ease;
    }
    #SmmPanelUS-Trust-Core .faq-item.active { border-color: var(--T-Primary); }
    
    #SmmPanelUS-Trust-Core .faq-head {
        padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer;
    }
    #SmmPanelUS-Trust-Core .faq-head span { font-size: 1.1rem; font-weight: 700; color: var(--T-Text); }
    #SmmPanelUS-Trust-Core .toggle {
        width: 32px; height: 32px; background: rgba(0,0,0,0.05); border-radius: 50%;
        display: flex; align-items: center; justify-content: center; color: var(--T-Muted);
        transition: all 0.3s ease; flex-shrink: 0;
    }
    
    #SmmPanelUS-Trust-Core .faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    #SmmPanelUS-Trust-Core .faq-content {
        padding: 0 25px 25px 25px; color: var(--T-Muted); font-size: 1rem; line-height: 1.6;
    }
    #SmmPanelUS-Trust-Core .faq-content p { margin-bottom: 10px; }
    #SmmPanelUS-Trust-Core .faq-content p:last-child { margin-bottom: 0; }

    /* --- 4. CTA --- */
    #SmmPanelUS-Trust-Core .final-cta-box {
        background: linear-gradient(135deg, #4B75EE, #3b5bdb); padding: 60px;
        border-radius: 30px; color: #fff; text-align: center;
        box-shadow: 0 20px 60px rgba(75, 117, 238, 0.25); position: relative; overflow: hidden;
    }
    #SmmPanelUS-Trust-Core .cta-inner { position: relative; z-index: 2; }
    #SmmPanelUS-Trust-Core .final-cta-box h3 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; color: #fff; }
    #SmmPanelUS-Trust-Core .final-cta-box p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px; color: #fff; max-width: 600px; margin-left: auto; margin-right: auto; }
    
    #SmmPanelUS-Trust-Core .btn-cta-glow {
        display: inline-block; background: #fff; color: var(--T-Primary);
        padding: 16px 45px; border-radius: 14px; font-weight: 800; text-decoration: none; font-size: 1.1rem;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    #SmmPanelUS-Trust-Core .btn-cta-glow:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

    /* Decor */
    #SmmPanelUS-Trust-Core .cta-decor {
        position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    /* Mobile */
    @media (max-width: 991px) {
        #SmmPanelUS-Trust-Core { padding: 50px 0; }
        #SmmPanelUS-Trust-Core .manifest-grid { grid-template-columns: 1fr; }
        #SmmPanelUS-Trust-Core .trust-title { font-size: 2.2rem; }
        #SmmPanelUS-Trust-Core .final-cta-box { padding: 40px 20px; }
        #SmmPanelUS-Trust-Core .sticky-wrapper { position: static; text-align: center; margin-bottom: 30px; }
        #SmmPanelUS-Trust-Core .link-arrow { display: none; }
    }

    /* Scope */
    #SmmPanelUS-Guest-Services {
        /* Dark Theme (Default) */
        --GS-Bg: #0D0E1E;
        --GS-Text: #FFFFFF;
        --GS-Muted: #a0aec0;
        --GS-Primary: #4B75EE;
        --GS-Card: #151624;
        --GS-Border: #2d2e42;
        --GS-Item-Bg: rgba(255,255,255,0.03);
        --GS-Blur-Text: #f59e0b;
        --GS-Blur-Bg: rgba(245, 158, 11, 0.1);
        
        font-family: 'Inter', sans-serif;
        overflow: hidden;
        width: 100%;
    }
    
    /* ☀️ LIGHT THEME OVERRIDES (Robust) */
    body.light #SmmPanelUS-Guest-Services,
    .theme-light-active #SmmPanelUS-Guest-Services {
        --GS-Bg: #F4F6F9;
        --GS-Text: #0D0E1E;
        --GS-Muted: #64748b;
        --GS-Card: #FFFFFF;
        --GS-Border: #E0E0E0;
        --GS-Item-Bg: #F8F9FA; /* Darker item bg for contrast on white card */
        --GS-Blur-Text: #d97706;
        --GS-Blur-Bg: rgba(245, 158, 11, 0.15);
    }

    #SmmPanelUS-Guest-Services * { box-sizing: border-box; }

    /* Hero Section */
    #SmmPanelUS-Guest-Services .gs-hero-section {
        padding: 80px 0;
        position: relative;
    }

    /* Glow Effect */
    #SmmPanelUS-Guest-Services .gs-bg-glow {
        position: absolute; top: -20%; left: -10%;
        width: 600px; height: 600px;
        background: radial-gradient(circle, rgba(75, 117, 238, 0.12) 0%, transparent 70%);
        pointer-events: none; z-index: 0;
    }

    /* Badge */
    #SmmPanelUS-Guest-Services .gs-badge {
        display: inline-flex; align-items: center; gap: 8px;
        background: rgba(36, 171, 94, 0.1); color: #24ab5e;
        padding: 8px 16px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
        border: 1px solid rgba(36, 171, 94, 0.2); margin-bottom: 25px;
    }

    /* Title */
    #SmmPanelUS-Guest-Services .gs-title {
        font-size: 3.5rem; font-weight: 800; color: var(--GS-Text);
        line-height: 1.1; margin-bottom: 25px;
    }
    #SmmPanelUS-Guest-Services .gs-gradient {
        background: linear-gradient(90deg, #4B75EE, #8257e5);
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }

    /* Description */
    #SmmPanelUS-Guest-Services .gs-desc {
        font-size: 1.1rem; color: var(--GS-Muted); line-height: 1.6; margin-bottom: 40px; max-width: 550px;
    }
    #SmmPanelUS-Guest-Services .gs-desc strong { color: var(--GS-Text); }
    
    #SmmPanelUS-Guest-Services .gs-blur-text {
        font-size: 0.9rem; color: var(--GS-Blur-Text); background: var(--GS-Blur-Bg);
        padding: 6px 12px; border-radius: 6px; display: inline-block; font-weight: 600;
        margin-top: 5px; border: 1px dashed rgba(245, 158, 11, 0.3);
    }

    /* Actions */
    #SmmPanelUS-Guest-Services .gs-actions {
        display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
    }
    
    /* 🔥 BUTTON FIX 🔥 */
    #SmmPanelUS-Guest-Services .gs-btn-primary {
        background: var(--GS-Primary); color: #fff; 
        padding: 12px 20px 12px 28px; /* Extra padding left for balance */
        border-radius: 12px;
        font-weight: 700; text-decoration: none; font-size: 1rem;
        box-shadow: 0 10px 30px rgba(75, 117, 238, 0.3); transition: transform 0.2s;
        display: inline-flex; align-items: center; gap: 12px;
        white-space: nowrap; /* Prevent wrap */
        border: none;
        min-width: 220px; /* Ensure wide enough */
        justify-content: space-between;
    }
    #SmmPanelUS-Guest-Services .gs-btn-primary:hover { 
        transform: translateY(-3px); color: #fff; 
        box-shadow: 0 15px 35px rgba(75, 117, 238, 0.4); text-decoration: none;
    }
    #SmmPanelUS-Guest-Services .btn-icon {
        background: rgba(255,255,255,0.2); width: 30px; height: 30px; border-radius: 50%;
        display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
    }

    /* Users Online Mini-block */
    #SmmPanelUS-Guest-Services .gs-users-online { display: flex; align-items: center; gap: 15px; }
    #SmmPanelUS-Guest-Services .avatars { display: flex; }
    #SmmPanelUS-Guest-Services .avatars span {
        width: 38px; height: 38px; border-radius: 50%; background: #25263a; border: 2px solid var(--GS-Bg);
        display: flex; align-items: center; justify-content: center; color: #8888a0; font-size: 0.9rem;
        margin-left: -14px; position: relative; z-index: 1;
    }
    #SmmPanelUS-Guest-Services .avatars span:first-child { margin-left: 0; z-index: 3; }
    #SmmPanelUS-Guest-Services .avatars span:nth-child(2) { z-index: 2; }
    
    #SmmPanelUS-Guest-Services .gs-users-online .text { display: flex; flex-direction: column; font-size: 0.85rem; line-height: 1.2; position: relative; padding-left: 12px; }
    #SmmPanelUS-Guest-Services .gs-users-online .dot {
        position: absolute; left: 0; top: 5px; width: 6px; height: 6px; background: #22c55e; border-radius: 50%;
        box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
    }
    #SmmPanelUS-Guest-Services .gs-users-online strong { color: var(--GS-Text); font-size: 1.1rem; }
    #SmmPanelUS-Guest-Services .gs-users-online span { color: var(--GS-Muted); }

    /* --- RIGHT VISUAL (Card) --- */
    #SmmPanelUS-Guest-Services .gs-visual-card {
        background: var(--GS-Card); border: 1px solid var(--GS-Border);
        border-radius: 24px; position: relative; overflow: hidden;
        box-shadow: 0 40px 80px rgba(0,0,0,0.15); /* Lighter shadow for light mode compat */
        transform: perspective(1000px) rotateY(-5deg); transition: 0.5s ease;
    }
    #SmmPanelUS-Guest-Services .gs-visual-card:hover { transform: perspective(1000px) rotateY(0deg); }

    #SmmPanelUS-Guest-Services .card-glass-header {
        background: rgba(125,125,125,0.05); padding: 15px 25px;
        border-bottom: 1px solid var(--GS-Border); display: flex; align-items: center; gap: 10px;
    }
    #SmmPanelUS-Guest-Services .live-indicator {
        width: 10px; height: 10px; background: #24ab5e; border-radius: 50%; position: relative;
    }
    #SmmPanelUS-Guest-Services .live-indicator .blink {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%;
        background: #24ab5e; animation: blink-anim 1.5s infinite; opacity: 0.5;
    }
    @keyframes blink-anim { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2); opacity: 0; } }
    
    #SmmPanelUS-Guest-Services .card-glass-header span { font-weight: 600; font-size: 0.9rem; color: var(--GS-Text); }

    #SmmPanelUS-Guest-Services .activity-feed { padding: 25px; }

    #SmmPanelUS-Guest-Services .feed-item {
        display: flex; align-items: center; gap: 15px; margin-bottom: 20px;
        padding: 12px; border-radius: 12px; 
        background: var(--GS-Item-Bg);
        border: 1px solid var(--GS-Border); transition: 0.2s;
    }
    
    #SmmPanelUS-Guest-Services .icon {
        width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
    }
    #SmmPanelUS-Guest-Services .instagram { background: rgba(225, 48, 108, 0.1); color: #E1306C; }
    #SmmPanelUS-Guest-Services .youtube { background: rgba(255, 0, 0, 0.1); color: #FF0000; }
    #SmmPanelUS-Guest-Services .telegram { background: rgba(0, 136, 204, 0.1); color: #0088cc; }
    #SmmPanelUS-Guest-Services .vk { background: rgba(0, 119, 255, 0.1); color: #0077FF; }
    #SmmPanelUS-Guest-Services .tiktok { background: rgba(0,0,0,0.05); color: var(--GS-Text); }
    #SmmPanelUS-Guest-Services .linkedin { background: rgba(10, 102, 194, 0.1); color: #0A66C2; }

    #SmmPanelUS-Guest-Services .info { flex-grow: 1; }
    #SmmPanelUS-Guest-Services .name { font-size: 0.95rem; font-weight: 600; color: var(--GS-Text); margin-bottom: 2px; }
    #SmmPanelUS-Guest-Services .meta { font-size: 0.8rem; color: var(--GS-Muted); }

    #SmmPanelUS-Guest-Services .stat { font-weight: 700; font-size: 0.9rem; }
    #SmmPanelUS-Guest-Services .stat.up { color: #24ab5e; }
    
    #SmmPanelUS-Guest-Services .blur-me { filter: blur(3px); opacity: 0.5; user-select: none; }

    /* Secure Badge */
    #SmmPanelUS-Guest-Services .secure-badge {
        position: absolute; bottom: 20px; right: 20px;
        background: var(--GS-Card); color: var(--GS-Text);
        border: 1px solid var(--GS-Border);
        padding: 10px 20px; border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: flex; align-items: center; gap: 10px;
        font-size: 0.85rem; line-height: 1.2;
    }
    #SmmPanelUS-Guest-Services .shield {
        width: 30px; height: 30px; background: rgba(36, 171, 94, 0.1); border-radius: 50%;
        display: flex; align-items: center; justify-content: center; color: #24ab5e;
    }

    /* Mobile */
    @media (max-width: 991px) {
        #SmmPanelUS-Guest-Services .gs-title { font-size: 2.5rem; }
        #SmmPanelUS-Guest-Services .gs-actions { flex-direction: column; align-items: flex-start; width: 100%; gap: 20px; }
        #SmmPanelUS-Guest-Services .gs-btn-primary { width: 100%; justify-content: space-between; }
        #SmmPanelUS-Guest-Services .gs-visual-card { transform: none; margin-top: 40px; }
        #SmmPanelUS-Guest-Services .gs-users-online { padding-left: 5px; }
    }