/* ==========================================================================
   DAILY BRIEF — TEMPO DESIGN SYSTEM RESKIN
   Matches Creator Portal & Brand Portal styling
   ========================================================================== */

/* ==================== ANIMATIONS ==================== */
@keyframes briefFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes briefFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes briefPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes briefGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 77, 141, 0.1); }
    50% { box-shadow: 0 0 30px rgba(255, 77, 141, 0.2); }
}

@keyframes briefSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes numberCountUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== VIEW CONTAINER ==================== */
#view-opscenter {
    animation: briefFadeIn 0.4s ease;
}

/* ==================== MASTHEAD ==================== */
.daily-brief-header {
    margin-bottom: 0;
    padding: 24px;
    border-bottom: none;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 14px;
    margin: 0 0 20px 0;
    animation: briefFadeInUp 0.5s ease;
}

.daily-brief-masthead {
    text-align: center;
}

.daily-brief-edition {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent, #FF4D8D);
    margin-bottom: 8px;
    font-family: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.daily-brief-title {
    font-size: 32px !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    margin: 0;
    font-family: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: var(--text-primary, #1A1B3A) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    text-transform: none !important;
    line-height: 1.1;
}

.daily-brief-date {
    font-size: 0.9rem;
    color: var(--text-secondary, #4b5563);
    margin-top: 12px;
    font-family: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-style: normal !important;
    font-weight: 500;
}

/* ==================== BY THE NUMBERS BAR ==================== */
.brief-numbers-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px 24px;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: var(--radius-lg, 14px);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm, 0 1px 2px rgba(0, 0, 0, 0.04));
    animation: briefFadeInUp 0.5s ease 0.1s both;
}

.brief-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
    animation: numberCountUp 0.4s ease both;
}

.brief-number:nth-child(1) { animation-delay: 0.15s; }
.brief-number:nth-child(3) { animation-delay: 0.2s; }
.brief-number:nth-child(5) { animation-delay: 0.25s; }
.brief-number:nth-child(7) { animation-delay: 0.3s; }

.brief-number-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary, #1A1B3A);
    font-family: var(--font-sans, 'General Sans', sans-serif);
    letter-spacing: -0.02em;
}

.brief-number-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted, #9ca3af);
    margin-top: 4px;
    font-family: var(--font-sans, 'General Sans', sans-serif);
    font-weight: 500;
}

.brief-number-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border, #e5e7eb), transparent);
}

.brief-weather {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--bg-input, #F5F3F0);
    border-radius: var(--radius-full, 9999px);
    margin-left: 8px;
}

.brief-weather-icon {
    font-size: 1.4rem;
}

.brief-weather-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-secondary, #4b5563);
    font-family: var(--font-sans, 'General Sans', sans-serif);
}

/* ==================== BRAND TICKER ==================== */
.brand-ticker-wrapper {
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: var(--radius-md, 10px);
    margin-bottom: 24px;
    animation: briefFadeInUp 0.5s ease 0.15s both;
}

.brand-ticker {
    display: flex;
    justify-content: center;
}

.brand-ticker-track {
    display: flex;
    gap: 24px;
    padding: 14px 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-sans, 'General Sans', sans-serif);
    padding: 6px 12px;
    border-radius: var(--radius-md, 10px);
    transition: all 0.2s ease;
}

.ticker-item:hover {
    background: var(--bg-hover, #F5F3F0);
}

.ticker-brand {
    color: var(--text-primary, #1A1B3A);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    padding: 4px 8px;
    background: var(--accent-dim, rgba(255, 77, 141, 0.12));
    border-radius: var(--radius-sm, 6px);
    color: var(--accent, #FF4D8D);
}

.ticker-change {
    font-weight: 700;
    font-family: var(--font-sans, 'General Sans', sans-serif);
}

.ticker-change--up {
    color: var(--success, #34D399);
}

.ticker-change--down {
    color: var(--danger, #EF4444);
}

.ticker-change--flat {
    color: var(--text-muted, #9ca3af);
}

.ticker-divider {
    color: var(--border, #e5e7eb);
}

/* ==================== HEADLINE SECTION ==================== */
.brief-headline-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    padding: 0;
    border: none;
    margin-bottom: 24px;
    animation: briefFadeInUp 0.5s ease 0.2s both;
}

.brief-headline-main {
    padding: 24px;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: var(--radius-lg, 14px);
    background: var(--bg-card, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 2px rgba(0, 0, 0, 0.04));
    transition: all 0.2s ease;
}

.brief-headline-main:hover {
    box-shadow: var(--shadow-md, 0 2px 8px rgba(0, 0, 0, 0.06));
    border-color: var(--accent, #FF4D8D);
}

.brief-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent, #FF4D8D);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans, 'General Sans', sans-serif);
}

.brief-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-dim, rgba(255, 77, 141, 0.3)), transparent);
}

.brief-headline {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px 0;
    font-family: var(--font-sans, 'General Sans', sans-serif);
    color: var(--text-primary, #1A1B3A);
    letter-spacing: -0.02em;
}

.brief-headline-sub {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary, #4b5563);
    margin: 0;
    font-family: var(--font-sans, 'General Sans', sans-serif);
}

/* Quick Hits Sidebar */
.brief-headline-sidebar {
    padding: 24px;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: var(--radius-lg, 14px);
    background: var(--bg-card, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 2px rgba(0, 0, 0, 0.04));
}

.brief-quick-hits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brief-quick-hits li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light, #f3f4f6);
    font-size: 0.9rem;
    color: var(--text-secondary, #4b5563);
    line-height: 1.5;
    font-family: var(--font-sans, 'General Sans', sans-serif);
    animation: briefSlideIn 0.3s ease both;
}

.brief-quick-hits li:nth-child(1) { animation-delay: 0.25s; }
.brief-quick-hits li:nth-child(2) { animation-delay: 0.3s; }
.brief-quick-hits li:nth-child(3) { animation-delay: 0.35s; }

.brief-quick-hits li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.brief-quick-hits li strong {
    color: var(--text-primary, #1A1B3A);
    font-weight: 600;
}

/* ==================== BELOW THE FOLD ==================== */
.below-fold-section {
    padding: 0;
    border: none;
    margin-bottom: 24px;
    animation: briefFadeInUp 0.5s ease 0.25s both;
}

.below-fold-stories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.below-fold-story {
    padding: 20px;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: var(--radius-lg, 14px);
    background: var(--bg-card, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 2px rgba(0, 0, 0, 0.04));
    transition: all 0.2s ease;
    border-left: 3px solid var(--accent, #FF4D8D);
}

.below-fold-story:nth-child(2) {
    border-left-color: var(--secondary, #7C5CFC);
}

.below-fold-story:nth-child(3) {
    border-left-color: var(--success, #34D399);
}

.below-fold-story:first-child {
    padding-left: 20px;
    border-left: 3px solid var(--accent, #FF4D8D);
}

.below-fold-story:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md, 0 2px 8px rgba(0, 0, 0, 0.06));
}

.below-fold-story-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted, #9ca3af);
    margin-bottom: 8px;
    font-family: var(--font-sans, 'General Sans', sans-serif);
}

.below-fold-headline {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px 0;
    font-family: var(--font-sans, 'General Sans', sans-serif);
    color: var(--text-primary, #1A1B3A);
    letter-spacing: -0.01em;
}

.below-fold-sub {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary, #4b5563);
    margin: 0;
    font-family: var(--font-sans, 'General Sans', sans-serif);
}

/* ==================== SECTION HEADERS (Simplified, Left-Aligned) ==================== */
.newspaper-section {
    margin: 32px 0;
    padding: 0;
    animation: briefFadeInUp 0.5s ease 0.3s both;
}

.newspaper-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.newspaper-rule {
    display: none; /* Hide the decorative lines */
}

.newspaper-section-title {
    font-family: 'General Sans', -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--text-primary, #1A1B3A);
    white-space: nowrap;
    padding: 0;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newspaper-section-subtitle {
    font-family: 'General Sans', -apple-system, sans-serif;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 400;
    color: var(--text-muted, #9ca3af);
    text-align: left;
    margin: 0 0 20px 0;
}

/* ==================== VIDEO MARKET REPORT ==================== */
.video-market-report {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.market-stat {
    text-align: center;
    padding: 20px 16px;
    border-radius: var(--radius-lg, 14px);
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border, #e5e7eb);
    box-shadow: var(--shadow-sm, 0 1px 2px rgba(0, 0, 0, 0.04));
    transition: all 0.2s ease;
}

.market-stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md, 0 2px 8px rgba(0, 0, 0, 0.06));
    border-color: var(--accent, #FF4D8D);
}

.market-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary, #1A1B3A);
    font-family: var(--font-sans, 'General Sans', sans-serif);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.market-stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted, #9ca3af);
    margin-top: 6px;
    font-family: var(--font-sans, 'General Sans', sans-serif);
}

.market-stat-change {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: var(--radius-full, 9999px);
    font-family: var(--font-sans, 'General Sans', sans-serif);
}

.market-stat-change.up {
    color: var(--success, #34D399);
    background: var(--success-dim, rgba(52, 211, 153, 0.12));
}

.market-stat-change.down {
    color: var(--danger, #EF4444);
    background: var(--danger-dim, rgba(239, 68, 68, 0.12));
}

.market-stat-change.flat {
    color: var(--text-muted, #9ca3af);
    background: var(--bg-input, #F5F3F0);
}

/* ==================== FEATURED VIDEOS BY BRAND ==================== */
.featured-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.featured-video-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px;
    color: var(--text-muted, #9ca3af);
    font-family: var(--font-sans, 'General Sans', sans-serif);
    font-weight: 500;
}

.featured-video-card {
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: var(--radius-lg, 14px);
    padding: 20px;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.featured-video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent, #FF4D8D), var(--secondary, #7C5CFC));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.featured-video-card:hover {
    border-color: var(--accent, #FF4D8D);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.08));
}

.featured-video-card:hover::before {
    opacity: 1;
}

.featured-video-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.featured-video-brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
}

.featured-video-brand-name {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted, #9ca3af);
    font-family: var(--font-sans, 'General Sans', sans-serif);
}

.featured-video-headline {
    font-family: var(--font-sans, 'General Sans', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary, #1A1B3A);
    line-height: 1.4;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.featured-video-creator {
    font-size: 0.85rem;
    color: var(--text-secondary, #4b5563);
    font-family: var(--font-sans, 'General Sans', sans-serif);
    font-weight: 500;
}

.featured-video-gmv {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--success, #34D399);
    margin-top: 12px;
    font-family: var(--font-sans, 'General Sans', sans-serif);
    letter-spacing: -0.02em;
}

.featured-video-copy-btn {
    margin-top: 14px;
    width: 100%;
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--bg-input, #F5F3F0);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: var(--radius-md, 10px);
    color: var(--text-secondary, #4b5563);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-sans, 'General Sans', sans-serif);
}

.featured-video-copy-btn:hover {
    background: linear-gradient(135deg, var(--accent, #FF4D8D), var(--secondary, #7C5CFC));
    border-color: transparent;
    color: white;
    transform: translateY(-1px);
}

/* ==================== SECTION TEASERS ==================== */
.section-teasers {
    display: flex;
    gap: 16px;
    padding: 0;
    margin-bottom: 24px;
    border: none;
    animation: briefFadeInUp 0.5s ease 0.35s both;
}

.section-teaser {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: var(--radius-lg, 14px);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm, 0 1px 2px rgba(0, 0, 0, 0.04));
}

.section-teaser:hover {
    border-color: var(--accent, #FF4D8D);
    background: var(--bg-card, #ffffff);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md, 0 2px 8px rgba(0, 0, 0, 0.06));
}

.teaser-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent, #FF4D8D);
    padding: 6px 10px;
    background: var(--accent-dim, rgba(255, 77, 141, 0.12));
    border-radius: var(--radius-sm, 6px);
    flex-shrink: 0;
    font-family: var(--font-sans, 'General Sans', sans-serif);
}

.teaser-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-secondary, #4b5563);
    line-height: 1.4;
    font-family: var(--font-sans, 'General Sans', sans-serif);
    font-weight: 500;
}

.teaser-arrow {
    font-size: 1.2rem;
    color: var(--text-muted, #9ca3af);
    transition: all 0.2s ease;
}

.section-teaser:hover .teaser-arrow {
    color: var(--accent, #FF4D8D);
    transform: translateX(4px);
}

/* ==================== LOADING OVERLAY ==================== */
#opscenter-loading {
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(8px);
}

#opscenter-loading .loading-spinner-container {
    position: relative;
}

#opscenter-loading .spinner-ring {
    border-color: var(--border, #e5e7eb);
    border-top-color: var(--accent, #FF4D8D);
    border-right-color: var(--secondary, #7C5CFC);
}

#opscenter-loading .loading-text {
    font-family: var(--font-sans, 'General Sans', sans-serif);
    font-weight: 600;
    color: var(--text-primary, #1A1B3A);
}

#opscenter-loading .loading-subtext {
    font-family: var(--font-sans, 'General Sans', sans-serif);
    color: var(--text-muted, #9ca3af);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .brief-headline-section {
        grid-template-columns: 1fr;
    }
    
    .brief-headline-main {
        border-right: none;
        padding-right: 24px;
    }
    
    .below-fold-stories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .daily-brief-title {
        font-size: 2.25rem;
    }
    
    .brief-numbers-bar {
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px;
    }
    
    .brief-number {
        padding: 8px 16px;
    }
    
    .brief-number-divider {
        display: none;
    }
    
    .video-market-report {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-teasers {
        flex-direction: column;
    }
    
    .featured-videos-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== DISCORD POSTS SECTION ==================== */
.discord-posts-panel {
    background: var(--bg-card, #ffffff) !important;
    border: 1px solid var(--border, #e5e7eb) !important;
    border-radius: 14px !important;
    padding: 24px !important;
    margin-top: 16px;
}

.discord-post-card {
    background: var(--bg-input, #F5F3F0) !important;
    border: 1px solid var(--border-light, #f3f4f6) !important;
    border-radius: 12px !important;
    padding: 18px !important;
    transition: all 0.2s ease !important;
}

.discord-post-card:hover {
    border-color: var(--accent, #FF4D8D) !important;
    box-shadow: 0 4px 12px rgba(255, 77, 141, 0.1) !important;
    transform: translateY(-2px) !important;
}

.discord-post-card span[style*="font-weight: 700"] {
    font-family: 'General Sans', sans-serif !important;
    color: var(--text-primary, #1A1B3A) !important;
}

.discord-post-card p {
    font-family: 'General Sans', sans-serif !important;
}

/* Discord brand selector */
#discordBrandSelect {
    font-family: 'General Sans', sans-serif !important;
    padding: 10px 16px !important;
    border-radius: 10px !important;
    border: 1px solid var(--border, #e5e7eb) !important;
    background: var(--bg-card, #ffffff) !important;
    transition: all 0.2s ease !important;
}

#discordBrandSelect:focus {
    border-color: var(--accent, #FF4D8D) !important;
    box-shadow: 0 0 0 3px rgba(255, 77, 141, 0.12) !important;
    outline: none !important;
}

/* Discord preview area */
#discordPreviewArea {
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 14px;
    padding: 20px;
    margin-top: 20px !important;
}

#discordPreviewContent {
    font-family: 'IBM Plex Mono', monospace !important;
    background: var(--bg-input, #F5F3F0) !important;
    border: 1px solid var(--border, #e5e7eb) !important;
    border-radius: 10px !important;
}

/* ==================== VIDEO PERFORMANCE SECTION ==================== */
#ops-tab-videos {
    padding: 0;
}

/* Stats row above videos */
.ops-stats-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ops-stat-card {
    flex: 1;
    min-width: 120px;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    transition: all 0.2s ease;
}

.ops-stat-card:hover,
.ops-stat-card--clickable:hover {
    border-color: var(--accent, #FF4D8D);
    box-shadow: 0 4px 12px rgba(255, 77, 141, 0.1);
    cursor: pointer;
}

.ops-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'General Sans', sans-serif;
    color: var(--text-primary, #1A1B3A);
    letter-spacing: -0.02em;
}

.ops-stat-value--hot {
    color: var(--accent, #FF4D8D) !important;
}

.ops-stat-value--rising {
    color: var(--success, #34D399) !important;
}

.ops-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'General Sans', sans-serif;
    color: var(--text-muted, #9ca3af);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* What's/Who's Cooking buttons */
.btn-whats-cooking,
.btn-whos-cooking {
    font-family: 'General Sans', sans-serif !important;
    font-weight: 600 !important;
    padding: 10px 16px !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}

.btn-whats-cooking {
    background: var(--accent-dim, rgba(255, 77, 141, 0.12)) !important;
    color: var(--accent, #FF4D8D) !important;
    border: 1px solid var(--accent, #FF4D8D) !important;
}

.btn-whats-cooking:hover {
    background: var(--accent, #FF4D8D) !important;
    color: white !important;
}

.btn-whos-cooking {
    background: var(--secondary-dim, rgba(124, 92, 252, 0.12)) !important;
    color: var(--secondary, #7C5CFC) !important;
    border: 1px solid var(--secondary, #7C5CFC) !important;
}

.btn-whos-cooking:hover {
    background: var(--secondary, #7C5CFC) !important;
    color: white !important;
}

/* ==================== MASTHEAD REFINEMENTS ==================== */
.daily-brief-header {
    margin-bottom: 0;
    padding: 28px 24px;
    border-bottom: none;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 14px;
    margin: 0 0 20px 0;
    animation: briefFadeInUp 0.5s ease;
    text-align: left;
}

.daily-brief-masthead {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.daily-brief-masthead-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.daily-brief-edition {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent, #FF4D8D);
    margin-bottom: 4px;
    font-family: 'General Sans', -apple-system, sans-serif !important;
}

/* ==================== CARD HOVER GLOW ==================== */
.brief-headline-main:hover,
.brief-headline-sidebar:hover,
.below-fold-story:hover,
.market-stat:hover,
.featured-video-card:hover,
.section-teaser:hover {
    box-shadow: 0 8px 24px rgba(255, 77, 141, 0.12) !important;
}

/* ==================== FILTERS ROW ==================== */
.ops-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 14px;
}

.ops-filters select,
.ops-filters input {
    font-family: 'General Sans', sans-serif !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    border: 1px solid var(--border, #e5e7eb) !important;
    background: var(--bg-input, #F5F3F0) !important;
    font-size: 0.85rem !important;
}

.ops-filters select:focus,
.ops-filters input:focus {
    border-color: var(--accent, #FF4D8D) !important;
    outline: none !important;
}

/* ==================== ALL VIDEOS TABLE ==================== */
#allVideosTable {
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 14px;
    overflow: hidden;
}

#allVideosTable th {
    font-family: 'General Sans', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.7rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: var(--text-muted, #9ca3af) !important;
    background: var(--bg-input, #F5F3F0) !important;
    padding: 14px 16px !important;
}

#allVideosTable td {
    font-family: 'General Sans', sans-serif !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid var(--border-light, #f3f4f6) !important;
}

#allVideosTable tr:hover td {
    background: var(--bg-hover, #F5F3F0) !important;
}

/* ==================== EMPTY STATES ==================== */
.empty-state,
.ops-videos-empty {
    font-family: 'General Sans', sans-serif !important;
    color: var(--text-muted, #9ca3af) !important;
    text-align: center !important;
    padding: 40px 20px !important;
}

/* ==================== DARK MODE SUPPORT ==================== */
[data-theme="dark"] .daily-brief-header {
    background: var(--bg-card, #191b32);
    border-color: var(--border, #2d3050);
}

[data-theme="dark"] .daily-brief-title {
    color: var(--text-primary, #f1f3f9) !important;
}

[data-theme="dark"] #opscenter-loading {
    background: rgba(13, 14, 26, 0.95);
}

[data-theme="dark"] .discord-posts-panel {
    background: var(--bg-card, #191b32) !important;
    border-color: var(--border, #2d3050) !important;
}

[data-theme="dark"] .discord-post-card {
    background: var(--bg-elevated, #1e2039) !important;
    border-color: var(--border, #2d3050) !important;
}

/* ==================== CENTERED MASTHEAD (for Analytics, Payments, Settings) ==================== */
.daily-brief-masthead--centered {
    text-align: center !important;
    display: block !important;
}

.daily-brief-masthead--centered .daily-brief-title,
.daily-brief-masthead--centered .daily-brief-edition,
.daily-brief-masthead--centered .daily-brief-date {
    text-align: center !important;
}
