/* Global Theme Variables */
:root {
    /* Cosmic Cyberpunk / High-Tech Luxury Palette */
    --bg-dark: #090d16;
    --bg-card: rgba(15, 22, 38, 0.7);
    --border-color: rgba(59, 130, 246, 0.12);
    --border-focus: rgba(14, 165, 233, 0.5);
    
    --primary: #3b82f6; /* Azure Blue */
    --primary-glow: rgba(59, 130, 246, 0.2);
    --primary-dark: #1d4ed8;
    
    --accent-emerald: #10b981; /* Mint Green */
    --accent-emerald-glow: rgba(16, 185, 129, 0.15);
    --accent-cyan: #0ea5e9;
    
    --text-main: #e2e8f0; /* Silver Gray */
    --text-muted: #94a3b8;
    --text-inverse: #090d16;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 20px 45px -12px rgba(0, 0, 0, 0.6);
    --blur-strength: 16px;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    /* backface-visibility on body is a no-op — removed to avoid creating
       unnecessary stacking contexts that slow down compositing */
}

/* Dynamic Glowing Background Blobs */
/* PERF: position:fixed = painted once, doesn't scroll/repaint.
         filter:blur removed — the radial-gradient is already soft visually.
         scale() removed from keyframes — blur+scale forced rasterize every frame. */
.glow-bg-1 {
    position: fixed;
    width: 700px;
    height: 700px;
    top: -15%;
    left: -15%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(7, 9, 19, 0) 65%);
    z-index: -1;
    pointer-events: none;
    transform: translateZ(0);
}

.glow-bg-2 {
    position: fixed;
    width: 600px;
    height: 600px;
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(7, 9, 19, 0) 65%);
    z-index: -1;
    pointer-events: none;
    transform: translateZ(0);
}

/* Core Dashboard Layout */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Sidebar Navigation */
.sidebar {
    width: 280px;
    background: rgba(10, 12, 26, 0.85);
    border-right: 1px solid var(--border-color);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
    z-index: 10;
    /* GPU layer promotion — prevents blur from forcing page repaint on scroll */
    will-change: transform;
    transform: translateZ(0);
    /* Contain layout changes within the sidebar */
    contain: layout style;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 8px 20px -6px var(--primary-glow);
}

.brand-text h1 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.nav-item i {
    font-size: 1.1rem;
}

.nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.03);
}

.nav-item.active {
    color: white;
    background: rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 4px 15px -5px rgba(14, 165, 233, 0.2), inset 0 0 12px rgba(14, 165, 233, 0.05);
}

.partner-card {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.partner-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
}

.partner-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
}

.partner-info p {
    font-size: 0.7rem;
    color: var(--accent-emerald);
    font-weight: 500;
}

/* Main Content Area Layout */
.main-content {
    flex-grow: 1;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    min-width: 0;
    overflow-y: auto;
}

/* Content Header */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.header-title h2, .gradient-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #ffffff, #c7d2fe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-title p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.stats-badge {
    background: var(--accent-emerald-glow);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 30px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    color: #34d399;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.05);
    transition: var(--transition-smooth);
}

.stats-badge:hover {
    background: rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 20px -5px rgba(16, 185, 129, 0.3);
    transform: translateY(-1px);
}

.text-emerald {
    color: #10b981;
}

.text-indigo {
    color: #818cf8;
}

/* blob-drift: scale() removed — filter+scale forced full rasterize every frame.
   Now only uses translate() which stays on compositor thread. */
@keyframes blob-drift {
    0%   { transform: translate(0, 0) translateZ(0); }
    33%  { transform: translate(30px, -50px) translateZ(0); }
    66%  { transform: translate(-20px, 20px) translateZ(0); }
    100% { transform: translate(0, 0) translateZ(0); }
}

.glow-bg-1 {
    animation: blob-drift 18s infinite ease-in-out;
}
.glow-bg-2 {
    animation: blob-drift 24s infinite ease-in-out reverse;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    /* GPU layer promotion so backdrop-filter doesn’t force main-thread repaints */
    transform: translateZ(0);
}

.glass-card:hover {
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.12);
    transform: translateY(-4px);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent-cyan), var(--primary));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.glass-card:hover::after {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.card-header i {
    font-size: 1.3rem;
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Grid Layout for Creator tab */
.grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
}

.form-column {
    position: relative;
    z-index: 2;
}

/* Form Styling */
.campaign-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Campaign Type Toggle Segment Selector */
.campaign-type-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.campaign-type-selector label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.segment-control {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(7, 9, 19, 0.6);
    border: 1px solid var(--border-color);
    padding: 0.35rem;
    border-radius: 12px;
    gap: 0.25rem;
}

.segment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 0.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.segment-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.02);
}

.segment-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.input-wrapper input, .input-wrapper select {
    width: 100%;
    background: rgba(7, 9, 19, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.input-wrapper select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
}

.input-wrapper input:focus, .input-wrapper select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
    background: rgba(7, 9, 19, 0.85);
}

.input-wrapper input:focus + .input-icon {
    color: var(--primary);
}

.input-tip {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Color Picker Styling */
.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(7, 9, 19, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.4rem 0.8rem;
    height: 48px;
}

.color-picker-wrapper input[type="color"] {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: none;
    cursor: pointer;
    outline: none;
}

.color-picker-wrapper input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

.color-picker-wrapper input[type="color"]::-webkit-color-swatch {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.color-picker-wrapper input[type="text"] {
    background: none;
    border: none;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    width: 70px;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.95rem 1.75rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 8px 24px -6px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -4px var(--primary-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Previews Column Styles */
.preview-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    position: sticky;
    top: 2rem;
}

.preview-toggles {
    display: flex;
    flex-wrap: wrap;
    background: rgba(10, 12, 26, 0.6);
    border: 1px solid var(--border-color);
    padding: 0.4rem;
    border-radius: 14px;
    gap: 0.25rem;
    backdrop-filter: blur(8px);
}

.toggle-btn {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: none;
    border: none;
    color: var(--text-muted);
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.toggle-btn.active {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.simulator-wrapper {
    display: none;
    width: 100%;
    justify-content: center;
}

.simulator-wrapper.mobile-active {
    display: flex;
}

/* Phone Frame Mockup */
.phone-frame {
    width: 320px;
    height: 640px;
    background: #0f111a;
    border: 12px solid #23273a;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.phone-speaker {
    position: absolute;
    width: 100px;
    height: 18px;
    background: #23273a;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 100;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0d0f17;
    position: relative;
}

.phone-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #0a0b10;
}

.phone-home {
    position: absolute;
    width: 110px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 100;
    pointer-events: none;
}

/* Standee Card / Flyer Preview */
.flyer-card-preview {
    width: 320px;
    background: white;
    color: #1e293b;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.flyer-card-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary);
}

.flyer-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.flyer-card-header i {
    font-size: 2.2rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.flyer-card-header h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
}

.flyer-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.flyer-card-content p {
    font-size: 0.8rem;
    color: #475569;
    margin-top: 0.4rem;
    font-weight: 500;
}

.flyer-qr-mock {
    width: 160px;
    height: 160px;
    margin: 1.25rem auto;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    position: relative;
}

.flyer-qr-mock img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    padding: 0.5rem;
    background: white;
}

.qr-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
}

.qr-spinner i {
    font-size: 2rem;
    opacity: 0.5;
}

.qr-spinner span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flyer-card-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.stars-row {
    display: flex;
    gap: 0.25rem;
    color: #e2e8f0; /* Default empty stars, we can color it dynamically */
}

.stars-row i {
    font-size: 0.9rem;
}

.flyer-card-footer p {
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* E-commerce Package Insert Card Style */
.flyer-card-preview.type-ecommerce {
    background: linear-gradient(135deg, #0f1626 0%, #090d16 100%) !important;
    color: #f8fafc !important;
    border: 1.5px solid var(--primary) !important;
    box-shadow: 0 25px 65px -10px rgba(14, 165, 233, 0.25) !important;
}

.flyer-card-preview.type-ecommerce::before {
    background: linear-gradient(to right, var(--primary), #a78bfa) !important;
    height: 6px !important;
}

.flyer-card-preview.type-ecommerce .flyer-card-header h4 {
    color: #f8fafc !important;
}

.flyer-card-preview.type-ecommerce .flyer-card-content h3 {
    color: white !important;
}

.flyer-card-preview.type-ecommerce .flyer-card-content p {
    color: #cbd5e1 !important;
}

.flyer-card-preview.type-ecommerce .flyer-qr-mock {
    background: rgba(7, 9, 19, 0.7) !important;
    border-color: rgba(14, 165, 233, 0.3) !important;
}

.flyer-card-preview.type-ecommerce .flyer-card-footer {
    border-top-color: rgba(255, 255, 255, 0.08) !important;
}

.flyer-card-preview.type-ecommerce .stars-row {
    color: #fbbf24 !important; /* Golden stars for inserts! */
}

/* Zomato/Swiggy Delivery Packaging Sticker Style */
.flyer-card-preview.type-delivery {
    background: #ffffff !important;
    color: #1e293b !important;
    border-radius: 50% !important; /* Circle packaging sticker design! */
    aspect-ratio: 1 / 1 !important;
    height: 310px !important;
    width: 310px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    border: 5px double var(--primary) !important;
    padding: 2.2rem !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4) !important;
}

.flyer-card-preview.type-delivery::before {
    display: none !important; /* Hide header strip for stickers */
}

.flyer-card-preview.type-delivery .flyer-card-header {
    margin-top: 0 !important;
    gap: 0.15rem !important;
}

.flyer-card-preview.type-delivery .flyer-card-header i {
    font-size: 1.5rem !important;
}

.flyer-card-preview.type-delivery .flyer-card-header h4 {
    font-size: 0.85rem !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.flyer-card-preview.type-delivery .flyer-card-content h3 {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
}

.flyer-card-preview.type-delivery .flyer-card-content p {
    font-size: 0.65rem !important;
    margin-top: 0.15rem !important;
}

.flyer-card-preview.type-delivery .flyer-qr-mock {
    width: 95px !important;
    height: 95px !important;
    margin: 0.5rem auto !important;
    border-radius: 12px !important;
}

.flyer-card-preview.type-delivery .flyer-qr-mock img {
    border-radius: 8px !important;
    padding: 0.25rem !important;
}

.flyer-card-preview.type-delivery .flyer-card-footer {
    border-top: none !important;
    padding-top: 0 !important;
    gap: 0.1rem !important;
}

.flyer-card-preview.type-delivery .stars-row i {
    font-size: 0.75rem !important;
}

.flyer-card-preview.type-delivery .flyer-card-footer p {
    font-size: 0.6rem !important;
}

/* Tab contents base display toggles */
.tab-content {
    display: none;
    width: 100%;
    animation: fadeIn 0.4s ease-out forwards;
}

.tab-content.active {
    display: block;
}

/* Table Card styles for active campaigns */
.card-full {
    width: 100%;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 1rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.table-container table {
    min-width: 750px;
}

.campaigns-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: rgba(7, 9, 19, 0.4);
    font-size: 0.9rem;
}

.campaigns-table th {
    background: rgba(10, 12, 26, 0.8);
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.campaigns-table td {
    padding: 1.2rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.campaigns-table tbody tr {
    transition: var(--transition-smooth);
}

.campaigns-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
    box-shadow: inset 2px 0 0 var(--primary);
}

.table-biz-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.table-biz-info h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.table-biz-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-cafe { background: rgba(245, 158, 11, 0.12); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.2); }
.badge-dental { background: rgba(59, 130, 246, 0.12); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }
.badge-gym { background: rgba(239, 68, 68, 0.12); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.2); }
.badge-salon { background: rgba(236, 72, 153, 0.12); color: #f472b6; border: 1px solid rgba(236, 72, 153, 0.2); }
.badge-law { background: rgba(139, 92, 246, 0.12); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.2); }
.badge-other { background: rgba(107, 114, 128, 0.12); color: #9ca3af; border: 1px solid rgba(107, 114, 128, 0.2); }

.destination-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destination-link:hover {
    text-decoration: underline;
    color: var(--accent-cyan);
}

.links-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.copy-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-main);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    width: fit-content;
    transition: var(--transition-smooth);
}

.copy-link-btn:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.2);
    color: var(--primary);
}

.actions-cell {
    display: flex;
    gap: 0.5rem;
}

.action-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
}

.action-icon-btn:hover {
    color: white;
}

.action-icon-btn.btn-delete:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem !important;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Sales Academy Tab Styles */
.academy-card {
    padding: 2.5rem;
}

.academy-content {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    margin-top: 1rem;
}

.academy-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.academy-nav {
    text-align: left;
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    border: 1px solid transparent;
    background: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.academy-nav:hover {
    color: white;
    background: rgba(255, 255, 255, 0.02);
}

.academy-nav.active {
    background: rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.25);
    color: var(--accent-cyan);
}

.academy-body {
    padding: 0.5rem 1rem;
}

.academy-body h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
}

.playbook-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-left: 1.25rem;
}

.playbook-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
}

.playbook-list li strong {
    color: white;
}

.playbook-list ul {
    margin-top: 0.5rem;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.playbook-list ul li {
    font-size: 0.88rem;
    color: var(--text-muted);
}

code {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.85rem;
    color: #f472b6;
}

.code-box {
    margin-top: 1.25rem;
    background: #030712;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    overflow-x: auto;
}

.code-box pre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.5;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #0f172a;
    border: 1px solid rgba(16, 185, 129, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10000;
    transform: translateY(150%);
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.toast i {
    color: var(--accent-emerald);
    font-size: 1.2rem;
}

.toast span {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.toast.show {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Local Warning Banner Style */
.local-warning-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.local-warning-banner i {
    font-size: 1.15rem;
    margin-top: 0.1rem;
    color: #fbbf24;
}

.local-warning-banner strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: #fef08a;
}

.local-warning-banner code {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #facc15;
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    font-family: monospace;
}

/* ========================================================
   Passcode Security Gate
   ======================================================== */
.passcode-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(7, 9, 19, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    transform: translateZ(0);
}

.passcode-gate.unlocked {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.passcode-card {
    background: rgba(15, 22, 38, 0.85);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 440px;
    text-align: center;
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(14, 165, 233, 0.08);
    position: relative;
    overflow: hidden;
    animation: slideUpFade 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(40px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.passcode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
}

.pass-icon {
    margin: 0 auto 1.5rem auto;
    width: 64px;
    height: 64px;
    font-size: 1.8rem;
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.3);
}

.passcode-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.passcode-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.pass-input-wrapper {
    display: flex;
    gap: 0.75rem;
}

@media (max-width: 480px) {
    .pass-input-wrapper {
        flex-direction: column;
    }
}

.pass-input-wrapper input {
    flex-grow: 1;
    background: rgba(7, 9, 19, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: white;
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-align: center;
    transition: var(--transition-smooth);
    outline: none;
}

.pass-input-wrapper input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.pass-btn {
    padding: 1rem 1.5rem;
}

.passcode-error {
    color: #ef4444 !important;
    font-size: 0.85rem !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.passcode-error.show {
    opacity: 1;
}

/* ========================================================
   Mobile-Responsive Elements & Sidebar Navigation Drawer
   ======================================================== */

/* Desktop defaults: Hide mobile-only components */
.mobile-header {
    display: none;
}

.sidebar-close {
    display: none;
}

@media (max-width: 1024px) {
    /* Mobile Header Top Bar */
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(10, 12, 26, 0.95);
        border-bottom: 1px solid var(--border-color);
        padding: 0.85rem 1.25rem;
        position: sticky;
        top: 0;
        z-index: 100;
        backdrop-filter: blur(var(--blur-strength));
        -webkit-backdrop-filter: blur(var(--blur-strength));
        width: 100%;
        height: 70px;
    }

    .mobile-header .brand {
        gap: 0.75rem;
    }

    .mobile-header .brand-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        font-size: 1.15rem;
    }

    .mobile-header .brand-text h1 {
        font-size: 1.15rem;
    }

    .mobile-header .brand-text span {
        font-size: 0.65rem;
        display: none; /* Hide subtitle to keep header compact */
    }

    /* Hamburger Menu Button */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-color);
        color: white;
        font-size: 1.25rem;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        cursor: pointer;
        transition: var(--transition-smooth);
    }

    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--primary);
    }

    /* Collapsible Navigation Sidebar Drawer - Matching sales.html */
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 270px;
        height: 100dvh;
        background: rgba(9, 13, 22, 0.98);
        border-right: 1.5px solid rgba(14, 165, 233, 0.15);
        padding: 2rem 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        z-index: 1100;
        transform: translateX(-100%) translateZ(0);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 8px 0 40px rgba(0,0,0,0.6);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        will-change: transform;
    }

    .sidebar.open {
        transform: translateX(0);

    }

    /* Sidebar Mobile Close Button */
    .sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-color);
        color: var(--text-muted);
        font-size: 1.1rem;
        width: 34px;
        height: 34px;
        border-radius: 8px;
        cursor: pointer;
        position: absolute;
        right: 1rem;
        top: 2rem;
        transition: var(--transition-smooth);
    }

    .sidebar-close:hover {
        color: white;
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(239, 68, 68, 0.4);
    }

    /* Dimmer Overlay for Sidebar drawer */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(9, 13, 22, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1050;
    }

    .sidebar-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

    /* Fluid Stacked Dashboard Layout */
    .dashboard-container {
        flex-direction: column;
        min-height: calc(100vh - 70px);
        width: 100%;
    }

    .main-content {
        padding: 1.5rem 1rem;
        max-width: 100%;
        gap: 1.5rem;
    }

    /* Content Header Reflow */
    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 1.25rem;
    }

    .header-title h2 {
        font-size: 1.5rem;
    }

    .header-title p {
        font-size: 0.85rem;
    }

    .stats-badge {
        align-self: flex-start;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    /* Creator Tab Grid Stack */
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .glass-card {
        padding: 1.5rem 1.25rem;
        border-radius: 18px;
    }

    /* Center Simulator Previews on Mobile */
    .preview-column {
        position: static;
        width: 100%;
        gap: 1.25rem;
    }

    .phone-frame {
        width: 100%;
        max-width: 320px;
        height: 600px;
    }

    .flyer-card-preview {
        width: 100%;
        max-width: 320px;
    }

    /* Sales Playbook Academy Reflow */
    .academy-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .academy-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--border-color);
        gap: 0.4rem;
        scrollbar-width: thin;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .academy-tabs::-webkit-scrollbar {
        height: 4px;
    }

    .academy-tabs::-webkit-scrollbar-thumb {
        background: var(--border-color);
        border-radius: 2px;
    }

    .academy-nav {
        white-space: nowrap;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .academy-body {
        padding-top: 0.5rem;
    }

    /* Code boxes sizing on mobile */
    .code-box pre {
        font-size: 0.75rem;
        padding: 1rem;
        overflow-x: auto;
    }

    /* Grid columns inside creator form */
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Local warning banner padding */
    .local-warning-banner {
        padding: 0.75rem 0.9rem;
    }

    /* Segment Control vertical stacking for narrow devices */
    @media (max-width: 580px) {
        .segment-control {
            grid-template-columns: 1fr !important;
        }
    }

    /* Passcode card size reduction for small devices */
    @media (max-width: 480px) {
        .passcode-card {
            padding: 2rem 1.5rem !important;
        }
        .passcode-card h2 {
            font-size: 1.5rem !important;
        }
    }
}


/* Modal Overlay for Client Form */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 18px;
    width: 90%;
    max-width: 420px;
    position: relative;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(var(--blur-strength));
}

.modal-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-muted);
}

/* Clients table */
.clients-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}
.clients-table th, .clients-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    color: var(--text-main);
}
.clients-table th {
    background: rgba(10, 12, 26, 0.8);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.client-actions .btn {
    margin-right: 0.4rem;
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
}
.empty-state {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ==========================================================================
   July Content Calendar & Instagram Simulator Dashboard Styles
   ========================================================================== */

.social-dashboard-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-top: 1.5rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .social-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Calendar Column */
.social-calendar-card {
    max-height: 800px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 1.25rem !important;
}

.social-calendar-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.social-calendar-header .header-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.calendar-filters {
    display: flex;
    gap: 0.4rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.calendar-posts-list {
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* Custom Scrollbar for posts list */
.calendar-posts-list::-webkit-scrollbar {
    width: 6px;
}
.calendar-posts-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}
.calendar-posts-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
.calendar-posts-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Calendar Post Card Item */
.calendar-post-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.calendar-post-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.calendar-post-item.active {
    background: rgba(59, 130, 246, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.25);
}

.post-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.calendar-post-item.active .post-item-icon {
    background: var(--primary-gradient);
    color: #fff;
}

.post-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-grow: 1;
    min-width: 0;
}

.post-item-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-item-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.post-meta-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-niche-cafe { background: rgba(217, 119, 6, 0.15); color: #fbbf24; }
.badge-niche-clinic { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.badge-niche-zomato { background: rgba(220, 38, 38, 0.15); color: #f87171; }
.badge-niche-amazon { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.badge-niche-salon { background: rgba(236, 72, 153, 0.15); color: #f472b6; }
.badge-niche-aegis { background: rgba(16, 185, 129, 0.15); color: #34d399; }

.badge-format-reel { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }
.badge-format-carousel { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }

.post-item-day {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: auto;
    font-weight: 500;
}

/* Instagram Simulator Column */
.social-simulator-card {
    padding: 1.25rem !important;
}

.social-simulator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.social-simulator-header .header-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.simulator-actions {
    display: flex;
    gap: 0.5rem;
}

.simulator-body {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

@media (max-width: 768px) {
    .simulator-body {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    #sim-overlay-modal {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 2000;
        background: rgba(5, 8, 18, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        overflow-y: auto;
        padding: 1rem;
        padding-bottom: 2rem;
    }
    #sim-overlay-modal.open {
        display: flex;
        animation: fadeIn 0.3s ease;
    }
    .sim-overlay-header {
        width: 100%;
        max-width: 480px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        margin-bottom: 1rem;
    }
    .sim-overlay-header h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: white;
        margin: 0;
    }
    .sim-overlay-close {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(255,255,255,0.04);
        color: #94a3b8;
        font-size: 1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    .sim-overlay-close:hover {
        color: white;
        border-color: rgba(239, 68, 68, 0.4);
    }
    .sim-overlay-body {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Convert tables to cards on mobile to prevent swiping */
    .table-container {
        border: none;
        background: transparent;
    }
    .campaigns-table, .campaigns-table tbody, .campaigns-table tr, .campaigns-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .campaigns-table thead {
        display: none;
    }
    .campaigns-table tr {
        margin-bottom: 1rem;
        background: rgba(10, 12, 26, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 0.5rem;
    }
    .campaigns-table td {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1rem 0.75rem;
        text-align: left;
    }
    .campaigns-table td:last-child {
        border-bottom: none;
    }
    .campaigns-table td::before {
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--text-muted);
        padding-right: 1rem;
        text-align: left;
    }
    
    /* Data labels for specific tables */
    #campaign-list-body td:nth-child(1)::before { content: "Business Name"; }
    #campaign-list-body td:nth-child(2)::before { content: "Category"; }
    #campaign-list-body td:nth-child(3)::before { content: "Destination"; }
    #campaign-list-body td:nth-child(4)::before { content: "Billing Status"; }
    #campaign-list-body td:nth-child(5)::before { content: "Actions"; }
    
    #admin-payouts-body td:nth-child(1)::before { content: "Client Business"; }
    #admin-payouts-body td:nth-child(2)::before { content: "Sales Partner"; }
    #admin-payouts-body td:nth-child(3)::before { content: "Commission"; }
    #admin-payouts-body td:nth-child(4)::before { content: "UPI ID"; }
    #admin-payouts-body td:nth-child(5)::before { content: "Status"; }
    #admin-payouts-body td:nth-child(6)::before { content: "Action"; }
    
    #clients-tbody td:nth-child(1)::before { content: "Name"; }
    #clients-tbody td:nth-child(2)::before { content: "Email"; }
    #clients-tbody td:nth-child(3)::before { content: "Monthly Amount"; }
    #clients-tbody td:nth-child(4)::before { content: "Description"; }
    #clients-tbody td:nth-child(5)::before { content: "Actions"; }
    
    #agents-tbody td:nth-child(1)::before { content: "Name"; }
    #agents-tbody td:nth-child(2)::before { content: "User ID"; }
    #agents-tbody td:nth-child(3)::before { content: "Password"; }
    #agents-tbody td:nth-child(4)::before { content: "UPI ID"; }
    #agents-tbody td:nth-child(5)::before { content: "Actions"; }
    
    .links-column {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.5rem;
    }
}

/* Phone Mockup Frame */
.instagram-frame-wrapper {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.instagram-frame {
    width: 320px;
    height: 570px;
    border-radius: 36px;
    background: #000;
    border: 10px solid #1a1a1a;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
}

.instagram-header {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.85rem;
    border-bottom: 1px solid #121212;
    background: #000;
    font-size: 0.85rem;
}

.ig-user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ig-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 1.5px;
    position: relative;
}

.ig-avatar::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #000;
    border: 2px solid #000;
    box-sizing: border-box;
}

.ig-username-details {
    display: flex;
    flex-direction: column;
}

.ig-username {
    font-weight: 600;
    font-size: 0.78rem;
}

.ig-location {
    font-size: 0.65rem;
    color: #a8a8a8;
}

.instagram-header i {
    font-size: 0.9rem;
    color: #dbdbdb;
    cursor: pointer;
}

/* Instagram Media Display Block */
.instagram-content-area {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #0d111b;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carousel Deck */
.carousel-deck {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* Slide Designs (High-Fidelity CSS Cards) */
.slide-canvas {
    width: 300px;
    height: 300px;
    box-sizing: border-box;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    user-select: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Design System Backgrounds */
.slide-bg-default {
    background: #0A0F1E;
    color: #fff;
}

.slide-glow-blob-1, .slide-glow-blob-2 {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    /* filter:blur removed — use radial-gradient for soft edges instead,
       which is GPU-composited and free at scroll time */
    opacity: 0.2;
    z-index: 0;
    transform: translateZ(0);
}

.slide-glow-blob-1 {
    top: -40px;
    right: -40px;
    background: radial-gradient(circle, #00F2FE 0%, transparent 70%);
}

.slide-glow-blob-2 {
    bottom: -50px;
    left: -40px;
    background: radial-gradient(circle, #00FF87 0%, transparent 70%);
}

.slide-content-wrapper {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.slide-tag {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #00F2FE;
    text-transform: uppercase;
}

.slide-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0.5rem 0;
    color: #fff;
}

.slide-heading span.highlight-green {
    color: #00FF87;
}

.slide-heading span.highlight-red {
    color: #FF3366;
}

.slide-heading span.highlight-yellow {
    color: #FFB300;
}

.slide-body-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem;
    font-size: 0.68rem;
    line-height: 1.4;
    color: #e2e8f0;
    margin-top: 0.15rem;
}

.slide-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.5rem;
    color: #94a3b8;
    z-index: 1;
}

.slide-footer-brand {
    letter-spacing: 1.5px;
    color: #fff;
}

.slide-footer-btn {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: #00F2FE;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.58rem;
}

/* Custom Visual Slide Layouts */
.comparison-layout {
    display: flex;
    gap: 0.5rem;
    margin: 0.4rem 0;
}

.comparison-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
}

.comparison-card.green {
    border-color: rgba(0, 255, 135, 0.25);
    background: rgba(0, 255, 135, 0.02);
}

.comparison-card.red {
    border-color: rgba(255, 51, 102, 0.25);
    background: rgba(255, 51, 102, 0.02);
}

.comparison-title {
    font-size: 0.58rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.comparison-value {
    font-size: 0.85rem;
    font-weight: 800;
    margin: 0.25rem 0;
}

.comparison-value.green { color: #00FF87; }
.comparison-value.red { color: #FF3366; }

.comparison-desc {
    font-size: 0.58rem;
    color: #cbd5e1;
    line-height: 1.25;
}

.star-rating-mock {
    color: #FFB300;
    font-size: 0.7rem;
    margin-bottom: 0.15rem;
}

/* Feature Grid inside slide */
.slide-grid-box {
    display: grid;
    grid-template-rows: repeat(3, auto);
    gap: 0.4rem;
    margin: 0.4rem 0;
}

.slide-grid-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    font-size: 0.68rem;
}

.slide-grid-item i {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.slide-grid-item i.green { color: #00FF87; }
.slide-grid-item i.cyan { color: #00F2FE; }

.chart-visual-box {
    margin: 0.4rem 0;
    height: 70px;
    position: relative;
    border-bottom: 1.5px solid rgba(255,255,255,0.15);
    border-left: 1.5px solid rgba(255,255,255,0.15);
}

.chart-curve-green {
    width: 60%;
    height: 100%;
    border-top: 2.5px solid #00FF87;
    border-right: 2.5px solid #00FF87;
    border-radius: 0 50px 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    box-shadow: 0 0 10px rgba(0, 255, 135, 0.15);
}

.chart-curve-red {
    width: 40%;
    height: 35px;
    border-top: 2.5px solid #FF3366;
    border-left: 2.5px solid #FF3366;
    border-radius: 20px 0 0 0;
    position: absolute;
    bottom: 0;
    right: 0;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.15);
}

.chart-label {
    position: absolute;
    font-size: 0.52rem;
    font-weight: 700;
    color: #94a3b8;
}

/* Mockup Slide */
.mockup-standee-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin: 0.25rem 0;
    background: radial-gradient(circle, rgba(0,242,254,0.06) 0%, transparent 70%);
}

.mockup-standee-graphic {
    width: 70px;
    height: 90px;
    background: #121214;
    border: 3px solid #00F2FE;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 10px rgba(0,242,254,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 0.35rem;
    box-sizing: border-box;
}

.mock-qr-code {
    width: 38px;
    height: 38px;
    background: #fff;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-qr-img {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#000 25%, transparent 25%), radial-gradient(#000 25%, transparent 25%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
}

.mock-brand-lbl {
    font-size: 0.4rem;
    letter-spacing: 1px;
    color: #94a3b8;
    text-transform: uppercase;
}

/* Split Path Visual */
.split-path-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.5rem 0;
    position: relative;
}

.split-node {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.35rem 0.5rem;
    font-size: 0.58rem;
    text-align: center;
    z-index: 2;
}

.split-arrow {
    flex-grow: 1;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    margin: 0 0.25rem;
}

.split-arrow.green { background: #00FF87; }
.split-arrow.red { background: #FF3366; }

.split-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2.5px;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid rgba(255, 255, 255, 0.5);
    border-right: 1.5px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
}

.split-arrow.green::after { border-color: #00FF87; }
.split-arrow.red::after { border-color: #FF3366; }

/* Reel Storyboard Player */
.reel-storyboard-deck {
    width: 100%;
    height: 100%;
    position: relative;
}

.reel-cover-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) contrast(1.1);
    position: absolute;
    top: 0;
    left: 0;
    transition: filter 0.5s ease;
}

.reel-cover-img.playing {
    filter: brightness(0.35) blur(4px);
}

.reel-overlay-text {
    position: absolute;
    width: 80%;
    left: 10%;
    bottom: 110px;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.82rem;
    line-height: 1.35;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 15px rgba(59, 130, 246, 0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 15;
}

.reel-overlay-text.active {
    opacity: 1;
    transform: translateY(0);
}

.reel-overlay-text span.highlight {
    color: #00F2FE;
}

.reel-play-hud {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.reel-play-hud:hover {
    background: rgba(59, 130, 246, 0.3);
    border-color: #00F2FE;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Swipe Controls overlay */
.ig-dots-indicator {
    display: flex;
    gap: 3px;
    align-items: center;
}

.ig-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #555;
    transition: all 0.3s ease;
}

.ig-dot.active {
    background: #00F2FE;
    transform: scale(1.25);
}

.ig-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    z-index: 25;
    transition: all 0.3s ease;
}

.ig-arrow-btn:hover {
    background: rgba(0, 242, 254, 0.3);
    border-color: #00F2FE;
}

.ig-arrow-btn.left-arrow { left: 8px; }
.ig-arrow-btn.right-arrow { right: 8px; }

/* IG Footer elements */
.instagram-footer {
    padding: 0.65rem 0.85rem;
    background: #000;
    font-size: 0.72rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.4rem;
    border-top: 1px solid #121212;
}

.ig-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ig-left-actions {
    display: flex;
    gap: 0.85rem;
    font-size: 1.1rem;
}

.ig-left-actions i {
    cursor: pointer;
    transition: color 0.2s ease;
}

.ig-left-actions i:hover {
    color: #FF3366;
}

.ig-likes strong {
    font-weight: 600;
}

.ig-caption-container {
    max-height: 80px;
    overflow-y: auto;
    line-height: 1.35;
}

.ig-caption-container .ig-username {
    margin-right: 0.25rem;
}

.ig-caption-text {
    color: #f5f5f5;
    word-break: break-word;
    white-space: pre-line;
}

/* Simulator Sidebar Controls Panel */
.simulator-controls {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 400px;
}

@media (max-width: 768px) {
    .simulator-controls {
        max-width: 100%;
        width: 100%;
    }
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-group label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.tone-selector-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.tone-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tone-btn:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.15);
}

.tone-btn.active {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.15);
}

.settings-toggles {
    display: flex;
    gap: 0.5rem;
}

.settings-btn {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.settings-btn:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.15);
}

.settings-btn.active {
    background: rgba(16, 185, 129, 0.12);
    border-color: #10b981;
    color: #34d399;
}

.text-copier-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.85rem;
}

.caption-textarea {
    width: 100%;
    height: 140px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.65rem;
    color: #cbd5e1;
    font-size: 0.75rem;
    line-height: 1.4;
    resize: none;
    font-family: inherit;
    margin-bottom: 0.75rem;
}

.caption-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ----------------------------------------------------
   NEO-BRUTALIST DESIGN SYSTEM (METRIX MEDIA BRANDING)
   ---------------------------------------------------- */

/* Override text-shadow for brutalist slides */
.slide-bg-brutal-light, .slide-bg-brutal-light *,
.slide-bg-brutal-dark, .slide-bg-brutal-dark * {
    text-shadow: none !important;
}

/* 1. BRUTALIST LIGHT (Metrix Cyan background + White card + Folder tab) */
.slide-bg-brutal-light {
    background-color: #0ea5e9;
    background-image: radial-gradient(rgba(0, 0, 0, 0.16) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    color: #000000 !important;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 300px;
    height: 300px;
    padding: 1.25rem 1rem !important;
    position: relative;
    overflow: hidden;
}

.brutal-card-light {
    background: #ffffff;
    border: 3.5px solid #000000;
    box-shadow: 6px 6px 0px #000000;
    border-radius: 16px;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90%;
    min-height: 190px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.brutal-card-tab {
    position: absolute;
    top: -22px;
    right: 12px;
    background: #000000;
    color: #0ea5e9;
    font-weight: 900;
    font-size: 0.55rem;
    padding: 2px 8px 3px 8px;
    border-radius: 6px 6px 0px 0px;
    border: 3px solid #000000;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 3px;
    letter-spacing: 1.5px;
}

.brutal-tag-light {
    font-size: 0.52rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    align-self: flex-start;
}

.brutal-heading-light {
    font-size: 0.85rem;
    font-weight: 900;
    line-height: 1.25;
    color: #000000;
    text-transform: uppercase;
    margin: 0.15rem 0;
    width: 100%;
    text-align: center;
}

.brutal-heading-light span.highlight-yellow,
.brutal-highlight-yellow {
    background: #10b981; /* Brand Growth Green */
    color: #000000;
    padding: 0px 5px;
    font-weight: 900;
    display: inline;
}

.brutal-heading-light span.highlight-purple,
.brutal-highlight-purple {
    background: #3b82f6; /* Brand Primary Blue */
    color: #ffffff;
    padding: 0px 5px;
    font-weight: 900;
    display: inline;
}

.brutal-heading-light span.highlight-green,
.brutal-highlight-green {
    background: #10b981; /* Brand Green */
    color: #000000;
    padding: 0px 5px;
    font-weight: 900;
    display: inline;
}

.brutal-underline-orange {
    border-bottom: 3px solid #10b981;
    padding-bottom: 1px;
}

.brutal-underline-black {
    border-bottom: 3.5px solid #000000;
    padding-bottom: 1px;
    font-weight: 900;
}

.brutal-body-light {
    font-size: 0.58rem;
    line-height: 1.35;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0.35rem;
    width: 100%;
}

.brutal-paper-badge {
    background: #ffffff;
    border: 3px solid #000000;
    box-shadow: 4px 4px 0px #000000;
    padding: 0.35rem 0.5rem;
    font-size: 0.55rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 90%;
    margin: 0.45rem auto 0 auto;
    text-align: center;
    box-sizing: border-box;
    transform: rotate(-1deg);
    color: #000000;
    z-index: 1;
}

.brutal-paper-badge span.purple-block {
    background: #3b82f6; /* Brand Blue override */
    color: #ffffff;
    padding: 0px 4px;
    font-weight: 900;
}

/* Brutalist Light Sub-elements */
.brutal-comp-box {
    display: flex;
    gap: 0.4rem;
    width: 100%;
    margin-top: 0.4rem;
}

.brutal-comp-card {
    flex: 1;
    border: 2.5px solid #000000;
    padding: 0.35rem;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 3px 3px 0px #000000;
    color: #000000;
}

.brutal-comp-title {
    font-size: 0.48rem;
    font-weight: 900;
    color: #64748b;
    text-transform: uppercase;
}

.brutal-comp-value {
    font-size: 0.75rem;
    font-weight: 900;
    margin: 0.15rem 0;
}

.brutal-comp-value.red { color: #ef4444; }
.brutal-comp-value.green { color: #10b981; }

.brutal-comp-desc {
    font-size: 0.46rem;
    color: #000000;
    font-weight: 800;
    line-height: 1.2;
}

.brutal-grid-box {
    display: grid;
    grid-template-rows: repeat(3, auto);
    gap: 0.3rem;
    width: 100%;
    margin-top: 0.4rem;
}

.brutal-grid-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 2.5px solid #000000;
    background: #ffffff;
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
    font-size: 0.52rem;
    color: #000000;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 2px 2px 0px #000000;
}

.brutal-grid-item i {
    font-size: 0.65rem;
}

.brutal-grid-item i.green { color: #10b981; }
.brutal-grid-item i.cyan { color: #0ea5e9; }

.brutal-split-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    margin-top: 0.4rem;
}

.brutal-split-node {
    border: 2.5px solid #000000;
    background: #ffffff;
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
    font-size: 0.5rem;
    color: #000000;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 2px 2px 0px #000000;
}

.brutal-split-arrow {
    width: 18px;
    height: 3px;
    background: #000000;
    position: relative;
}

.brutal-split-arrow::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -3px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #000000;
}

.brutal-chart-box {
    border: 2.5px solid #000000;
    background: #ffffff;
    padding: 0.35rem;
    border-radius: 8px;
    box-shadow: 3px 3px 0px #000000;
    height: 55px;
    width: 100%;
    margin-top: 0.4rem;
    box-sizing: border-box;
}

.brutal-chart-bar-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    width: 100%;
}

.brutal-chart-bar {
    width: 35px;
    background: #3b82f6; /* Brand Blue */
    border: 2px solid #000000;
    border-bottom: none;
    box-shadow: 1.5px 0px 0px #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.45rem;
    font-weight: 900;
    color: #ffffff;
}

.brutal-chart-bar.green { background: #10b981; color: #000; }
.brutal-chart-bar.red { background: #ef4444; color: #fff; }


/* 2. BRUTALIST DARK (Metrix Navy background + Cyan hazard stripes + Green/Cyan text) */
.slide-bg-brutal-dark {
    background-color: #090d16; /* Brand Deep Background */
    background-image: 
        radial-gradient(rgba(14, 165, 233, 0.12) 1.5px, transparent 1.5px),
        radial-gradient(circle at center, rgba(16, 185, 129, 0.04) 0%, transparent 80%);
    background-size: 16px 16px, 100% 100%;
    color: #ffffff !important;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 300px;
    height: 300px;
    padding: 1.5rem !important;
    position: relative;
    overflow: hidden;
}

.brutal-dark-splatter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    background-image: radial-gradient(circle at 20% 30%, #0ea5e9 0%, transparent 40%),
                      radial-gradient(circle at 80% 70%, #10b981 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.brutal-hazard-top {
    height: 8px;
    background: repeating-linear-gradient(
        -45deg,
        #0ea5e9, /* Brand Cyan */
        #0ea5e9 8px,
        #000000 8px,
        #000000 16px
    );
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.brutal-hazard-bottom {
    height: 8px;
    background: repeating-linear-gradient(
        -45deg,
        #0ea5e9, /* Brand Cyan */
        #0ea5e9 8px,
        #000000 8px,
        #000000 16px
    );
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.brutal-hazard-right {
    width: 8px;
    background: repeating-linear-gradient(
        45deg,
        #0ea5e9, /* Brand Cyan */
        #0ea5e9 8px,
        #000000 8px,
        #000000 16px
    );
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
}

.brutal-dark-slide-number {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffffff;
    align-self: flex-start;
    z-index: 2;
}

.brutal-dark-outline-bg-text {
    font-size: 2.8rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(14, 165, 233, 0.08); /* Brand Cyan */
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    z-index: 1;
    letter-spacing: 2px;
}

.brutal-dark-content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    margin: auto 0;
}

.brutal-heading-dark {
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.brutal-heading-dark span.highlight-gold,
.brutal-dark-gold {
    color: #0ea5e9; /* Brand Cyan */
    font-weight: 900;
}

.brutal-large-gold-text {
    font-size: 2rem;
    font-weight: 900;
    color: #0ea5e9; /* Brand Cyan */
    line-height: 1;
    letter-spacing: -0.5px;
    margin: 0.25rem 0;
    text-transform: uppercase;
}

.brutal-body-dark {
    font-size: 0.58rem;
    line-height: 1.35;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0.35rem;
}

/* Brutalist Dark Sub-elements */
.brutal-dark-warning-box {
    border: 2px solid #ef4444;
    background: rgba(239, 68, 68, 0.08);
    padding: 0.35rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.45rem;
    border-radius: 4px;
}

.brutal-dark-warning-icon {
    color: #ef4444;
    font-size: 0.8rem;
}

.brutal-dark-warning-text {
    font-size: 0.52rem;
    font-weight: 800;
    color: #ef4444;
    text-transform: uppercase;
    line-height: 1.25;
}

.brutal-dark-comp-box {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.45rem;
}

.brutal-dark-comp-card {
    flex: 1;
    border: 2px solid #ffffff;
    background: #000000;
    padding: 0.4rem;
    text-align: center;
    border-radius: 0px;
}

.brutal-dark-comp-card.profitable {
    border-color: #10b981; /* Brand Growth Green */
}

.brutal-dark-comp-title {
    font-size: 0.48rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
}

.brutal-dark-comp-value {
    font-size: 0.9rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0.15rem 0;
}

.brutal-dark-comp-card.profitable .brutal-dark-comp-value {
    color: #10b981; /* Brand Growth Green */
}

.brutal-dark-comp-desc {
    font-size: 0.45rem;
    color: #cbd5e1;
    text-transform: uppercase;
}

.brutal-dark-list-box {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.4rem;
    width: 100%;
}

.brutal-dark-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #ffffff;
    background: #000000;
    color: #ffffff;
    padding: 0.35rem 0.5rem;
    font-size: 0.52rem;
    font-weight: 800;
    text-transform: uppercase;
}

.brutal-dark-list-item.gold {
    border-color: #0ea5e9; /* Brand Cyan */
}

.brutal-dark-list-content {
    display: flex;
    align-items: center;
}

.brutal-dark-list-icon {
    font-size: 0.7rem;
    margin-right: 0.4rem;
    color: #0ea5e9; /* Brand Cyan */
    display: flex;
    align-items: center;
}

.brutal-dark-list-num {
    border-left: 2px solid #ffffff;
    padding-left: 0.4rem;
    font-size: 0.62rem;
    font-weight: 900;
    margin-left: 0.4rem;
    line-height: 1;
}

.brutal-dark-list-item.gold .brutal-dark-list-num {
    border-left-color: #0ea5e9;
}

.brutal-dark-chart {
    border-left: 1.5px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 8px 8px;
    height: 52px;
    margin-top: 0.4rem;
    position: relative;
    width: 100%;
}

.brutal-dark-chart-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.brutal-dark-chart-label {
    position: absolute;
    font-size: 0.45rem;
    font-weight: 900;
    text-transform: uppercase;
}

/* ----------------------------------------------------
   VECTOR GRAPHICS FOR SLIDES (COMPLIANT & ON-BRAND)
   ---------------------------------------------------- */

.mock-graphics-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.35rem 0;
    z-index: 2;
}

/* Slide 1: Phone Scan & QR Standee */
.phone-scan-mockup {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    height: 72px;
    position: relative;
}

.qr-stand-graphic {
    width: 48px;
    height: 62px;
    background: #ffffff;
    border: 2.5px solid #000000;
    box-shadow: 3px 3px 0px #000000;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3px;
    box-sizing: border-box;
}

.qr-stand-header {
    font-size: 4px;
    font-weight: 900;
    color: #0ea5e9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.qr-stand-code-img {
    font-size: 16px;
    color: #000000;
    margin: 1px 0;
}

.qr-stand-stars-row {
    font-size: 4px;
    color: #FFA800;
    letter-spacing: 0.5px;
}

.phone-screen-graphic {
    width: 42px;
    height: 70px;
    background: #090d16;
    border: 2.5px solid #3b82f6;
    box-shadow: 2.5px 2.5px 0px #000000;
    border-radius: 6px;
    padding: 3px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.phone-notch-graphic {
    width: 12px;
    height: 2.5px;
    background: #3b82f6;
    border-radius: 2px;
    position: absolute;
    top: 1.5px;
}

.phone-portal-logo {
    font-size: 4px;
    font-weight: 900;
    color: #10b981;
}

.phone-portal-stars {
    display: flex;
    gap: 0.5px;
    color: #10b981;
    font-size: 4px;
}

.phone-portal-btn {
    background: #10b981;
    color: #000000;
    font-size: 4px;
    font-weight: 900;
    padding: 2px 4px;
    border-radius: 1.5px;
}

/* Slide 2: Review Cards (Friction) */
.review-cards-mockup {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.mock-review-card {
    flex: 1;
    background: #ffffff;
    border: 2.5px solid #000000;
    border-radius: 8px;
    padding: 0.35rem;
    box-shadow: 2.5px 2.5px 0px #000000;
    box-sizing: border-box;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 58px;
}

.mock-review-card.red-border {
    border-color: #ef4444;
    box-shadow: 2.5px 2.5px 0px #ef4444;
}

.mock-review-card.green-border {
    border-color: #10b981;
    box-shadow: 2.5px 2.5px 0px #10b981;
}

.mock-review-user {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 2px;
}

.mock-review-avatar {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    border: 1px solid #000000;
}

.mock-review-avatar.red { background: #ef4444; }
.mock-review-avatar.green { background: #10b981; }

.mock-review-name {
    font-size: 4.5px;
    font-weight: 900;
    color: #000000;
}

.mock-review-stars {
    font-size: 4.5px;
    color: #FFA800;
    line-height: 1;
}

.mock-review-text {
    font-size: 4.5px;
    font-weight: 700;
    color: #334155;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Slide 3: Dual-Routing Flowchart */
.routing-flow-mockup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.flow-center-qr {
    width: 32px;
    height: 32px;
    border: 2.5px solid #000000;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 2px 2px 0px #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000000;
    z-index: 2;
}

.flow-path-arrow {
    flex-grow: 1;
    height: 3px;
    background: #000000;
    position: relative;
}

.flow-path-arrow.green-path {
    background: #10b981;
}

.flow-path-arrow.blue-path {
    background: #3b82f6;
}

.flow-path-arrow.green-path::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -3px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #10b981;
}

.flow-path-arrow.blue-path::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -3px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #3b82f6;
}

.flow-target-box {
    width: 48px;
    height: 48px;
    border: 2.5px solid #000000;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 2.5px 2.5px 0px #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px;
    box-sizing: border-box;
    z-index: 2;
}

.flow-target-box.green-border {
    border-color: #10b981;
    box-shadow: 2.5px 2.5px 0px #10b981;
}

.flow-target-box.blue-border {
    border-color: #3b82f6;
    box-shadow: 2.5px 2.5px 0px #3b82f6;
}

.flow-target-icon {
    font-size: 14px;
}

.flow-target-icon.green { color: #10b981; }
.flow-target-icon.blue { color: #3b82f6; }

.flow-target-label {
    font-size: 4.5px;
    font-weight: 900;
    text-transform: uppercase;
    color: #000000;
    margin-top: 2px;
    text-align: center;
    line-height: 1.1;
}

/* Slide 4: Chat Message Mockup */
.chat-mockup-container {
    width: 100%;
    border: 2.5px solid #000000;
    border-radius: 8px;
    background: #e2e8f0;
    box-shadow: 3px 3px 0px #000000;
    padding: 0.25rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.chat-mockup-header {
    display: flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1.5px solid #000000;
    padding-bottom: 2px;
}

.chat-header-avatar {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
}

.chat-header-name {
    font-size: 4.5px;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
}

.chat-message-bubble {
    max-width: 80%;
    padding: 2.5px 4px;
    border-radius: 6px;
    font-size: 4.5px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    border: 1.5px solid #000000;
    box-sizing: border-box;
}

.chat-message-bubble.incoming {
    align-self: flex-start;
    background: #ffffff;
    border-top-left-radius: 0;
}

.chat-message-bubble.outgoing {
    align-self: flex-end;
    background: #dcf8c6;
    border-top-right-radius: 0;
    border-color: #10b981;
}

/* Slide 5: GMB 3-Pack Rank Mockup */
.maps-3pack-mockup {
    width: 100%;
    border: 2.5px solid #000000;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 3px 3px 0px #000000;
    padding: 0.25rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.mock-search-bar {
    border: 1.5px solid #000000;
    border-radius: 4px;
    padding: 2px 4px;
    font-size: 4.5px;
    font-weight: 800;
    color: #334155;
    background: #f8fafc;
    display: flex;
    align-items: center;
    gap: 3px;
    text-transform: uppercase;
}

.mock-search-bar i {
    font-size: 5px;
    color: #3b82f6;
}

.mock-pack-item {
    border: 1.5px solid #e2e8f0;
    padding: 3px 4px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-pack-item.featured {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.mock-pack-info {
    display: flex;
    flex-direction: column;
}

.mock-pack-title {
    font-size: 5px;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
}

.mock-pack-rating {
    font-size: 4.5px;
    font-weight: 800;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 1.5px;
}

.mock-pack-rating span.stars {
    color: #FFA800;
}

.mock-pack-badge {
    background: #10b981;
    color: #ffffff;
    font-size: 4px;
    font-weight: 900;
    padding: 1px 3px;
    border-radius: 2px;
    text-transform: uppercase;
}


/* ----------------------------------------------------
   EXPORT SCALING RULES FOR BRUTALIST BRAND CAROUSELS
   ---------------------------------------------------- */

.slide-canvas.export-active.slide-bg-brutal-light {
    padding: 5rem 4rem !important;
}

.slide-canvas.export-active .brutal-card-light {
    border-width: 12px !important;
    box-shadow: 22px 22px 0px #000000 !important;
    border-radius: 50px !important;
    padding: 3.5rem 3rem !important;
    min-height: 680px !important;
    width: 90% !important;
}

.slide-canvas.export-active .brutal-card-tab {
    top: -76px !important;
    right: 45px !important;
    border-width: 10px !important;
    font-size: 2.2rem !important;
    padding: 8px 24px 12px 24px !important;
    border-radius: 20px 20px 0px 0px !important;
    gap: 10px !important;
    letter-spacing: 5px !important;
}

.slide-canvas.export-active .brutal-tag-light {
    font-size: 1.8rem !important;
    letter-spacing: 5px !important;
    margin-bottom: 1rem !important;
}

.slide-canvas.export-active .brutal-heading-light {
    font-size: 3.2rem !important;
    margin: 1rem 0 !important;
}

.slide-canvas.export-active .brutal-body-light {
    font-size: 2.1rem !important;
    margin-top: 1.5rem !important;
    line-height: 1.4 !important;
}

.slide-canvas.export-active .brutal-paper-badge {
    border-width: 10px !important;
    box-shadow: 14px 14px 0px #000000 !important;
    padding: 1.2rem 2rem !important;
    font-size: 2rem !important;
    width: 90% !important;
    margin-top: 2rem !important;
}

/* Sub-elements Light */
.slide-canvas.export-active .brutal-comp-box {
    gap: 1.5rem !important;
    margin-top: 1.5rem !important;
}

.slide-canvas.export-active .brutal-comp-card {
    border-width: 8px !important;
    padding: 1.2rem !important;
    box-shadow: 10px 10px 0px #000000 !important;
    border-radius: 24px !important;
}

.slide-canvas.export-active .brutal-comp-title {
    font-size: 1.6rem !important;
}

.slide-canvas.export-active .brutal-comp-value {
    font-size: 2.8rem !important;
    margin: 0.5rem 0 !important;
}

.slide-canvas.export-active .brutal-comp-desc {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
}

.slide-canvas.export-active .brutal-grid-box {
    gap: 1.2rem !important;
    margin-top: 1.5rem !important;
}

.slide-canvas.export-active .brutal-grid-item {
    border-width: 8px !important;
    padding: 1.2rem 1.8rem !important;
    font-size: 1.8rem !important;
    border-radius: 24px !important;
    box-shadow: 8px 8px 0px #000000 !important;
    gap: 1.5rem !important;
}

.slide-canvas.export-active .brutal-grid-item i {
    font-size: 2.4rem !important;
}

.slide-canvas.export-active .brutal-split-box {
    margin-top: 1.5rem !important;
}

.slide-canvas.export-active .brutal-split-node {
    border-width: 8px !important;
    padding: 1.2rem 1.8rem !important;
    font-size: 1.8rem !important;
    border-radius: 24px !important;
    box-shadow: 8px 8px 0px #000000 !important;
}

.slide-canvas.export-active .brutal-split-arrow {
    width: 60px !important;
    height: 10px !important;
}

.slide-canvas.export-active .brutal-split-arrow::after {
    right: -6px !important;
    top: -10px !important;
    border-top: 15px solid transparent !important;
    border-bottom: 15px solid transparent !important;
    border-left: 20px solid #000000 !important;
}

.slide-canvas.export-active .brutal-chart-box {
    border-width: 8px !important;
    box-shadow: 10px 10px 0px #000000 !important;
    border-radius: 24px !important;
    height: 200px !important;
    margin-top: 1.5rem !important;
    padding: 1rem !important;
}

.slide-canvas.export-active .brutal-chart-bar {
    width: 120px !important;
    border-width: 8px !important;
    box-shadow: 6px 0px 0px #000000 !important;
    font-size: 1.6rem !important;
}


/* Dark Export Scaling */
.slide-canvas.export-active.slide-bg-brutal-dark {
    padding: 4.5rem !important;
}

.slide-canvas.export-active .brutal-hazard-top,
.slide-canvas.export-active .brutal-hazard-bottom {
    height: 28px !important;
}

.slide-canvas.export-active .brutal-hazard-top {
    background: repeating-linear-gradient(
        -45deg,
        #0ea5e9,
        #0ea5e9 24px,
        #000000 24px,
        #000000 48px
    ) !important;
}

.slide-canvas.export-active .brutal-hazard-bottom {
    background: repeating-linear-gradient(
        -45deg,
        #0ea5e9,
        #0ea5e9 24px,
        #000000 24px,
        #000000 48px
    ) !important;
}

.slide-canvas.export-active .brutal-hazard-right {
    width: 28px !important;
    background: repeating-linear-gradient(
        45deg,
        #0ea5e9,
        #0ea5e9 24px,
        #000000 24px,
        #000000 48px
    ) !important;
}

.slide-canvas.export-active .brutal-dark-slide-number {
    font-size: 4.2rem !important;
}

.slide-canvas.export-active .brutal-dark-outline-bg-text {
    font-size: 10rem !important;
    letter-spacing: 8px !important;
}

.slide-canvas.export-active .brutal-heading-dark {
    font-size: 3rem !important;
    margin-bottom: 1.5rem !important;
}

.slide-canvas.export-active .brutal-large-gold-text {
    font-size: 7.5rem !important;
    margin: 1rem 0 !important;
}

.slide-canvas.export-active .brutal-body-dark {
    font-size: 2.1rem !important;
    margin-top: 1.5rem !important;
    line-height: 1.4 !important;
}

/* Dark Sub-elements Scaling */
.slide-canvas.export-active .brutal-dark-warning-box {
    border-width: 8px !important;
    padding: 1.2rem 2.2rem !important;
    margin-top: 1.5rem !important;
}

.slide-canvas.export-active .brutal-dark-warning-icon {
    font-size: 2.8rem !important;
}

.slide-canvas.export-active .brutal-dark-warning-text {
    font-size: 1.8rem !important;
}

.slide-canvas.export-active .brutal-dark-comp-box {
    gap: 1.8rem !important;
    margin-top: 1.8rem !important;
}

.slide-canvas.export-active .brutal-dark-comp-card {
    border-width: 8px !important;
    padding: 1.5rem !important;
}

.slide-canvas.export-active .brutal-dark-comp-title {
    font-size: 1.6rem !important;
}

.slide-canvas.export-active .brutal-dark-comp-value {
    font-size: 3.2rem !important;
    margin: 0.5rem 0 !important;
}

.slide-canvas.export-active .brutal-dark-comp-desc {
    font-size: 1.5rem !important;
}

.slide-canvas.export-active .brutal-dark-list-box {
    gap: 1.2rem !important;
    margin-top: 1.5rem !important;
}

.slide-canvas.export-active .brutal-dark-list-item {
    border-width: 8px !important;
    padding: 1.2rem 1.8rem !important;
    font-size: 1.8rem !important;
}

.slide-canvas.export-active .brutal-dark-list-num {
    border-left-width: 8px !important;
    padding-left: 1.5rem !important;
    font-size: 2.2rem !important;
    margin-left: 1.5rem !important;
}

.slide-canvas.export-active .brutal-dark-list-icon {
    font-size: 2.4rem !important;
    margin-right: 1.2rem !important;
}

.slide-canvas.export-active .brutal-dark-chart {
    height: 180px !important;
    border-left-width: 5px !important;
    border-bottom-width: 5px !important;
    margin-top: 1.5rem !important;
}

.slide-canvas.export-active .brutal-dark-chart-label {
    font-size: 1.6rem !important;
}


/* ----------------------------------------------------
   MOCKUP VECTOR GRAPHICS EXPORT SCALING
   ---------------------------------------------------- */

.slide-canvas.export-active .phone-scan-mockup {
    height: 260px !important;
    gap: 2.5rem !important;
    margin-top: 1.5rem !important;
}

.slide-canvas.export-active .qr-stand-graphic {
    width: 170px !important;
    height: 220px !important;
    border-width: 8px !important;
    box-shadow: 10px 10px 0px #000000 !important;
    padding: 10px !important;
    border-radius: 12px !important;
}

.slide-canvas.export-active .qr-stand-header {
    font-size: 14px !important;
    letter-spacing: 1.5px !important;
}

.slide-canvas.export-active .qr-stand-code-img {
    font-size: 55px !important;
}

.slide-canvas.export-active .qr-stand-stars-row {
    font-size: 14px !important;
}

.slide-canvas.export-active .phone-screen-graphic {
    width: 150px !important;
    height: 250px !important;
    border-width: 8px !important;
    box-shadow: 8px 8px 0px #000000 !important;
    padding: 10px !important;
    border-radius: 18px !important;
}

.slide-canvas.export-active .phone-notch-graphic {
    width: 40px !important;
    height: 8px !important;
    top: 5px !important;
    border-radius: 4px !important;
}

.slide-canvas.export-active .phone-portal-logo {
    font-size: 14px !important;
}

.slide-canvas.export-active .phone-portal-stars {
    font-size: 14px !important;
    gap: 2px !important;
}

.slide-canvas.export-active .phone-portal-btn {
    font-size: 14px !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
}

/* Slide 2: Review Cards */
.slide-canvas.export-active .review-cards-mockup {
    gap: 1.5rem !important;
    margin-top: 1.5rem !important;
}

.slide-canvas.export-active .mock-review-card {
    border-width: 8px !important;
    border-radius: 24px !important;
    padding: 1.2rem !important;
    box-shadow: 8px 8px 0px #000000 !important;
    min-height: 200px !important;
}

.slide-canvas.export-active .mock-review-user {
    gap: 10px !important;
    margin-bottom: 8px !important;
}

.slide-canvas.export-active .mock-review-avatar {
    width: 28px !important;
    height: 28px !important;
    border-width: 3px !important;
}

.slide-canvas.export-active .mock-review-name {
    font-size: 16px !important;
}

.slide-canvas.export-active .mock-review-stars {
    font-size: 16px !important;
}

.slide-canvas.export-active .mock-review-text {
    font-size: 16px !important;
    line-height: 1.3 !important;
}

/* Slide 3: Flowchart */
.slide-canvas.export-active .routing-flow-mockup {
    padding: 0 1.5rem !important;
    margin-top: 1.5rem !important;
}

.slide-canvas.export-active .flow-center-qr {
    width: 110px !important;
    height: 110px !important;
    border-width: 8px !important;
    box-shadow: 6px 6px 0px #000000 !important;
    font-size: 50px !important;
    border-radius: 18px !important;
}

.slide-canvas.export-active .flow-path-arrow {
    height: 10px !important;
}

.slide-canvas.export-active .flow-path-arrow::after {
    top: -10px !important;
    border-top-width: 15px !important;
    border-bottom-width: 15px !important;
    border-left-width: 20px !important;
}

.slide-canvas.export-active .flow-target-box {
    width: 170px !important;
    height: 170px !important;
    border-width: 8px !important;
    box-shadow: 8px 8px 0px #000000 !important;
    border-radius: 24px !important;
    padding: 8px !important;
}

.slide-canvas.export-active .flow-target-icon {
    font-size: 48px !important;
}

.slide-canvas.export-active .flow-target-label {
    font-size: 16px !important;
    margin-top: 8px !important;
    line-height: 1.2 !important;
}

/* Slide 4: Chat messages */
.slide-canvas.export-active .chat-mockup-container {
    border-width: 8px !important;
    border-radius: 24px !important;
    padding: 1.2rem !important;
    gap: 10px !important;
    box-shadow: 10px 10px 0px #000000 !important;
    margin-top: 1.5rem !important;
}

.slide-canvas.export-active .chat-mockup-header {
    border-bottom-width: 5px !important;
    padding-bottom: 8px !important;
    gap: 12px !important;
}

.slide-canvas.export-active .chat-header-avatar {
    width: 28px !important;
    height: 28px !important;
}

.slide-canvas.export-active .chat-header-name {
    font-size: 16px !important;
}

.slide-canvas.export-active .chat-message-bubble {
    border-width: 5px !important;
    border-radius: 18px !important;
    font-size: 16px !important;
    padding: 8px 12px !important;
    max-width: 80% !important;
}

/* Slide 5: Maps 3pack */
.slide-canvas.export-active .maps-3pack-mockup {
    border-width: 8px !important;
    border-radius: 24px !important;
    padding: 1.2rem !important;
    gap: 10px !important;
    box-shadow: 10px 10px 0px #000000 !important;
    margin-top: 1.5rem !important;
}

.slide-canvas.export-active .mock-search-bar {
    border-width: 5px !important;
    border-radius: 12px !important;
    padding: 8px 12px !important;
    font-size: 16px !important;
    gap: 10px !important;
}

.slide-canvas.export-active .mock-search-bar i {
    font-size: 18px !important;
}

.slide-canvas.export-active .mock-pack-item {
    border-width: 5px !important;
    padding: 10px 15px !important;
    border-radius: 12px !important;
}

.slide-canvas.export-active .mock-pack-title {
    font-size: 18px !important;
}

.slide-canvas.export-active .mock-pack-rating {
    font-size: 16px !important;
    gap: 5px !important;
}

.slide-canvas.export-active .mock-pack-badge {
    font-size: 14px !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
}
