
@media(max-width: 1024px) {
    :root { --section-spacing: 100px; }
    
    h1 { font-size: 3.5rem; }
    header { padding: 20px; }
    
    
    .hamburger { display: block; }
    
    .gallery-track { display: block; width: 100%; }
    .gallery-item { 
        width: 100%; height: 300px; min-height: 300px; 
        margin-bottom: 20px; transform: none !important;
    }
    .gallery-item:last-child { margin-bottom: 0; }
    
    .calc-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    input { text-align: left; width: 100%; }

    
    nav {
        position: fixed;
        top: 0; right: 0;
        height: 100vh; width: 70%; max-width: 300px;
        background: #0a0a0a;
        display: flex; 
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;      
        padding: 80px 30px;           
        gap: 25px;                   
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 102;
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        overflow-y: auto; 
    }

    body.nav-open nav { transform: translateX(0); }

    .nav-link {
        width: 100%;
        display: flex;
        align-items: center; 
        gap: 15px;           
        font-size: 1.1rem;   
        color: #fff;
        text-decoration: none;
        opacity: 0;
        transform: translateY(10px);
        transition: 0.3s;
        padding: 10px 0;    
    }
    
    body.nav-open .nav-link {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .nav-link .nav-icon {
        width: 28px;  
        height: 28px;
        flex-shrink: 0;
        color: var(--primary-light); 
    }

    
    .nav-item.has-subnav > .nav-link {
        display: none !important;
    }

    .nav-item.has-subnav {
        width: 100%;
        display: contents; 
    }

    .subnav {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        width: 100% !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important; 
    }

    .subnav-link {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 1.1rem !important; 
        color: #fff !important;       
        text-decoration: none;
        padding: 10px 0 !important;
        background: transparent !important;
    }

    .subnav-link .nav-icon {
            width: 28px !important;
            height: 28px !important;
            color: var(--primary-light) !important;
            opacity: 1 !important;
            flex-shrink: 0;
    }
    
    .logo2 {
        margin-top: auto; 
        padding-top: 20px;
        opacity: 0.5;
    }
    .logo2 img { height: 30px; }
}
@media(max-width: 1024px) {
    footer {
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
        text-align: center;
    }
    
    footer > div {
        justify-content: center;
        flex-wrap: wrap;
    }
}
.nav-icon {
        width: 20px !important;
        height: 20px!important;
        fill: none!important;
        transition: stroke 0.3s!important;
    }
    .subnav-link:hover {
        color: var(--primary-light) !important;
    }
    #hero {
    padding-bottom: 2rem !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
}

.legal-content {
    margin-top: 0 !important;
    padding-top: 1rem !important;
    margin-bottom: 0 !important;
    padding-bottom: 2rem !important;
}

footer {
    margin-top: 0 !important;
    padding-top: 1rem !important;
}
.hamburger {
    transform: translateY(-3px);
}
html, body {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }
   
.rich-editor-wrapper {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--bg-soft);
    overflow: hidden;
    position: relative;
    transition: border-color 0.2s;
}

.rich-editor-wrapper:focus-within {
    border-color: var(--primary);
}

.editor-toolbar {
    display: flex;
    gap: 8px;
    padding: 10px;
    background: #1e293b;
    border-bottom: 1px solid var(--border);
    align-items: center;
    flex-wrap: wrap;
}

.editor-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #cbd5e1;
    padding: 6px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
}

.editor-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.editor-btn.active { background: var(--primary); color: #fff; }

.editor-separator { width: 1px; height: 20px; background: #475569; margin: 0 4px; }

.rich-editor-content {
    min-height: 300px;
    padding: 16px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    outline: none;
    overflow-y: auto;
}

.rich-editor-content img { max-width: 100%; border-radius: 20px; }


.emoji-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
    padding: 8px;
    background: #1e293b;
    border: 1px solid var(--border);
    border-radius: 20px;
    position: absolute;
    top: 45px;
    left: 10px;
    z-index: 100;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    display: none;
}

.emoji-btn {
    font-size: 1.2rem;
    padding: 4px;
    cursor: pointer;
    text-align: center;
    border-radius: 20px;
}
.emoji-btn:hover { background: rgba(255,255,255,0.1); }


.editor-chip {
    background: #0f74bd;
    color: white;
    padding: 2px 6px;
    border-radius: 20px;
    font-size: 0.85rem;
    user-select: none;
}

.image-picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    padding: 10px 0;
}

.picker-item {
    position: relative;
    aspect-ratio: 1;
    background: #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.picker-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.picker-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.picker-item .label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 0.7rem;
    padding: 4px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.picker-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 15px;
}

.picker-tab {
    padding: 8px 12px;
    cursor: pointer;
    color: var(--muted);
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
}

.picker-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}

#quit-confirm-modal.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    
   
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);          
    -webkit-backdrop-filter: blur(8px);  
    
   
    z-index: 10000 !important;
    align-items: center;
    justify-content: center;
    
   
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}


#quit-confirm-modal[style*="display: flex"] {
    opacity: 1;
}


#quit-confirm-modal .modal-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(0.95);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


#quit-confirm-modal[style*="display: flex"] .modal-box {
    transform: scale(1);
}

.dark #quit-confirm-modal .modal-box {
    background: #1e293b;
    border: 1px solid #334155;
    color: #f8fafc;
}
.v-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
    margin: 0 8px;
}

.dropdown-menu .dd-item:hover {
    background: var(--bg-soft);
}

.dropdown-menu .dd-item:hover {
    background: var(--bg-soft);
}

.drop-zone {
    border: 2px dashed var(--border);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    background-color: var(--bg-soft);
    color: var(--muted);             
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 140px;
    position: relative;
}

.drop-zone:hover {
    border-color: var(--primary);
    background-color: rgba(15, 116, 189, 0.04);
    color: var(--text-main);
}

.drop-zone i {
    font-size: 2.2rem;
    color: var(--primary);
    opacity: 0.8;
    margin-bottom: 4px;
    transition: transform 0.2s ease;
}

.drop-zone:hover i {
    transform: translateY(-3px);
    opacity: 1;
}

.drop-zone span {
    font-size: 0.95rem;
    font-weight: 500;
}


.drop-zone.drag-active {
    border-style: solid;
    background-color: rgba(15, 116, 189, 0.08);
    transform: scale(0.99);
}


.contact-table {
    width: 100%;
    border-collapse: separate; 
    border-spacing: 0;
    margin-top: 15px;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.contact-table thead {
    background-color: var(--bg-soft);
}

.contact-table th {
    text-align: left;
    padding: 12px 16px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.5px;
}

.contact-table td {
    padding: 8px;
    border-bottom: 1px solid var(--border);
}


.contact-table tr:last-child td {
    border-bottom: none;
}


.ce-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-main);
    background: transparent;
    transition: all 0.2s;
}


.ce-input:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 116, 189, 0.1);
    outline: none;
}


.ce-input:hover:not(:focus) {
    background: var(--bg-soft);
}


.ce-row.invalid .ce-input {
    background: #fef2f2;
    border-color: #fecaca;
    color: #ef4444;
}


.ce-btn-icon {
    background: transparent;
    border: none;
    color: var(--muted);
    padding: 8px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.ce-btn-icon:hover {
    background: #fee2e2;
    color: #ef4444;
}



button[onclick="addManualRow()"] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px dashed var(--border);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    transition: all 0.2s;
    margin-top: 12px;
}

button[onclick="addManualRow()"]:hover {
    background: var(--bg-soft);
    border-color: var(--primary);
    transform: translateY(-1px);
}


#seg-dropdown.dropdown-menu {
   
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    animation: slideDownFade 0.15s ease-out;
    padding: 0;
}


.dd-header {
    background: var(--bg-soft);
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 10px 15px 6px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}


.dd-item {
    padding: 10px 15px;
    font-size: 0.85rem;
    color: var(--text-main);
    cursor: pointer;
    transition: background 0.15s, padding-left 0.15s;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dd-item:hover {
    background: rgba(15, 116, 189, 0.05);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 18px;
}


.dd-separator {
    height: 1px;
    background: var(--border);
    margin: 0;
}


@keyframes slideDownFade {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.channel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.channel-card {
    background: var(--bg-soft);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
    color: #fff !important;
}


.channel-card:hover {
    background: #fff;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}


.channel-card.active {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(15, 116, 189, 0.15);
}


.chan-icon {
    width: 60px;
    height: 45px;
    background: rgba(15, 116, 189, 0.1);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.2s;
    
}

.channel-card.active .chan-icon {
    background: var(--primary);
    color: #fff;
}


.chan-info {
    display: flex;
    flex-direction: column;
    color: #fff !important;

}

.chan-name {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
    color: #fff !important;
}

.chan-desc {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 2px;
}


.chan-check {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--primary);
    font-size: 1.1rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.channel-card.active .chan-check {
    opacity: 1;
    transform: scale(1);
}


.dark .channel-card {
    background: #1e293b;
}
.dark .channel-card:hover {
    background: #334155;
    border-color: #475569;
}
.dark .channel-card.active {
    background: #1e293b;
    border-color: var(--primary);
}

.typing-effect::after {
    content: '▋';
    display: inline-block;
    vertical-align: baseline;
    animation: blink 1s step-end infinite;
    color: var(--primary);
    margin-left: 4px;
    font-size: 0.8em;
    opacity: 0.7;
}

@keyframes blink {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0; }
}

.ai-loading {
    display: flex;             
    align-items: center;       
    justify-content: center;   
    gap: 2px;                 
    padding: 30px;
    color: #ffffff;            
}


.ai-heartbeat-icon {
    width: 32px;               
    height: 32px;
    fill: #ffffff;             
    animation: ai-pulse 1.2s infinite ease-in-out;
}


@keyframes ai-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}



#rev-bulk-list::-webkit-scrollbar {
    width: 6px;              
    height: 6px;             
}


#rev-bulk-list::-webkit-scrollbar-track {
    background: transparent; 
    margin: 4px 0;           
}


#rev-bulk-list::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;      
    border-radius: 20px;            
    border: 2px solid transparent;  
    background-clip: content-box;   
    transition: background-color 0.2s ease;
}


#rev-bulk-list::-webkit-scrollbar-thumb:hover {
    background-color: #94a3b8;      
}



.dark #rev-bulk-list::-webkit-scrollbar-thumb {
    background-color: #475569;      
}
.dark #rev-bulk-list::-webkit-scrollbar-thumb:hover {
    background-color: #64748b;      
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 20px;
}

@media (min-width: 992px) {
    #comp-ticket-modal .tz-modal-card {
        max-width: 900px; 
        width: 90%;       
    }

   
    #comp-ticket-modal .wizard-step {
        padding: 0 20px;
    }
}
.ov-grid {
    display: grid;
   
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 16px;
    margin-top: 20px;
}

.ai-console{
    margin-top: 30px;
}


.comp-stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: transform 0.1s;
}

.comp-stat-row:hover {
    transform: translateX(4px);
}

.comp-label {
    width: 80px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
}

.comp-track {
    flex: 1;
    height: 12px;
    background: var(--bg-soft);
    border-radius: 20px;
    overflow: hidden;
}

.comp-bar {
    height: 100%;
    background: #0F74BD;
    border-radius: 20px;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.comp-count {
    width: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    text-align: left;
}


.comp-stat-row:hover .comp-bar {
    background: #0F74BD;
}




.dark #comp-analytics-card h4 {
    color: #ffffff !important;
}


.dark #comp-total-label {
    color: #cbd5e1 !important;
}


.dark .comp-label {
    color: #ffffff !important;
}


.dark .comp-count {
    color: #e2e8f0 !important;
}


.dark #comp-detail-view {
    color: #f1f5f9 !important;
    border-top-color: #334155 !important;
}



#comp-bars-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-stat-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}


.comp-stat-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: #0F74BD;
}


.comp-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #f1f5f9;
    color: #64748b;     
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: 0.2s;
}

.comp-stat-row:hover .comp-icon-box {
    background: #e0f2fe;
    color: #0F74BD;     
}


.comp-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.comp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comp-role-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
}

.comp-val {
    font-weight: 700;
    font-size: 0.9rem;
    color: #0F74BD;
}


.comp-track {
    width: 100%;
    height: 6px;
    background: #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
}


.comp-bar {
    height: 100%;
    border-radius: 20px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}


.std-gradient {
    background: linear-gradient(90deg, #0F74BD 0%, #0F74BD 100%);
    box-shadow: 0 0 10px rgba(15, 116, 189, 0.3);
}


.vip-gradient {
    background: linear-gradient(90deg, #a78bfa 0%, #7c3aed 100%);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}


.comp-action {
    color: #cbd5e1;
    transition: 0.2s;
}

.comp-stat-row:hover .comp-action {
    color: #0F74BD;
    transform: translateX(3px);
}


.dark .comp-stat-row {
    background: #000000;
    border-color: #000000;
}

.dark .comp-stat-row:hover {
    border-color: #000000;
    background: #253346;
}

.dark .comp-icon-box {
    background: #0f172a;
    color: #ffffff;
}

.dark .comp-stat-row:hover .comp-icon-box {
    background: rgba(15, 116, 189, 0.2);
    color: #0F74BD;
}

.dark .comp-role-name {
    color: #f8fafc;
}

.dark .comp-val {
    color: #0F74BD;
}

.dark .comp-track {
    background: #0f172a;
}


@media (min-width: 992px) {
   
    #comp-ticket-modal .role-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
        gap: 20px;
    }

   
    #comp-ticket-modal .role-option {
        padding: 30px 20px;   
        min-height: 150px;    
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

   
    #comp-ticket-modal .role-option i {
        font-size: 2.2rem;    
        margin-bottom: 15px;  
    }

   
    #comp-ticket-modal .role-option div {
        font-size: 1.1rem;    
        font-weight: 600;
    }
}



.promo-summary-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--bg-soft);
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.ps-item { text-align: center; flex: 1; }
.ps-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.ps-val { font-size: 1.1rem; font-weight: 700; color: var(--text-main); }
.ps-val.highlight { color: #f59e0b; }
.ps-divider { width: 1px; height: 30px; background: var(--border); }


.promo-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.promo-rank {
    width: 24px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--muted);
    text-align: center;
}

.promo-row:nth-child(1) .promo-rank { color: #f59e0b; }
.promo-row:nth-child(2) .promo-rank { color: #94a3b8; }
.promo-row:nth-child(3) .promo-rank { color: #b45309; }

.promo-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border);
}

.promo-info { flex: 1; }
.promo-name { font-weight: 600; font-size: 0.9rem; color: var(--text-main); }
.promo-meta { font-size: 0.75rem; color: var(--muted); display: flex; gap: 10px; margin-top: 2px; }

.promo-stats { text-align: right; }
.promo-sales { font-weight: 700; color: var(--text-main); }
.promo-comm { font-size: 0.75rem; color: #f59e0b; font-weight: 600; }


.promo-bar-bg {
    position: absolute;
    bottom: 0;
    left: 50px;
    right: 0;
    height: 3px;
    background: transparent;
}
.promo-bar-fill {
    height: 100%;
    background: #f59e0b;
    opacity: 0.3;
    border-radius: 2px;
}


.dark .promo-summary-bar { background: #1e293b; border-color: #334155; }
.dark .ps-val { color: #fff; }
.dark .promo-row { border-bottom-color: #334155; }
.dark .promo-name { color: #fff; }
.dark .promo-sales { color: #fff; }
.dark .promo-avatar { background: #0f172a; border-color: #334155; }
