    /* =========================================
       💎 SIGN IN v41.0 (MASSIVE SCALE)
       =========================================
    */
    #SmmPanelUS-Massive {
        /* Theme Variables */
        --M-Bg: #F8FAFC;
        --M-Card-Bg: #FFFFFF;
        --M-Text-Main: #1A202C; /* Fixed */
        --M-Text-Muted: #64748B; /* Fixed */
        --M-Primary: #4B75EE;
        --M-Border: #E2E8F0;
        --M-Input: #F1F5F9;
        --M-Shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.15);
        --M-Right-Bg: #F8FAFC;
        
        width: 100%; min-height: 90vh;
        display: flex; align-items: center; justify-content: center;
        font-family: 'Inter', sans-serif; position: relative;
        padding: 60px 20px;
    }

    /* DARK MODE */
    body.dark #SmmPanelUS-Massive, .theme-dark-active #SmmPanelUS-Massive {
        --M-Bg: #050505;
        --M-Card-Bg: #0F1116;
        --M-Text-Main: #FFFFFF;
        --M-Text-Muted: #A0AEC0; /* Fixed */
        --M-Primary: #4B75EE;
        --M-Border: #1E293B;
        --M-Input: #0A0C10;
        --M-Shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7); /* Deep shadow */
        --M-Right-Bg: #13161F;
    }

    #SmmPanelUS-Massive * { box-sizing: border-box; }
    
    /* Massive Glow */
    #SmmPanelUS-Massive .massive-glow {
        position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
        width: 80%; height: 80%; background: radial-gradient(circle, rgba(75,117,238,0.15) 0%, transparent 60%);
        filter: blur(100px); z-index: 0; pointer-events: none;
    }

    #SmmPanelUS-Massive .smm-iso-container { width: 100%; max-width: 1400px; position: relative; z-index: 2; }

    /* --- MOBILE INTRO --- */
    #SmmPanelUS-Massive .mobile-massive-intro { 
        display: none; text-align: center; margin-bottom: 40px; 
        color: var(--M-Text-Main);
    }
    #SmmPanelUS-Massive .mmi-status { 
        display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 700; 
        color: #10B981; margin-bottom: 15px; background: rgba(16,185,129,0.1); padding: 6px 16px; border-radius: 50px;
    }
    #SmmPanelUS-Massive .pulse-green { width: 8px; height: 8px; background: #10B981; border-radius: 50%; box-shadow: 0 0 8px #10B981; }
    #SmmPanelUS-Massive .mobile-massive-intro h1 { font-size: 2.8rem; font-weight: 900; margin: 0 0 10px 0; }
    #SmmPanelUS-Massive .mobile-massive-intro p { font-size: 1.2rem; color: var(--M-Text-Muted); line-height: 1.6; }
    #SmmPanelUS-Massive .text-blue { color: var(--M-Primary); }

    /* --- CARD --- */
    #SmmPanelUS-Massive .cinema-card {
        display: flex; width: 100%; min-height: 700px; /* Taller */
        background: var(--M-Card-Bg); 
        border-radius: 30px; 
        box-shadow: var(--M-Shadow);
        border: 1px solid var(--M-Border);
        overflow: hidden;
    }

    /* LEFT: FORM (Wider) */
    #SmmPanelUS-Massive .cc-left {
        width: 550px; padding: 60px; display: flex; flex-direction: column; justify-content: center;
        background: var(--M-Card-Bg); border-right: 1px solid var(--M-Border); flex-shrink: 0;
    }

    #SmmPanelUS-Massive .login-header-big { margin-bottom: 40px; }
    #SmmPanelUS-Massive .login-header-big h3 { font-size: 2.4rem; font-weight: 800; color: var(--M-Text-Main); margin: 0 0 10px 0; }
    #SmmPanelUS-Massive .login-header-big p { font-size: 1.2rem; color: var(--M-Text-Muted); margin: 0; }

    /* Inputs (Larger) */
    #SmmPanelUS-Massive .mass-input-group { margin-bottom: 25px; }
    #SmmPanelUS-Massive label { display: block; font-size: 0.95rem; font-weight: 700; color: var(--M-Text-Main); margin-bottom: 10px; }
    
    #SmmPanelUS-Massive .mi-wrap { position: relative; }
    #SmmPanelUS-Massive .mi-wrap input {
        width: 100%; height: 60px; /* Taller input */
        padding: 0 20px; border-radius: 12px;
        background: var(--M-Input); border: 1px solid var(--M-Border);
        color: var(--M-Text-Main); font-size: 1.1rem; transition: 0.2s;
    }
    #SmmPanelUS-Massive .mi-wrap input:focus { border-color: var(--M-Primary); box-shadow: 0 0 0 4px rgba(75,117,238,0.15); background: var(--M-Card-Bg); }
    #SmmPanelUS-Massive .mi-wrap i { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--M-Text-Muted); font-size: 1.2rem; }

    #SmmPanelUS-Massive .mi-split { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
    #SmmPanelUS-Massive .mi-forgot { font-size: 0.95rem; color: var(--M-Primary); text-decoration: none; font-weight: 600; }

    /* Button */
    #SmmPanelUS-Massive .btn-mass-primary {
        width: 100%; height: 64px; /* Taller button */
        background: var(--M-Primary); color: #fff; border: none; border-radius: 14px;
        font-size: 1.1rem; font-weight: 800; cursor: pointer; margin-top: 20px;
        display: flex; align-items: center; justify-content: center; gap: 15px;
        transition: 0.2s; box-shadow: 0 10px 30px rgba(75,117,238,0.3);
    }
    #SmmPanelUS-Massive .btn-mass-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(75,117,238,0.4); }

    /* Checkbox */
    #SmmPanelUS-Massive .mass-check label { display: flex; align-items: center; gap: 12px; cursor: pointer; }
    #SmmPanelUS-Massive .mass-check input { display: none; }
    #SmmPanelUS-Massive .mc-box { width: 22px; height: 22px; border: 2px solid var(--M-Border); border-radius: 6px; display: inline-block; transition: 0.2s; }
    #SmmPanelUS-Massive .mass-check input:checked + .mc-box { background: var(--M-Primary); border-color: var(--M-Primary); }
    #SmmPanelUS-Massive .mc-text { color: var(--M-Text-Muted); font-size: 1.05rem; }

    #SmmPanelUS-Massive .mass-footer { text-align: center; margin-top: 30px; font-size: 1.05rem; color: var(--M-Text-Muted); }
    #SmmPanelUS-Massive .mass-footer a { color: var(--M-Primary); font-weight: 700; text-decoration: none; }

    #SmmPanelUS-Massive .mass-divider { text-align: center; margin: 30px 0; position: relative; }
    #SmmPanelUS-Massive .mass-divider:before { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: var(--M-Border); }
    #SmmPanelUS-Massive .mass-divider span { background: var(--M-Card-Bg); padding: 0 15px; position: relative; font-size: 0.9rem; color: var(--M-Text-Muted); font-weight: 700; }
    #SmmPanelUS-Massive .mass-google { width: 100%; }

    /* Alerts */
    #SmmPanelUS-Massive .mass-alert { padding: 15px; border-radius: 12px; font-size: 1rem; margin-bottom: 25px; display: flex; align-items: center; gap: 12px; }
    #SmmPanelUS-Massive .mass-alert.error { background: rgba(239,68,68,0.1); color: #EF4444; border: 1px solid rgba(239,68,68,0.2); }
    #SmmPanelUS-Massive .mass-alert.success { background: rgba(16,185,129,0.1); color: #10B981; border: 1px solid rgba(16,185,129,0.2); }

    /* --- RIGHT: VISUAL (Massive Grid) --- */
    #SmmPanelUS-Massive .cc-right {
        flex: 1; background: var(--M-Right-Bg); padding: 60px;
        display: flex; flex-direction: column; justify-content: center;
    }

    #SmmPanelUS-Massive .visual-container { width: 100%; max-width: 600px; margin: 0 auto; }

    #SmmPanelUS-Massive .vc-top { margin-bottom: 50px; }
    #SmmPanelUS-Massive .vc-badge { 
        display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 700; 
        color: var(--M-Primary); background: rgba(75,117,238,0.1); padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
    }
    #SmmPanelUS-Massive .vc-top h2 { font-size: 3.5rem; font-weight: 900; color: var(--M-Text-Main); line-height: 1.1; margin: 0; }
    #SmmPanelUS-Massive .text-glow { color: var(--M-Primary); text-shadow: 0 0 30px rgba(75,117,238,0.3); }

    /* Big Grid */
    #SmmPanelUS-Massive .massive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 50px; }
    #SmmPanelUS-Massive .mg-card { 
        background: var(--M-Card-Bg); border: 1px solid var(--M-Border); 
        padding: 30px; border-radius: 20px; transition: 0.3s;
    }
    #SmmPanelUS-Massive .mg-card:hover { transform: translateY(-5px); border-color: var(--M-Primary); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
    
    #SmmPanelUS-Massive .mg-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 15px; }
    #SmmPanelUS-Massive .social { background: rgba(75,117,238,0.1); color: #4B75EE; }
    #SmmPanelUS-Massive .seo { background: rgba(16,185,129,0.1); color: #10B981; }
    #SmmPanelUS-Massive .orm { background: rgba(245,158,11,0.1); color: #F59E0B; }
    #SmmPanelUS-Massive .web { background: rgba(236,72,153,0.1); color: #EC4899; }
    
    #SmmPanelUS-Massive .mg-content h4 { font-size: 1.2rem; font-weight: 800; color: var(--M-Text-Main); margin: 0 0 5px 0; }
    #SmmPanelUS-Massive .mg-content p { font-size: 1rem; color: var(--M-Text-Muted); margin: 0; }

    /* Stats Bar */
    #SmmPanelUS-Massive .vc-stats-bar { 
        display: flex; align-items: center; justify-content: space-between; 
        border-top: 1px solid var(--M-Border); padding-top: 30px;
    }
    #SmmPanelUS-Massive .vsb-item { display: flex; flex-direction: column; }
    #SmmPanelUS-Massive .vsb-item b { font-size: 1.8rem; color: var(--M-Text-Main); line-height: 1; }
    #SmmPanelUS-Massive .vsb-item span { font-size: 0.95rem; color: var(--M-Text-Muted); text-transform: uppercase; font-weight: 600; margin-top: 5px; }
    
    #SmmPanelUS-Massive .vsb-sep { width: 1px; height: 40px; background: var(--M-Border); }
    #SmmPanelUS-Massive .highlight b { color: #10B981; }

    /* RESPONSIVE */
    @media (max-width: 1200px) {
        #SmmPanelUS-Massive .cc-left { width: 450px; padding: 40px; }
    }
    @media (max-width: 991px) {
        #SmmPanelUS-Massive .cinema-card { flex-direction: column; min-height: auto; width: 100%; }
        #SmmPanelUS-Massive .cc-left { width: 100%; border-right: none; border-bottom: 1px solid var(--M-Border); }
        #SmmPanelUS-Massive .cc-right { display: none; }
        
        #SmmPanelUS-Massive .mobile-massive-intro { display: block; }
    }

    /* =========================================
       🎁 SECTION 2 STYLES (ADAPTIVE v43.0)
       =========================================
    */
    #SmmPanelUS-Bonus {
        /* LIGHT MODE VARIABLES (Default) */
        --Bn-Bg: #FFFFFF;
        --Bn-Border: #E2E8F0;
        --Bn-Text-Head: #1A202C; /* Fixed */
        --Bn-Text-Body: #64748B; /* Fixed */
        --Bn-Card-Shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
        --Bn-Step-Num-Bg: #F1F5F9;
        --Bn-Step-Num-Text: #1A202C; /* Fixed */
        
        --Bn-Mystery-Bg: #FFFFFF;
        --Bn-Mystery-Border: #E2E8F0;
        
        width: 100%; padding: 40px 20px;
        background: transparent;
        font-family: 'Inter', sans-serif;
        margin-top: -40px; position: relative; z-index: 3;
    }

    /* DARK MODE VARIABLES */
    body.dark #SmmPanelUS-Bonus, .theme-dark-active #SmmPanelUS-Bonus {
        --Bn-Bg: #0F1116; /* Deep Dark */
        --Bn-Border: rgba(255, 215, 0, 0.15); /* Gold Hint */
        --Bn-Text-Head: #FFFFFF;
        --Bn-Text-Body: #A0AEC0; /* Fixed */
        --Bn-Card-Shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        --Bn-Step-Num-Bg: rgba(255, 255, 255, 0.1);
        --Bn-Step-Num-Text: #FFFFFF;
        
        --Bn-Mystery-Bg: rgba(255, 255, 255, 0.03);
        --Bn-Mystery-Border: rgba(255, 255, 255, 0.1);
    }

    #SmmPanelUS-Bonus .smm-iso-container { max-width: 1400px; margin: 0 auto; }

    /* --- BANNER CONTAINER --- */
    #SmmPanelUS-Bonus .bonus-banner {
        display: flex; align-items: center; justify-content: space-between;
        background: var(--Bn-Bg);
        border: 1px solid var(--Bn-Border);
        border-radius: 30px; padding: 60px;
        box-shadow: var(--Bn-Card-Shadow);
        position: relative; overflow: hidden;
        transition: 0.3s;
    }

    /* --- LEFT CONTENT --- */
    #SmmPanelUS-Bonus .bb-content { max-width: 500px; position: relative; z-index: 2; }

    #SmmPanelUS-Bonus .bb-tag {
        display: inline-flex; align-items: center; gap: 8px;
        background: rgba(255, 215, 0, 0.15); color: #D97706; /* Darker Gold for readability on white */
        font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
        padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
    }
    /* Gold text adjustment for Dark Mode */
    body.dark #SmmPanelUS-Bonus .bb-tag, .theme-dark-active #SmmPanelUS-Bonus .bb-tag { color: #FFD700; }

    #SmmPanelUS-Bonus h2 {
        font-size: 2.8rem; font-weight: 900; color: var(--Bn-Text-Head); margin: 0 0 15px 0; line-height: 1.1;
    }

    #SmmPanelUS-Bonus .text-gold {
        background: linear-gradient(135deg, #F59E0B, #D97706);
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    body.dark #SmmPanelUS-Bonus .text-gold, .theme-dark-active #SmmPanelUS-Bonus .text-gold {
        background: linear-gradient(135deg, #FFD700, #FDB931);
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }

    #SmmPanelUS-Bonus p {
        font-size: 1.2rem; color: var(--Bn-Text-Body); line-height: 1.6; margin-bottom: 30px;
    }
    #SmmPanelUS-Bonus p b { color: var(--Bn-Text-Head); }

    /* Steps */
    #SmmPanelUS-Bonus .bb-steps { display: flex; align-items: center; gap: 15px; }
    #SmmPanelUS-Bonus .step { 
        display: flex; align-items: center; gap: 8px; 
        font-size: 1rem; font-weight: 700; color: var(--Bn-Text-Head); 
    }

    #SmmPanelUS-Bonus .num {
        width: 28px; height: 28px; background: var(--Bn-Step-Num-Bg);
        border-radius: 50%; display: flex; align-items: center; justify-content: center;
        font-size: 0.9rem; color: var(--Bn-Step-Num-Text); border: 1px solid var(--Bn-Border);
    }
    #SmmPanelUS-Bonus .step-line { width: 30px; height: 2px; background: var(--Bn-Border); }

    /* --- RIGHT VISUAL --- */
    #SmmPanelUS-Bonus .bb-visual { position: relative; z-index: 2; padding-right: 40px; }

    #SmmPanelUS-Bonus .mystery-card {
        width: 320px; height: 190px;
        background: var(--Bn-Mystery-Bg);
        border: 1px solid var(--Bn-Mystery-Border);
        border-radius: 24px; 
        display: flex; align-items: center; justify-content: center;
        position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        transform: rotate(-3deg); transition: 0.3s;
    }
    body.dark #SmmPanelUS-Bonus .mystery-card { box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
    
    #SmmPanelUS-Bonus .mystery-card:hover { transform: rotate(0) scale(1.02); }

    #SmmPanelUS-Bonus .mc-glow {
        position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
        width: 70%; height: 70%; background: #F59E0B; opacity: 0.1; filter: blur(50px);
    }

    #SmmPanelUS-Bonus .mc-content { text-align: center; position: relative; z-index: 2; }
    #SmmPanelUS-Bonus .mc-icon { font-size: 3rem; color: #F59E0B; display: block; margin-bottom: 10px; }
    #SmmPanelUS-Bonus .mc-val { display: block; font-size: 2.2rem; font-weight: 800; color: var(--Bn-Text-Head); font-family: monospace; letter-spacing: -1px; }
    #SmmPanelUS-Bonus .mc-lbl { font-size: 0.9rem; color: var(--Bn-Text-Body); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }

    /* Floating Coins */
    #SmmPanelUS-Bonus .coin {
        position: absolute; width: 44px; height: 44px; background: linear-gradient(135deg, #FFD700, #FDB931);
        border-radius: 50%; display: flex; align-items: center; justify-content: center;
        font-weight: 800; color: #000; font-size: 1.3rem; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        animation: float 4s infinite ease-in-out; border: 2px solid #FFF;
    }
    #SmmPanelUS-Bonus .c1 { top: -25px; right: -25px; animation-delay: 0s; }
    #SmmPanelUS-Bonus .c2 { bottom: -25px; left: -25px; animation-delay: 2s; background: #FFF; color: #333; border-color: #E2E8F0; }

    @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

    #SmmPanelUS-Bonus .bb-disclaimer {
        text-align: center; font-size: 0.8rem; color: var(--Bn-Text-Body); margin-top: 25px; opacity: 0.8;
    }

    /* RESPONSIVE */
    @media (max-width: 991px) {
        #SmmPanelUS-Bonus .bonus-banner { flex-direction: column; text-align: center; padding: 40px 20px; }
        #SmmPanelUS-Bonus .bb-content { margin-bottom: 50px; }
        #SmmPanelUS-Bonus .bb-steps { justify-content: center; display: none; } /* Hide steps on mobile */
        #SmmPanelUS-Bonus .bb-visual { padding-right: 0; }
        #SmmPanelUS-Bonus h2 { font-size: 2.2rem; }
    }

   /* =========================================
       🚀 SECTION 3: ULTIMATE GRID (v46.1 Mobile Fix)
       =========================================
    */
    #SmmPanelUS-Advantages {
        /* Adaptive Colors */
        --Ad-Bg: transparent; 
        --Ad-Card-Bg: #FFFFFF;
        --Ad-Card-Border: #E2E8F0;
        --Ad-Text-Main: #1A202C; /* Fixed */
        --Ad-Text-Muted: #64748B; /* Fixed */
        --Ad-Primary: #4B75EE;
        
        --Ad-Toggle-Bg: #E2E8F0;
        --Ad-Toggle-Active: #10B981;
        
        width: 100%; padding: 80px 20px;
        font-family: 'Inter', sans-serif; position: relative; z-index: 2;
    }

    /* DARK MODE OVERRIDES */
    body.dark #SmmPanelUS-Advantages, .theme-dark-active #SmmPanelUS-Advantages {
        --Ad-Card-Bg: #151923;
        --Ad-Card-Border: #2A3042;
        --Ad-Text-Main: #FFFFFF;
        --Ad-Text-Muted: #A0AEC0; /* Fixed */
        --Ad-Toggle-Bg: #2A3042;
    }

    #SmmPanelUS-Advantages .smm-iso-container { max-width: 1200px; margin: 0 auto; }

    /* --- HEADER --- */
    #SmmPanelUS-Advantages .adv-header { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
    
    #SmmPanelUS-Advantages .ah-badge { 
        display: inline-flex; align-items: center; gap: 6px;
        background: #4B75EE; color: #fff; /* High Contrast Background */
        padding: 6px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; 
        margin-bottom: 20px; box-shadow: 0 4px 15px rgba(75, 117, 238, 0.3);
    }
    
    #SmmPanelUS-Advantages h2 { font-size: 2.8rem; font-weight: 800; color: var(--Ad-Text-Main); margin: 0 0 20px 0; line-height: 1.1; }
    #SmmPanelUS-Advantages .text-gradient {
        background: linear-gradient(90deg, #4B75EE, #8B5CF6); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    #SmmPanelUS-Advantages p { font-size: 1.1rem; color: var(--Ad-Text-Muted); line-height: 1.6; }

    /* --- GRID LAYOUT (Desktop Default) --- */
    #SmmPanelUS-Advantages .adv-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 Equal Columns */
        gap: 25px;
        grid-auto-rows: minmax(200px, auto); /* Consistent Row Height */
    }
    
    /* Specific Card Spanning */
    #SmmPanelUS-Advantages .wide { grid-column: span 2; }
    #SmmPanelUS-Advantages .pwa { grid-row: span 2; } /* Tall card spans 2 rows */

    /* CARD BASE */
    #SmmPanelUS-Advantages .adv-card {
        background: var(--Ad-Card-Bg); border: 1px solid var(--Ad-Card-Border);
        border-radius: 24px; padding: 30px; position: relative; overflow: hidden;
        transition: 0.3s; display: flex; flex-direction: column;
    }
    #SmmPanelUS-Advantages .adv-card:hover { 
        transform: translateY(-5px); border-color: var(--Ad-Primary); 
        box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
    }

    /* Common Icon */
    #SmmPanelUS-Advantages .ach-icon {
        width: 44px; height: 44px; border-radius: 12px; background: rgba(75,117,238,0.1); color: var(--Ad-Primary);
        display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
    }
    #SmmPanelUS-Advantages .purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
    #SmmPanelUS-Advantages .blue { background: rgba(59,130,246,0.1); color: #3B82F6; }
    #SmmPanelUS-Advantages .gold { background: rgba(245,158,11,0.1); color: #F59E0B; }

    /* 1. LEGACY CARD (Timeline) */
    #SmmPanelUS-Advantages .legacy .ac-head-row { display: flex; gap: 15px; align-items: center; margin-bottom: 30px; }
    #SmmPanelUS-Advantages .legacy h3 { margin: 0; font-size: 1.4rem; font-weight: 800; color: var(--Ad-Text-Main); }
    #SmmPanelUS-Advantages .legacy span { font-size: 1rem; color: var(--Ad-Text-Muted); }

    #SmmPanelUS-Advantages .visual-timeline { display: flex; align-items: center; position: relative; margin-top: 10px; padding: 0 10px; }
    #SmmPanelUS-Advantages .vt-point { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
    #SmmPanelUS-Advantages .vt-year { font-weight: 900; font-size: 1.1rem; color: var(--Ad-Text-Main); margin-bottom: 5px; }
    #SmmPanelUS-Advantages .vt-desc { font-size: 0.8rem; color: var(--Ad-Text-Muted); text-transform: uppercase; }
    #SmmPanelUS-Advantages .highlight { color: var(--Ad-Primary); }
    
    #SmmPanelUS-Advantages .vt-line { flex: 1; height: 2px; background: var(--Ad-Card-Border); margin: 0 15px; position: relative; top: -10px; }
    #SmmPanelUS-Advantages .vt-progress { width: 100%; height: 100%; background: linear-gradient(90deg, var(--Ad-Card-Border), var(--Ad-Primary)); }
    #SmmPanelUS-Advantages .dashed { border-top: 2px dashed var(--Ad-Card-Border); background: none; }
    
    #SmmPanelUS-Advantages .vt-tooltip {
        position: absolute; top: -35px; background: var(--Ad-Primary); color: #fff;
        padding: 2px 8px; border-radius: 4px; font-size: 0.8rem; font-weight: 700;
    }
    #SmmPanelUS-Advantages .vt-tooltip:after {
        content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
        border-width: 4px 4px 0; border-style: solid; border-color: var(--Ad-Primary) transparent transparent transparent;
    }

    /* 2. PWA CARD */
    #SmmPanelUS-Advantages .pwa { text-align: center; }
    #SmmPanelUS-Advantages .ac-top-tag { 
        position: absolute; top: 15px; right: 15px; background: #EF4444; color: #fff; 
        font-size: 0.75rem; font-weight: 800; padding: 3px 8px; border-radius: 4px; text-transform: uppercase;
    }
    #SmmPanelUS-Advantages .ac-content-center { display: flex; flex-direction: column; align-items: center; height: 100%; justify-content: center; }
    
    #SmmPanelUS-Advantages .phone-icon-mockup {
        width: 70px; height: 70px; background: linear-gradient(135deg, #4B75EE, #8B5CF6);
        border-radius: 18px; display: flex; align-items: center; justify-content: center;
        color: #fff; font-size: 2.5rem; margin-bottom: 20px; box-shadow: 0 10px 25px rgba(75, 117, 238, 0.4);
    }
    #SmmPanelUS-Advantages .pwa h3 { font-size: 1.4rem; color: var(--Ad-Text-Main); margin: 0 0 10px 0; font-weight: 800; }
    #SmmPanelUS-Advantages .pwa p { margin-bottom: 25px; }
    
    #SmmPanelUS-Advantages .btn-pwa-action {
        background: var(--Ad-Card-Border); color: var(--Ad-Text-Main);
        padding: 10px 20px; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 1rem;
        transition: 0.2s; display: inline-flex; align-items: center; gap: 8px;
    }
    #SmmPanelUS-Advantages .btn-pwa-action:hover { background: var(--Ad-Text-Main); color: var(--Ad-Card-Bg); }

    /* 3. AUTOMATION (Control Panel) */
    #SmmPanelUS-Advantages .automation .ac-head-simple { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; }
    #SmmPanelUS-Advantages .automation h3 { margin: 0; font-size: 1.2rem; color: var(--Ad-Text-Main); font-weight: 700; }
    
    #SmmPanelUS-Advantages .control-panel-list { display: flex; flex-direction: column; gap: 15px; }
    #SmmPanelUS-Advantages .cp-item { 
        display: flex; justify-content: space-between; align-items: center; 
        padding: 12px; border-radius: 12px; background: rgba(75,117,238,0.03); border: 1px solid transparent;
    }
    #SmmPanelUS-Advantages .cp-item:hover { border-color: rgba(75,117,238,0.2); }
    
    #SmmPanelUS-Advantages .cp-info b { display: block; font-size: 1rem; color: var(--Ad-Text-Main); }
    #SmmPanelUS-Advantages .cp-info span { font-size: 0.9rem; color: var(--Ad-Text-Muted); }
    #SmmPanelUS-Advantages .cp-info u { text-decoration: none; border-bottom: 1px dashed var(--Ad-Primary); font-weight: 600; }
    
    #SmmPanelUS-Advantages .cp-toggle { width: 40px; height: 22px; background: var(--Ad-Toggle-Bg); border-radius: 20px; position: relative; }
    #SmmPanelUS-Advantages .cp-toggle.active { background: #10B981; }
    #SmmPanelUS-Advantages .cp-toggle:after { 
        content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; 
        background: #fff; border-radius: 50%; transition: 0.2s; 
    }
    #SmmPanelUS-Advantages .cp-toggle.active:after { left: 21px; }

    /* 4. B2B & 5. VIP */
    #SmmPanelUS-Advantages .b2b .ac-head-simple, #SmmPanelUS-Advantages .vip h3 { margin-bottom: 20px; }
    #SmmPanelUS-Advantages .b2b h3, #SmmPanelUS-Advantages .vip h3 { margin: 0; font-size: 1.2rem; color: var(--Ad-Text-Main); font-weight: 700; }
    
    #SmmPanelUS-Advantages .rich-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
    #SmmPanelUS-Advantages .rich-list li { display: flex; gap: 12px; align-items: flex-start; }
    #SmmPanelUS-Advantages .rl-icon { color: var(--Ad-Primary); font-size: 1.1rem; margin-top: 2px; }
    #SmmPanelUS-Advantages .rich-list b { display: block; font-size: 1rem; color: var(--Ad-Text-Main); }
    #SmmPanelUS-Advantages .rich-list small { font-size: 0.9rem; color: var(--Ad-Text-Muted); }

    /* VIP Card Layout */
    #SmmPanelUS-Advantages .vip-flex { display: flex; align-items: center; justify-content: space-between; gap: 30px; height: 100%; }
    #SmmPanelUS-Advantages .vip-text { flex: 1; }
    #SmmPanelUS-Advantages .vip-text .ach-icon { margin-bottom: 15px; }
    #SmmPanelUS-Advantages .vip-tags { display: flex; flex-direction: column; gap: 10px; }
    #SmmPanelUS-Advantages .vip-tags span {
        background: rgba(245,158,11,0.1); color: #D97706; padding: 5px 12px; 
        border-radius: 8px; font-size: 0.9rem; font-weight: 700; text-align: center; white-space: nowrap;
    }
    body.dark #SmmPanelUS-Advantages .vip-tags span, .theme-dark-active #SmmPanelUS-Advantages .vip-tags span { color: #F59E0B; }

    /* =========================
       📱 MOBILE RESPONSIVENESS FIX
       ========================= */
    @media (max-width: 991px) {
        #SmmPanelUS-Advantages {
            padding: 50px 15px; /* Reduce padding on mobile */
        }

        /* 1. Force Grid to Single Column */
        #SmmPanelUS-Advantages .adv-grid {
            display: grid;
            grid-template-columns: 1fr; /* 1 Column only */
            grid-auto-rows: auto; /* Height adapts to content */
            gap: 20px;
        }

        /* 2. Reset Spans (Make all cards standard width) */
        #SmmPanelUS-Advantages .wide { 
            grid-column: auto; 
        }
        
        #SmmPanelUS-Advantages .pwa { 
            grid-row: auto; /* Remove vertical span */
            height: auto; /* Let it grow naturally */
        }

        /* 3. Adjust Internal Layouts for Mobile */
        #SmmPanelUS-Advantages .vip-flex { 
            flex-direction: column; 
            align-items: flex-start; 
        }
        
        #SmmPanelUS-Advantages .vip-tags { 
            flex-direction: row; 
            flex-wrap: wrap; 
            margin-top: 20px; 
            width: 100%;
        }

        #SmmPanelUS-Advantages h2 { font-size: 2.2rem; }
    }

    /* 1. Main Section - FULLY TRANSPARENT */
    .SmmPanelUS-PopServices-Section {
        padding: var(--SmmPanelUS-MaxArden-Programmer-space-6) 0;
        background: transparent !important; /* Inherits whatever is behind it */
        position: relative;
        z-index: 1;
    }

    .SmmPanelUS-PopServices-Header {
        text-align: center;
        max-width: 850px;
        margin: 0 auto 50px auto;
    }

    .SmmPanelUS-PopServices-Grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    /* 2. Cards - Must remain SOLID to stand out */
    .SmmPanelUS-PopServices-Card {
        background: var(--SmmPanelUS-MaxArden-Programmer-colorBackground-Component);
        border: 1px solid var(--SmmPanelUS-MaxArden-Programmer-colorBorder-Default);
        border-radius: var(--SmmPanelUS-MaxArden-Programmer-borderRadius-block);
        padding: 30px;
        display: flex;
        flex-direction: column;
        transition: transform var(--SmmPanelUS-MaxArden-Programmer-transition-normal), box-shadow 0.3s ease;
        position: relative;
        height: 100%;
        /* Added slightly stronger shadow since BG is transparent */
        box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
    }

    .SmmPanelUS-PopServices-Card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        border-color: rgba(75, 117, 238, 0.4);
    }

    .SmmPanelUS-Card-Header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding-bottom: 15px;
    }

    .theme-dark-active .SmmPanelUS-Card-Header { border-bottom: 1px solid rgba(255,255,255,0.05); }

    .SmmPanelUS-PopServices-Icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        border-radius: 12px;
        background: rgba(13, 14, 30, 0.03);
    }
    .theme-dark-active .SmmPanelUS-PopServices-Icon { background: rgba(255, 255, 255, 0.1); }

    .SmmPanelUS-PopServices-Title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Default);
        margin: 0;
    }

    .SmmPanelUS-PopServices-Sub {
        font-size: 0.85rem;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Muted);
        display: block;
        margin-top: 2px;
    }

    .SmmPanelUS-Features-List {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
        flex-grow: 1;
    }

    .SmmPanelUS-Features-List li {
        font-size: 0.95rem;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Muted);
        margin-bottom: 10px;
        display: flex;
        align-items: start;
        gap: 10px;
        line-height: 1.4;
    }
    
    .SmmPanelUS-Features-List li i {
        color: var(--SmmPanelUS-MaxArden-Programmer-colorPrimary);
        font-size: 0.875rem;
        margin-top: 4px;
    }

    .SmmPanelUS-Price-Row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(75, 117, 238, 0.04);
        padding: 12px 15px;
        border-radius: 8px;
    }

    .SmmPanelUS-PopServices-Price {
        font-family: 'Roboto Mono', monospace;
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Default);
    }

    .SmmPanelUS-PopServices-Label {
        font-size: 0.8rem;
        text-transform: uppercase;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Muted);
        font-weight: 600;
    }

    .SmmPanelUS-Methodology-Text {
        font-size: 0.9rem;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Muted);
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
        opacity: 0.9;
    }

    /* Brand Colors */
    .brand-ig { color: #E1306C; }
    .brand-tt { color: #000000; }
    .brand-yt { color: #FF0000; }
    .brand-tg { color: #229ED9; }
    .brand-vk { color: #0077FF; }
    .brand-fb { color: #1877F2; }
    .theme-dark-active .brand-tt { color: #ffffff; }

    /* =========================================
       🧠 SECTION 5: BLOG HUB (v52.0)
       =========================================
    */
    #SmmPanelUS-Blog {
        /* Config */
        --Bl-Bg: transparent;
        --Bl-Card-Bg: #FFFFFF;
        --Bl-Card-Border: #E2E8F0;
        --Bl-Text-Main: #1A202C; /* Fixed */
        --Bl-Text-Muted: #64748B; /* Fixed */
        --Bl-Primary: #4B75EE;
        
        width: 100%; padding: 80px 20px;
        font-family: 'Inter', sans-serif; position: relative; z-index: 2;
    }

    /* Dark Mode */
    body.dark #SmmPanelUS-Blog, .theme-dark-active #SmmPanelUS-Blog {
        --Bl-Card-Bg: #151923;
        --Bl-Card-Border: #2A3042;
        --Bl-Text-Main: #FFFFFF;
        --Bl-Text-Muted: #A0AEC0; /* Fixed */
    }

    #SmmPanelUS-Blog .smm-iso-container { max-width: 1200px; margin: 0 auto; }

    /* HEADER */
    #SmmPanelUS-Blog .blog-header { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
    #SmmPanelUS-Blog .bh-badge { 
        display: inline-block; background: rgba(75,117,238,0.1); color: var(--Bl-Primary); 
        font-weight: 700; font-size: 0.9rem; padding: 5px 15px; border-radius: 50px; margin-bottom: 20px;
        text-transform: uppercase; letter-spacing: 1px;
    }
    #SmmPanelUS-Blog h2 { font-size: 2.8rem; font-weight: 900; color: var(--Bl-Text-Main); margin: 0 0 20px 0; line-height: 1.1; }
    #SmmPanelUS-Blog .text-grad { 
        background: linear-gradient(90deg, #4B75EE, #8B5CF6); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    #SmmPanelUS-Blog p { font-size: 1.2rem; color: var(--Bl-Text-Muted); line-height: 1.6; }

    /* GRID */
    #SmmPanelUS-Blog .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px; margin-bottom: 50px;
    }

    /* CARD */
    #SmmPanelUS-Blog .blog-card {
        background: var(--Bl-Card-Bg); border: 1px solid var(--Bl-Card-Border);
        border-radius: 20px; overflow: hidden; display: flex; flex-direction: column;
        transition: 0.3s;
    }
    #SmmPanelUS-Blog .blog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--Bl-Primary); }

    /* Cover Area (CSS Generated) */
    #SmmPanelUS-Blog .bc-cover {
        height: 200px; width: 100%; position: relative; overflow: hidden; display: block;
        background-size: cover; background-position: center;
    }
    /* Abstract Gradients instead of Images */
    #SmmPanelUS-Blog .cover-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
    #SmmPanelUS-Blog .cover-2 { background: linear-gradient(135deg, #10B981 0%, #059669 100%); }
    #SmmPanelUS-Blog .cover-3 { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); }

    #SmmPanelUS-Blog .bc-overlay {
        position: absolute; inset: 0; background: rgba(0,0,0,0.2); transition: 0.3s;
    }
    #SmmPanelUS-Blog .blog-card:hover .bc-overlay { background: rgba(0,0,0,0); }

    #SmmPanelUS-Blog .bc-icon-bg {
        position: absolute; right: -20px; bottom: -20px; font-size: 8rem; color: rgba(255,255,255,0.15);
        transform: rotate(-15deg); pointer-events: none;
    }

    #SmmPanelUS-Blog .bc-cat {
        position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,0.9);
        color: #000; padding: 4px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Body */
    #SmmPanelUS-Blog .bc-body { padding: 25px; flex: 1; display: flex; flex-direction: column; }
    
    #SmmPanelUS-Blog .bc-meta { 
        display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--Bl-Text-Muted); margin-bottom: 15px; 
    }
    
    #SmmPanelUS-Blog h3 { margin: 0 0 15px 0; line-height: 1.4; font-size: 1.35rem; }
    #SmmPanelUS-Blog h3 a { color: var(--Bl-Text-Main); text-decoration: none; transition: 0.2s; }
    #SmmPanelUS-Blog .blog-card:hover h3 a { color: var(--Bl-Primary); }
    
    #SmmPanelUS-Blog p { font-size: 1rem; color: var(--Bl-Text-Muted); line-height: 1.6; margin-bottom: 25px; flex: 1; }

    #SmmPanelUS-Blog .bc-link {
        color: var(--Bl-Primary); font-weight: 700; text-decoration: none; font-size: 0.95rem;
        display: inline-flex; align-items: center; gap: 8px;
    }
    #SmmPanelUS-Blog .bc-link:hover { gap: 12px; } /* Arrow movement */

    /* Footer */
    #SmmPanelUS-Blog .blog-footer { text-align: center; }
    #SmmPanelUS-Blog .btn-all-posts {
        display: inline-block; padding: 12px 30px; border: 1px solid var(--Bl-Card-Border);
        border-radius: 50px; color: var(--Bl-Text-Main); text-decoration: none; font-weight: 700;
        transition: 0.2s; background: var(--Bl-Card-Bg); font-size: 1rem;
    }
    #SmmPanelUS-Blog .btn-all-posts:hover { background: var(--Bl-Primary); border-color: var(--Bl-Primary); color: #fff; }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        #SmmPanelUS-Blog .blog-grid { grid-template-columns: 1fr; }
        #SmmPanelUS-Blog h2 { font-size: 2.2rem; }
    }

    /* =========================================
       📖 SECTION 6: BRAND MANIFESTO (v54.0)
       =========================================
    */
    #SmmPanelUS-Story {
        /* Theme Variables */
        --St-Bg: transparent;
        --St-Card-Bg: #FFFFFF;
        --St-Card-Border: #E2E8F0;
        --St-Text-Main: #1A202C; /* Fixed */
        --St-Text-Body: #64748B; /* Fixed - using Muted for Body as per scheme */
        --St-Text-Muted: #64748B;
        --St-Primary: #4B75EE;
        --St-Alt-Bg: #F8FAFC;
        
        width: 100%; padding: 80px 20px;
        font-family: 'Inter', sans-serif; position: relative; z-index: 2;
    }

    /* Dark Mode */
    body.dark #SmmPanelUS-Story, .theme-dark-active #SmmPanelUS-Story {
        --St-Card-Bg: #151923;
        --St-Card-Border: #2A3042;
        --St-Text-Main: #FFFFFF;
        --St-Text-Body: #A0AEC0; /* Fixed */
        --St-Text-Muted: #A0AEC0;
        --St-Alt-Bg: #13161F;
    }

    #SmmPanelUS-Story .smm-iso-container { max-width: 1200px; margin: 0 auto; }

    /* HEADER */
    #SmmPanelUS-Story .story-header { margin-bottom: 60px; max-width: 600px; }
    #SmmPanelUS-Story .sh-year { 
        font-size: 0.9rem; font-weight: 800; color: var(--St-Text-Muted); 
        letter-spacing: 2px; border-bottom: 2px solid var(--St-Primary); padding-bottom: 5px;
    }
    #SmmPanelUS-Story h2 { 
        font-size: 3.5rem; font-weight: 900; color: var(--St-Text-Main); 
        margin: 20px 0 0 0; line-height: 1.1; 
    }
    #SmmPanelUS-Story .text-primary { color: var(--St-Primary); }

    /* GRID LAYOUT */
    #SmmPanelUS-Story .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* CARD STYLES */
    #SmmPanelUS-Story .story-card {
        background: var(--St-Card-Bg); border: 1px solid var(--St-Card-Border);
        border-radius: 24px; padding: 40px; position: relative;
        display: flex; flex-direction: column; transition: 0.3s;
    }
    #SmmPanelUS-Story .story-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.05); }
    
    #SmmPanelUS-Story .wide { grid-column: span 2; }
    #SmmPanelUS-Story .alt-bg { background: var(--St-Alt-Bg); border: none; }

    /* Typography */
    #SmmPanelUS-Story .sc-number {
        font-size: 3.5rem; font-weight: 900; color: var(--St-Card-Border);
        opacity: 0.5; margin-bottom: 20px; font-family: sans-serif; line-height: 1;
    }
    #SmmPanelUS-Story .story-card:hover .sc-number { color: var(--St-Primary); opacity: 0.2; transition: 0.3s; }

    #SmmPanelUS-Story h3 { font-size: 1.8rem; font-weight: 800; color: var(--St-Text-Main); margin: 0 0 20px 0; }
    
    #SmmPanelUS-Story .sc-text p {
        font-size: 1.1rem; color: var(--St-Text-Body); line-height: 1.7; margin-bottom: 15px;
    }
    #SmmPanelUS-Story .sc-text p:last-child { margin-bottom: 0; }
    #SmmPanelUS-Story .sc-text b { color: var(--St-Text-Main); font-weight: 700; }

    /* Special Layout for Block 4 */
    #SmmPanelUS-Story .sc-flex { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
    #SmmPanelUS-Story .sc-visual-icon { 
        font-size: 8rem; color: var(--St-Primary); opacity: 0.1; 
        transform: rotate(-20deg); flex-shrink: 0;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
        #SmmPanelUS-Story .story-grid { grid-template-columns: 1fr; }
        #SmmPanelUS-Story .wide { grid-column: span 1; }
        #SmmPanelUS-Story .story-header h2 { font-size: 2.5rem; }
        #SmmPanelUS-Story .sc-flex { flex-direction: column-reverse; align-items: flex-start; }
        #SmmPanelUS-Story .sc-visual-icon { font-size: 5rem; align-self: flex-end; margin-top: -50px; }
    }
    /* =========================================
       💬 SECTION 7: TRUST MATRIX (v57.0)
       =========================================
    */
    #SmmPanelUS-Reviews {
        /* Config */
        --Rv-Bg: transparent;
        --Rv-Card-Bg: #FFFFFF;
        --Rv-Card-Border: #E2E8F0;
        --Rv-Text-Main: #1A202C; /* Fixed */
        --Rv-Text-Body: #64748B; /* Fixed */
        --Rv-Primary: #4B75EE;
        
        /* Default Green (Light Mode) */
        --Rv-Green-Text: #10B981;
        --Rv-Green-Bg: rgba(16,185,129,0.1);
        --Rv-Green-Glow: none;
        
        width: 100%; padding: 80px 20px;
        font-family: 'Inter', sans-serif; position: relative; z-index: 2;
    }

    /* --- DARK MODE & COLOR ISOLATION --- */
    body.dark #SmmPanelUS-Reviews, .theme-dark-active #SmmPanelUS-Reviews {
        --Rv-Card-Bg: #151923;
        --Rv-Card-Border: #2A3042;
        --Rv-Text-Main: #FFFFFF;
        --Rv-Text-Body: #A0AEC0; /* Fixed */
        
        /* NEON GREEN ISOLATION (Brighter + Glow) */
        --Rv-Green-Text: #34D399; /* Brighter mint/neon green */
        --Rv-Green-Bg: rgba(52, 211, 153, 0.15);
        --Rv-Green-Glow: 0 0 12px rgba(52, 211, 153, 0.6); /* The glow effect */
    }

    #SmmPanelUS-Reviews .smm-iso-container { max-width: 1300px; margin: 0 auto; }

    /* HEADER STATS BAR */
    #SmmPanelUS-Reviews .rev-header { text-align: center; margin-bottom: 50px; }
    #SmmPanelUS-Reviews .rh-stats-bar { 
        display: inline-flex; align-items: center; justify-content: center; gap: 40px;
        background: var(--Rv-Card-Bg); border: 1px solid var(--Rv-Card-Border);
        padding: 20px 50px; border-radius: 100px; margin-bottom: 40px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    }
    #SmmPanelUS-Reviews .rsb-item { display: flex; align-items: center; gap: 15px; text-align: left; }
    #SmmPanelUS-Reviews .rsb-icon { 
        width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
    }
    
    /* Colors */
    #SmmPanelUS-Reviews .gold { background: rgba(245,158,11,0.1); color: #F59E0B; }
    #SmmPanelUS-Reviews .blue { background: rgba(75,117,238,0.1); color: #4B75EE; }
    
    /* Neon Green Elements */
    #SmmPanelUS-Reviews .green-neon { background: var(--Rv-Green-Bg); color: var(--Rv-Green-Text); box-shadow: var(--Rv-Green-Glow); }
    #SmmPanelUS-Reviews .green-text-neon { color: var(--Rv-Green-Text); text-shadow: var(--Rv-Green-Glow); }
    #SmmPanelUS-Reviews .green-neon-bg { background: var(--Rv-Green-Text); box-shadow: var(--Rv-Green-Glow); }

    #SmmPanelUS-Reviews .rsb-val { font-size: 1.6rem; font-weight: 800; color: var(--Rv-Text-Main); line-height: 1; }
    #SmmPanelUS-Reviews .rsb-lbl { font-size: 0.9rem; color: var(--Rv-Text-Body); text-transform: uppercase; margin-top: 4px; font-weight: 600; }
    #SmmPanelUS-Reviews .rsb-divider { width: 1px; height: 40px; background: var(--Rv-Card-Border); }
    #SmmPanelUS-Reviews h2 { font-size: 2.8rem; font-weight: 900; color: var(--Rv-Text-Main); margin: 0; line-height: 1.1; }
    #SmmPanelUS-Reviews .text-blue { color: var(--Rv-Primary); }

    /* TICKER */
    #SmmPanelUS-Reviews .rev-ticker-wrap { width: 100%; overflow: hidden; margin-bottom: 50px; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
    #SmmPanelUS-Reviews .rev-ticker { display: flex; gap: 40px; white-space: nowrap; animation: scrollRev 20s linear infinite; }
    #SmmPanelUS-Reviews .rev-ticker span { font-size: 1.1rem; font-weight: 700; color: var(--Rv-Text-Body); display: flex; align-items: center; gap: 8px; opacity: 0.6; }
    @keyframes scrollRev { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* GRID & CARDS */
    #SmmPanelUS-Reviews .rev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 25px; margin-bottom: 60px; }
    #SmmPanelUS-Reviews .rev-card {
        background: var(--Rv-Card-Bg); border: 1px solid var(--Rv-Card-Border);
        border-radius: 24px; padding: 35px; display: flex; flex-direction: column;
        transition: 0.3s; position: relative; justify-content: space-between;
    }
    #SmmPanelUS-Reviews .rev-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: var(--Rv-Primary); }
    #SmmPanelUS-Reviews .highlight { border-color: rgba(75,117,238,0.3); background: linear-gradient(180deg, var(--Rv-Card-Bg) 0%, rgba(75,117,238,0.02) 100%); }

    /* Avatars */
    #SmmPanelUS-Reviews .rc-user { display: flex; align-items: center; gap: 15px; }
    #SmmPanelUS-Reviews .rc-avatar { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 1.2rem; }
    #SmmPanelUS-Reviews .blue { background: #4B75EE; }
    #SmmPanelUS-Reviews .dark { background: #334155; }
    #SmmPanelUS-Reviews .orange { background: #F97316; }
    #SmmPanelUS-Reviews .vk-color { background: #0077FF; }
    #SmmPanelUS-Reviews .pink { background: #EC4899; }
    #SmmPanelUS-Reviews .purple { background: #8B5CF6; }
    
    #SmmPanelUS-Reviews .rc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
    #SmmPanelUS-Reviews .rc-user b { font-size: 1.1rem; color: var(--Rv-Text-Main); }
    #SmmPanelUS-Reviews .rc-user span { font-size: 0.9rem; color: var(--Rv-Text-Body); }
    #SmmPanelUS-Reviews .plane-icon { font-size: 1.6rem; opacity: 0.2; color: var(--Rv-Text-Main); }
    #SmmPanelUS-Reviews .rc-body { font-size: 1rem; line-height: 1.6; color: var(--Rv-Text-Body); margin-bottom: 20px; }
    
    /* Badges (Neon) */
    #SmmPanelUS-Reviews .rc-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; padding: 5px 12px; border-radius: 6px; width: fit-content; }
    #SmmPanelUS-Reviews .verified-neon { background: var(--Rv-Green-Bg); color: var(--Rv-Green-Text); box-shadow: var(--Rv-Green-Glow); border: 1px solid var(--Rv-Green-Bg); }
    #SmmPanelUS-Reviews .seo { background: rgba(245,158,11,0.1); color: #F59E0B; }

    /* Income Visual (Neon) */
    #SmmPanelUS-Reviews .income-visual-neon {
        background: var(--Rv-Green-Bg); border: 1px dashed var(--Rv-Green-Text);
        padding: 15px; border-radius: 12px; margin-top: auto; box-shadow: var(--Rv-Green-Glow);
    }
    #SmmPanelUS-Reviews .iv-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.95rem; color: var(--Rv-Text-Main); }
    #SmmPanelUS-Reviews .iv-bar { width: 100%; height: 6px; background: rgba(0,0,0,0.1); border-radius: 10px; overflow: hidden; }
    #SmmPanelUS-Reviews .iv-fill-neon { height: 100%; background: var(--Rv-Green-Text); border-radius: 10px; box-shadow: var(--Rv-Green-Glow); }

    /* CTA */
    #SmmPanelUS-Reviews .rev-footer-cta { text-align: center; }
    #SmmPanelUS-Reviews .rfc-content {
        background: var(--Rv-Card-Bg); border: 1px solid var(--Rv-Card-Border);
        display: inline-block; padding: 40px 60px; border-radius: 30px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    }
    #SmmPanelUS-Reviews .rfc-content h3 { font-size: 2.2rem; color: var(--Rv-Text-Main); margin: 0 0 10px 0; }
    #SmmPanelUS-Reviews .count { color: var(--Rv-Primary); }
    #SmmPanelUS-Reviews .rfc-content p { color: var(--Rv-Text-Body); margin-bottom: 25px; font-size: 1.2rem; }
    #SmmPanelUS-Reviews .btn-rev-big {
        background: var(--Rv-Primary); color: #fff; padding: 15px 40px; border-radius: 50px;
        font-weight: 800; font-size: 1.1rem; text-decoration: none; display: inline-block;
        transition: 0.3s; box-shadow: 0 10px 30px rgba(75,117,238,0.3);
    }
    #SmmPanelUS-Reviews .btn-rev-big:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(75,117,238,0.4); }

    @media (max-width: 900px) {
        #SmmPanelUS-Reviews .rh-stats-bar { flex-direction: column; gap: 20px; padding: 30px; border-radius: 30px; width: 100%; align-items: flex-start; }
        #SmmPanelUS-Reviews .rsb-divider { display: none; }
        #SmmPanelUS-Reviews .rev-grid { grid-template-columns: 1fr; }
        #SmmPanelUS-Reviews .rfc-content { padding: 30px 20px; width: 100%; }
    }

    /* =========================================
       💰 SECTION 4: DYNAMIC ECOSYSTEM (v51.0)
       =========================================
    */
    #SmmPanelUS-Ecosystem {
        /* Config */
        --Ec-Bg: transparent;
        --Ec-Card-Bg: #FFFFFF;
        --Ec-Card-Border: #E2E8F0;
        --Ec-Text-Main: #1A202C; /* Fixed */
        --Ec-Text-Muted: #64748B; /* Fixed */
        --Ec-Safe: #10B981;
        --Ec-Cluster-Head: #0F172A;
        --Ec-Btn-Bg: #10B981;
        
        width: 100%; padding: 80px 20px;
        font-family: 'Inter', sans-serif; position: relative; z-index: 2;
    }

    /* Dark Mode */
    body.dark #SmmPanelUS-Ecosystem, .theme-dark-active #SmmPanelUS-Ecosystem {
        --Ec-Card-Bg: #151923;
        --Ec-Card-Border: #2A3042;
        --Ec-Text-Main: #FFFFFF;
        --Ec-Text-Muted: #A0AEC0; /* Fixed */
        --Ec-Cluster-Head: #F8FAFC;
    }

    #SmmPanelUS-Ecosystem .smm-iso-container { max-width: 1300px; margin: 0 auto; }

    /* HEADER */
    #SmmPanelUS-Ecosystem .eco-header { text-align: center; max-width: 800px; margin: 0 auto 60px auto; }
    #SmmPanelUS-Ecosystem .eh-label { 
        display: inline-block; background: rgba(16,185,129,0.1); color: #10B981; 
        font-weight: 700; font-size: 0.9rem; padding: 5px 15px; border-radius: 50px; margin-bottom: 20px;
        text-transform: uppercase; letter-spacing: 1px;
    }
    #SmmPanelUS-Ecosystem h2 { font-size: 2.8rem; font-weight: 900; color: var(--Ec-Text-Main); margin: 0 0 20px 0; line-height: 1.1; }
    #SmmPanelUS-Ecosystem .text-safe { color: #10B981; }
    #SmmPanelUS-Ecosystem p { font-size: 1rem; color: var(--Ec-Text-Muted); line-height: 1.6; }

    /* CLUSTERS */
    #SmmPanelUS-Ecosystem .cluster-wrapper { margin-bottom: 40px; }
    #SmmPanelUS-Ecosystem .cluster-title {
        font-size: 1.4rem; font-weight: 800; color: var(--Ec-Cluster-Head); margin: 0 0 20px 0;
        display: flex; align-items: center; gap: 10px; padding-left: 15px; border-left: 4px solid #4B75EE;
    }
    #SmmPanelUS-Ecosystem .cluster-title i { color: #4B75EE; opacity: 0.8; }

    /* GRID */
    #SmmPanelUS-Ecosystem .eco-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }

    /* CARD */
    #SmmPanelUS-Ecosystem .eco-card {
        background: var(--Ec-Card-Bg); border: 1px solid var(--Ec-Card-Border);
        border-radius: 16px; padding: 20px; transition: 0.2s;
        display: flex; flex-direction: column;
    }
    #SmmPanelUS-Ecosystem .eco-card:hover { transform: translateY(-3px); border-color: var(--Ec-Safe); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    #SmmPanelUS-Ecosystem .highlight { border-color: rgba(75,117,238,0.3); background: rgba(75,117,238,0.02); }

    /* Heads */
    #SmmPanelUS-Ecosystem .ec-head { 
        font-weight: 800; font-size: 1.1rem; color: var(--Ec-Text-Main); 
        margin-bottom: 15px; display: flex; align-items: center; gap: 10px;
        border-bottom: 1px solid var(--Ec-Card-Border); padding-bottom: 10px;
    }
    #SmmPanelUS-Ecosystem .ec-head i { font-size: 1.4rem; }
    
    /* Brand Colors (Same as previous) */
    #SmmPanelUS-Ecosystem .telegram i { color: #229ED9; }
    #SmmPanelUS-Ecosystem .tiktok i { color: var(--Ec-Text-Main); }
    #SmmPanelUS-Ecosystem .youtube i { color: #FF0000; }
    #SmmPanelUS-Ecosystem .spotify i { color: #1DB954; }
    #SmmPanelUS-Ecosystem .soundcloud i { color: #FF5500; }
    #SmmPanelUS-Ecosystem .twitch i { color: #9146FF; }
    #SmmPanelUS-Ecosystem .apple i { color: var(--Ec-Text-Main); }
    #SmmPanelUS-Ecosystem .kick i { color: #53FC18; background: #000; padding: 2px; border-radius: 4px; }
    #SmmPanelUS-Ecosystem .discord i { color: #5865F2; }
    #SmmPanelUS-Ecosystem .reddit i { color: #FF4500; }
    #SmmPanelUS-Ecosystem .web i { color: #4B75EE; }
    #SmmPanelUS-Ecosystem .x i { color: var(--Ec-Text-Main); }
    #SmmPanelUS-Ecosystem .google i { color: #4285F4; }
    #SmmPanelUS-Ecosystem .linkedin i { color: #0077B5; }
    #SmmPanelUS-Ecosystem .trust i { color: #00B67A; }
    
    #SmmPanelUS-Ecosystem .vk i { color: #0077FF; }
    #SmmPanelUS-Ecosystem .rutube i { color: #0077FF; }
    #SmmPanelUS-Ecosystem .yandex i { color: #F00; }
    #SmmPanelUS-Ecosystem .likee i { color: #FF3C5D; }

    /* Lists */
    #SmmPanelUS-Ecosystem .ec-list { display: flex; flex-direction: column; gap: 10px; align-items: center;}
    #SmmPanelUS-Ecosystem .ec-item { display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; }
    #SmmPanelUS-Ecosystem .ec-item span { color: var(--Ec-Text-Muted); }
    #SmmPanelUS-Ecosystem .ec-item b { color: var(--Ec-Text-Main); font-family: monospace; letter-spacing: -0.5px; padding: 2px 6px; border-radius: 4px; color: #10B981; }

    /* Footer */
    #SmmPanelUS-Ecosystem .eco-footer { margin-top: 60px; text-align: center; border-top: 1px solid var(--Ec-Card-Border); padding-top: 40px; }
    
    #SmmPanelUS-Ecosystem .methods-badges { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 25px; }
    #SmmPanelUS-Ecosystem .mb-item { 
        font-size: 0.85rem; font-weight: 700; color: var(--Ec-Text-Muted); 
        background: var(--Ec-Card-Bg); border: 1px solid var(--Ec-Card-Border);
        padding: 5px 15px; border-radius: 30px; display: flex; align-items: center; gap: 6px;
    }
    #SmmPanelUS-Ecosystem .mb-item i { color: #4B75EE; }

    #SmmPanelUS-Ecosystem .ef-text { font-size: 0.9rem; color: var(--Ec-Text-Muted); opacity: 0.9; max-width: 900px; margin: 0 auto 30px auto; line-height: 1.5; }
    
    /* CTA Button */
    #SmmPanelUS-Ecosystem .btn-eco-cta {
        display: inline-flex; align-items: center; gap: 10px;
        background: var(--Ec-Btn-Bg); color: #fff; padding: 18px 40px; border-radius: 50px;
        font-weight: 800; font-size: 1.1rem; text-decoration: none;
        box-shadow: 0 10px 30px rgba(16,185,129,0.3); transition: 0.3s;
        animation: pulseEco 2s infinite;
    }
    #SmmPanelUS-Ecosystem .btn-eco-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(16,185,129,0.4); }
    
    @keyframes pulseEco { 0% { box-shadow: 0 0 0 0 rgba(16,185,129, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(16,185,129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16,185,129, 0); } }

    #SmmPanelUS-Ecosystem .seo-hidden { display: none; }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        #SmmPanelUS-Ecosystem .eco-grid { grid-template-columns: 1fr 1fr; }
        #SmmPanelUS-Ecosystem h2 { font-size: 2.2rem; }
    }
    @media (max-width: 480px) {
        #SmmPanelUS-Ecosystem .eco-grid { grid-template-columns: 1fr; }
    }

    .SmmPanelUS-FAQ-Section {
        padding: var(--SmmPanelUS-MaxArden-Programmer-space-6) 0;
        background: transparent !important;
        position: relative;
        z-index: 2;
    }

    .SmmPanelUS-FAQ-Header {
        text-align: center;
        max-width: 850px;
        margin: 0 auto 70px auto;
    }

    .SmmPanelUS-FAQ-Badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(75, 117, 238, 0.08);
        color: var(--SmmPanelUS-MaxArden-Programmer-colorPrimary);
        font-weight: 800;
        font-size: 0.9rem;
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        border: 1px solid rgba(75, 117, 238, 0.1);
    }

    /* THE GRID */
    .SmmPanelUS-FAQ-Grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        align-items: stretch; /* Cards will have equal height per row */
    }

    /* CARD ITEM */
    .SmmPanelUS-FAQ-Card {
        background: var(--SmmPanelUS-MaxArden-Programmer-colorBackground-Component);
        border: 1px solid var(--SmmPanelUS-MaxArden-Programmer-colorBorder-Default);
        border-radius: 20px;
        padding: 35px 30px;
        transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .SmmPanelUS-FAQ-Card:hover {
        transform: translateY(-7px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.06);
        border-color: rgba(75, 117, 238, 0.4);
    }

    /* ICON & HEADER */
    .SmmPanelUS-FAQ-Top {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .SmmPanelUS-FAQ-IconBox {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    /* Color Themes */
    .icon-green { background: rgba(16, 185, 129, 0.1); color: #10B981; }
    .icon-blue { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
    .icon-purple { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
    .icon-orange { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
    .icon-red { background: rgba(239, 68, 68, 0.1); color: #EF4444; }

    .SmmPanelUS-FAQ-Title {
        font-weight: 800;
        font-size: 1.4rem;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Default);
        line-height: 1.4;
    }

    /* CONTENT BODY */
    .SmmPanelUS-FAQ-Content {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Muted);
        /* Indent slightly to align with text above if desired, or keep flush */
    }

    .SmmPanelUS-FAQ-Content strong {
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Default);
        font-weight: 700;
    }

    .SmmPanelUS-FAQ-Content p {
        margin-bottom: 10px;
    }
    .SmmPanelUS-FAQ-Content p:last-child {
        margin-bottom: 0;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .SmmPanelUS-FAQ-Grid {
            grid-template-columns: 1fr;
        }
    }


    .SmmPanelUS-Free-Section {
        padding: var(--SmmPanelUS-MaxArden-Programmer-space-6) 0;
        background: transparent !important;
        position: relative;
        z-index: 2;
    }

    .SmmPanelUS-Free-Header {
        text-align: center;
        max-width: 850px;
        margin: 0 auto 60px auto;
    }

    .SmmPanelUS-Free-Badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(245, 158, 11, 0.1);
        color: #F59E0B; /* Gold/Orange */
        font-weight: 800;
        font-size: 0.9rem;
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        border: 1px solid rgba(245, 158, 11, 0.2);
    }

    /* EXPANDED GRID (4 Columns) */
    .SmmPanelUS-Free-Grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }

    /* TICKET CARD STYLE */
    .SmmPanelUS-Free-Card {
        background: var(--SmmPanelUS-MaxArden-Programmer-colorBackground-Component);
        border: 1px solid var(--SmmPanelUS-MaxArden-Programmer-colorBorder-Default);
        border-radius: 16px;
        padding: 30px 20px;
        position: relative;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow: hidden;
    }

    /* Top colored line */
    .SmmPanelUS-Free-Card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 4px;
        background: linear-gradient(90deg, #F59E0B, #FBBF24);
        opacity: 0.7;
    }

    .SmmPanelUS-Free-Card:hover {
        transform: translateY(-7px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.06);
        border-color: #F59E0B;
    }

    /* Card Icon */
    .SmmPanelUS-Free-Icon {
        width: 50px;
        height: 50px;
        background: rgba(245, 158, 11, 0.1);
        color: #F59E0B;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .SmmPanelUS-Free-Title {
        font-size: 1.15rem;
        font-weight: 800;
        margin-bottom: 10px;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Default);
        line-height: 1.3;
    }

    .SmmPanelUS-Free-Desc {
        font-size: 0.95rem;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Muted);
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    /* Ticket Divider */
    .SmmPanelUS-Free-Divider {
        width: 100%;
        height: 1px;
        border-top: 2px dashed var(--SmmPanelUS-MaxArden-Programmer-colorBorder-Default);
        margin: 0 0 15px 0;
        position: relative;
    }
    
    /* Perforation Circles */
    .SmmPanelUS-Free-Divider::before, .SmmPanelUS-Free-Divider::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        background: var(--SmmPanelUS-MaxArden-Programmer-colorBackground-Body);
        border-radius: 50%;
        top: -9px;
    }
    .SmmPanelUS-Free-Divider::before { left: -28px; }
    .SmmPanelUS-Free-Divider::after { right: -28px; }

    /* Bottom Info */
    .SmmPanelUS-Free-Info {
        font-size: 0.85rem;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Default);
    }
    .SmmPanelUS-Free-Info b {
        color: var(--SmmPanelUS-MaxArden-Programmer-colorPrimary);
        display: block;
        margin-bottom: 4px;
    }

    /* DISCLAIMER BOX */
    .SmmPanelUS-Free-Note {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
        padding: 20px;
        background: rgba(75, 117, 238, 0.03);
        border-radius: 12px;
        font-size: 0.95rem;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Muted);
        line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 1200px) {
        .SmmPanelUS-Free-Grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
        .SmmPanelUS-Free-Grid { grid-template-columns: 1fr; }
    }

    .SmmPanelUS-Video-Section {
        padding: 80px 0;
        position: relative;
        /* ABSOLUTELY TRANSPARENT */
        background: transparent !important;
        overflow: hidden;
        z-index: 2;
    }

    .SmmPanelUS-Video-Container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    /* HEADER TEXT */
    .SmmPanelUS-Video-Header {
        margin-bottom: 50px;
    }

    .SmmPanelUS-Video-Badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(75, 117, 238, 0.1);
        color: var(--SmmPanelUS-MaxArden-Programmer-colorPrimary);
        font-weight: 800;
        font-size: 0.9rem;
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
        /* Neutral Border */
        border: 1px solid rgba(13, 14, 30, 0.1);
    }
    .theme-dark-active .SmmPanelUS-Video-Badge { border-color: rgba(255, 255, 255, 0.1); }

    .SmmPanelUS-Video-Title {
        font-size: 2.8rem;
        font-weight: 900;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Default);
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .SmmPanelUS-Video-Sub {
        font-size: 1.2rem;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Muted);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* VIDEO WRAPPER (Clean Box) */
    .SmmPanelUS-Cinema-Frame {
        position: relative;
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        border-radius: 24px;
        overflow: hidden;
        /* Neutral Shadow (Black only, no colors) */
        box-shadow: 0 20px 60px rgba(0,0,0,0.2); 
        border: 1px solid var(--SmmPanelUS-MaxArden-Programmer-colorBorder-Default);
        background: #000;
        z-index: 2;
    }

    /* Aspect Ratio Hack for 16:9 */
    .SmmPanelUS-AspectRatio {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 */
        height: 0;
        overflow: hidden;
    }

    .SmmPanelUS-AspectRatio iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* STATS UNDER VIDEO */
    .SmmPanelUS-Video-Stats {
        display: flex;
        justify-content: center;
        gap: 50px;
        margin-top: 50px;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
    }

    .SmmPanelUS-Stat-Item {
        text-align: center;
    }

    .SmmPanelUS-Stat-Val {
        font-size: 2.5rem;
        font-weight: 900;
        /* Standard Text Color (No gradient) */
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Default);
        line-height: 1;
        margin-bottom: 10px;
    }

    .SmmPanelUS-Stat-Label {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Muted);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .SmmPanelUS-Video-Title { font-size: 2.2rem; }
        .SmmPanelUS-Video-Stats { gap: 30px; }
        .SmmPanelUS-Stat-Val { font-size: 2rem; }
    }


    .SmmPanelUS-API-Section {
        padding: 80px 0;
        background: transparent !important;
        position: relative;
        z-index: 2;
        overflow: hidden;
    }

    /* Ambient Background Glow */
    .SmmPanelUS-API-Glow {
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
        top: 50%;
        right: -100px;
        transform: translateY(-50%);
        z-index: -1;
        pointer-events: none;
    }

    .SmmPanelUS-API-Container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    /* LEFT: TEXT CONTENT */
    .SmmPanelUS-API-Content {
        max-width: 550px;
    }

    .SmmPanelUS-API-Badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(6, 182, 212, 0.1);
        color: #06b6d4; /* Cyan */
        font-weight: 800;
        font-size: 0.9rem;
        padding: 6px 16px;
        border-radius: 50px;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        border: 1px solid rgba(6, 182, 212, 0.2);
    }

    .SmmPanelUS-API-Title {
        font-size: 2.8rem;
        font-weight: 900;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Default);
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .SmmPanelUS-API-Desc {
        font-size: 1.1rem;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Muted);
        line-height: 1.6;
        margin-bottom: 30px;
    }

    /* Feature List */
    .SmmPanelUS-API-Features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .api-feat-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 700;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Default);
        font-size: 0.95rem;
    }

    .api-feat-icon {
        width: 36px;
        height: 36px;
        background: rgba(6, 182, 212, 0.1);
        color: #06b6d4;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

    /* Buttons */
    .SmmPanelUS-API-Actions {
        display: flex;
        gap: 15px;
    }

    .btn-api-primary {
        background: #06b6d4;
        color: #fff;
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 800;
        text-decoration: none;
        transition: 0.3s;
        box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    .btn-api-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(6, 182, 212, 0.4);
        color: #fff;
    }

    .btn-api-secondary {
        background: transparent;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Default);
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.3s;
        border: 1px solid var(--SmmPanelUS-MaxArden-Programmer-colorBorder-Default);
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    .btn-api-secondary:hover {
        border-color: #06b6d4;
        color: #06b6d4;
    }

    /* RIGHT: TERMINAL VISUAL */
    .SmmPanelUS-Terminal {
        background: #1e1e1e; /* Standard VS Code Dark */
        border-radius: 16px;
        box-shadow: 0 30px 80px rgba(0,0,0,0.15);
        overflow: hidden;
        font-family: 'Fira Code', 'Roboto Mono', monospace;
        border: 1px solid rgba(255,255,255,0.1);
        position: relative;
    }

    .terminal-header {
        background: #252526;
        padding: 12px 20px;
        display: flex;
        gap: 8px;
        border-bottom: 1px solid #333;
    }

    .dot { width: 12px; height: 12px; border-radius: 50%; }
    .dot.red { background: #ff5f56; }
    .dot.yellow { background: #ffbd2e; }
    .dot.green { background: #27c93f; }

    .terminal-body {
        padding: 25px;
        color: #d4d4d4;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Code Highlighting Simulation */
    .code-method { color: #569cd6; font-weight: bold; } /* POST */
    .code-url { color: #ce9178; } /* URL */
    .code-key { color: #9cdcfe; } /* Property */
    .code-string { color: #ce9178; } /* String value */
    .code-num { color: #b5cea8; } /* Number */
    .code-comment { color: #6a9955; display: block; margin-bottom: 5px; }

    /* Floating Badge on Terminal */
    .terminal-badge {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: rgba(6, 182, 212, 0.2);
        color: #06b6d4;
        padding: 5px 12px;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 700;
        border: 1px solid rgba(6, 182, 212, 0.3);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .SmmPanelUS-API-Container { grid-template-columns: 1fr; gap: 40px; }
        .SmmPanelUS-API-Glow { display: none; }
    }
    @media (max-width: 500px) {
        .SmmPanelUS-API-Features { grid-template-columns: 1fr; }
        .SmmPanelUS-API-Actions { flex-direction: column; }
        .btn-api-primary, .btn-api-secondary { width: 100%; justify-content: center; }
    }

     .SmmPanelUS-Partner-Section {
        padding: 80px 0;
        background: transparent !important;
        position: relative;
        z-index: 2;
    }

    .SmmPanelUS-Partner-Header {
        text-align: center;
        max-width: 850px;
        margin: 0 auto 60px auto;
    }

    /* BADGE */
    .SmmPanelUS-Partner-Badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(75, 117, 238, 0.05);
        color: var(--SmmPanelUS-MaxArden-Programmer-colorPrimary);
        font-weight: 800;
        font-size: 0.9rem;
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        border: 1px solid rgba(75, 117, 238, 0.15);
    }

    .SmmPanelUS-Partner-Title {
        font-size: 2.8rem;
        font-weight: 900;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Default);
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .SmmPanelUS-Partner-Sub {
        font-size: 1.2rem;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Muted);
        line-height: 1.6;
    }

    /* GRID */
    .SmmPanelUS-Partner-Grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .SmmPanelUS-Partner-Row2 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* CARD */
    .SmmPanelUS-Partner-Card {
        background: var(--SmmPanelUS-MaxArden-Programmer-colorBackground-Component);
        border: 1px solid var(--SmmPanelUS-MaxArden-Programmer-colorBorder-Default);
        border-radius: 24px;
        padding: 40px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .SmmPanelUS-Partner-Card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.05);
        border-color: rgba(75, 117, 238, 0.3);
    }

    /* VIP Card */
    .card-vip {
        background: var(--SmmPanelUS-MaxArden-Programmer-colorBackground-Component);
    }
    .card-vip:hover {
        border-color: #F59E0B;
    }

    /* ICONS - FORCE SOLID COLORS */
    .pp-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        display: inline-block;
        /* Force remove any global gradient settings */
        background: none !important;
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        -webkit-text-fill-color: initial !important;
    }
    .icon-gold { color: #F59E0B !important; }
    .icon-green { color: #10B981 !important; }
    .icon-blue { color: #4B75EE !important; }

    .pp-title {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 15px;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Default);
    }

    .pp-desc {
        font-size: 1rem;
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Muted);
        line-height: 1.7;
    }

    /* BIG NUMBER FIX - AGGRESSIVE RESET */
    .pp-big-num {
        font-size: 3rem;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 10px;
        display: block;
        
        /* 1. Reset Backgrounds */
        background: none !important;
        background-image: none !important;
        
        /* 2. Reset Clipping */
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        
        /* 3. Force Color */
        color: #10B981 !important;
        -webkit-text-fill-color: #10B981 !important;
        text-fill-color: #10B981 !important;
    }
    
    .pp-big-num span { 
        font-size: 1.5rem; 
        font-weight: 700; 
        color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Muted) !important;
        -webkit-text-fill-color: var(--SmmPanelUS-MaxArden-Programmer-colorText-Muted) !important;
        margin-left: 10px;
        vertical-align: middle;
    }

    /* CTA */
    .SmmPanelUS-Partner-CTA {
        text-align: center;
        margin-top: 50px;
    }
    .btn-partner {
        background: var(--SmmPanelUS-MaxArden-Programmer-colorText-Default);
        color: var(--SmmPanelUS-MaxArden-Programmer-colorBackground-Component);
        padding: 18px 45px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 1.1rem;
        text-decoration: none;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    .btn-partner:hover {
        transform: translateY(-3px);
        background: var(--SmmPanelUS-MaxArden-Programmer-colorPrimary);
        color: #fff;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .SmmPanelUS-Partner-Grid, .SmmPanelUS-Partner-Row2 {
            grid-template-columns: 1fr;
        }
        .SmmPanelUS-Partner-Title { font-size: 2.2rem; }
    }
    
      .eco-seo-text { font-size: 0.85rem; color: var(--Ec-Text-Muted); opacity: 0.7; max-width: 900px; margin: 1rem auto 1rem auto; line-height: 1.5; }