/**
 * molotov.css - The Foreign Ministry Aesthetic
 *
 * v2.4 - "The Stone Wall"
 *
 * Reference: Soviet Foreign Ministry / Stalinist Bureaucracy
 * Bureaucratic Grey, Stark White Paper, Heavy Black Typewriter Ink
 * Cold, unyielding, sterile. Concrete and steel.
 *
 * Molotov is not a conqueror - he is an obstructionist.
 * His goal is not to paint the map Red, but to ensure it never turns Blue.
 *
 * "A diplomat's words must have no relation to actions—otherwise what kind of diplomacy is it?"
 */

/* ========================================
   Molotov Doctrine Theme Variables
   ======================================== */
.theme-molotov {
    /* Bureaucratic Grey Palette */
    --molotov-grey-dark: #2F3136;
    --molotov-grey-medium: #3A3D41;
    --molotov-grey-light: #4A4D52;
    --molotov-grey-highlight: #5A5D62;
    --molotov-grey-steel: #6A6D72;

    /* Stark Concrete */
    --molotov-concrete-dark: #1A1C1E;
    --molotov-concrete-medium: #25282B;
    --molotov-concrete-light: #35383B;

    /* Paper & Ink (Official Documents) */
    --molotov-paper: #F5F5F0;
    --molotov-paper-aged: #E8E8E0;
    --molotov-paper-dim: #D8D8D0;
    --molotov-ink: #0A0A0A;
    --molotov-ink-grey: #3A3A3A;

    /* Red Accent (Stamp/Seal) - minimal use */
    --molotov-red: #8B0000;
    --molotov-red-bright: #A00000;
    --molotov-red-dark: #5A0000;
    --molotov-seal: #8B0000;

    /* Steel Blue (Diplomatic cold) */
    --molotov-steel-blue: #4A5568;
    --molotov-steel-blue-light: #5A6578;

    /* Text Colors */
    --molotov-text-on-grey: #E8E8E0;
    --molotov-text-muted: #9A9DA2;
    --molotov-text-emphasis: #FFFFFF;
    --molotov-text-on-paper: #0A0A0A;

    /* Panel backgrounds */
    --molotov-panel-bg: rgba(42, 45, 50, 0.95);
    --molotov-border-dark: #1A1C1E;
    --molotov-border-light: #4A4D52;

    /* Override base variables */
    --paper-cream: #F5F5F0;
    --paper-aged: #E8E8E0;
    --ink-black: #0A0A0A;
    --ink-blue: #3A3D41;
    --ink-red: #8B0000;
}

/* ========================================
   Base Theme Application
   ======================================== */
.theme-molotov body,
.theme-molotov #desk {
    background: var(--molotov-concrete-dark);
    /* Heavy monospace typewriter font */
    font-family: 'Courier Prime', 'Courier New', 'American Typewriter', monospace;
}

.theme-molotov #desk {
    /* Sterile concrete texture */
    background:
        /* Subtle grain */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 4px,
            rgba(100, 100, 100, 0.03) 4px,
            rgba(100, 100, 100, 0.03) 8px
        ),
        /* Vertical seams */
        repeating-linear-gradient(
            180deg,
            transparent,
            transparent 100px,
            rgba(0, 0, 0, 0.1) 100px,
            rgba(0, 0, 0, 0.1) 102px
        ),
        /* Concrete gradient */
        linear-gradient(
            180deg,
            var(--molotov-grey-dark) 0%,
            var(--molotov-concrete-dark) 50%,
            var(--molotov-grey-dark) 100%
        );
}

/* ========================================
   Header - Ministry Masthead
   ======================================== */
.theme-molotov #header {
    background: linear-gradient(180deg, var(--molotov-grey-medium) 0%, var(--molotov-grey-dark) 100%);
    border: 1px solid var(--molotov-border-dark);
    border-top: 3px solid var(--molotov-red);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 10px rgba(0, 0, 0, 0.5);
}

.theme-molotov .title-area h1 {
    /* Strict uppercase block letters */
    color: var(--molotov-text-emphasis);
    font-family: 'Courier Prime', 'Courier New', monospace;
    letter-spacing: 8px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 24px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

.theme-molotov .title-area .subtitle {
    color: var(--molotov-red-bright);
    letter-spacing: 4px;
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 11px;
    text-transform: uppercase;
}

/* ========================================
   Status Bar - Official Registry
   ======================================== */
.theme-molotov #status-bar {
    background: linear-gradient(180deg, var(--molotov-grey-light) 0%, var(--molotov-grey-medium) 100%);
    border: 1px solid var(--molotov-border-dark);
    border-top-color: var(--molotov-grey-highlight);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.theme-molotov .status-item {
    border-right-color: var(--molotov-border-dark);
}

.theme-molotov .status-item .label {
    color: #B0B3B8;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.theme-molotov .status-item .value {
    color: var(--molotov-text-on-grey);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-weight: bold;
}

.theme-molotov .status-item .value.usa {
    color: #7090B0;
}

.theme-molotov .status-item .value.ussr {
    color: #B07070;
}

.theme-molotov .status-item .vs {
    color: var(--molotov-text-muted);
}

/* ========================================
   NATO Cohesion Display (Molotov Victory Metric)
   ======================================== */
.nato-cohesion-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    /* Stark bureaucratic panel */
    background: linear-gradient(180deg, var(--molotov-concrete-medium) 0%, var(--molotov-concrete-dark) 100%);
    border: 2px solid var(--molotov-border-dark);
    border-top-color: var(--molotov-grey-light);
    border-radius: 0;
    min-width: 180px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 3px 8px rgba(0, 0, 0, 0.5);
}

.nato-cohesion-label {
    font-size: 11px;
    color: #B0B3B8;
    letter-spacing: 3px;
    margin-bottom: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.nato-cohesion-value {
    font-size: 28px;
    font-weight: bold;
    font-family: 'Courier Prime', 'Courier New', monospace;
    color: var(--molotov-text-emphasis);
}

.nato-cohesion-value.low {
    color: var(--molotov-red);
}

.nato-cohesion-value.medium {
    color: #B09030;
}

.nato-cohesion-value.high {
    color: #7090B0;
}

.nato-cohesion-bar {
    width: 100%;
    height: 8px;
    background: var(--molotov-concrete-dark);
    border: 1px solid var(--molotov-border-dark);
    border-radius: 0;
    margin-top: 6px;
    overflow: hidden;
}

.nato-cohesion-fill {
    height: 100%;
    /* Steel blue for NATO */
    background: linear-gradient(90deg,
        var(--molotov-red-dark) 0%,
        var(--molotov-steel-blue) 50%,
        var(--molotov-steel-blue-light) 100%
    );
    transition: width 0.3s ease;
}

.nato-cohesion-status {
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 6px;
    padding: 3px 10px;
    border-radius: 0;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.nato-cohesion-status.failing {
    color: #C0C3C8;
    background: rgba(90, 93, 98, 0.4);
    border: 1px solid var(--molotov-grey-light);
}

.nato-cohesion-status.winning {
    color: var(--molotov-red);
    background: rgba(139, 0, 0, 0.3);
    border: 1px solid var(--molotov-red-dark);
}

.nato-cohesion-status.contesting {
    color: #B09030;
    background: rgba(176, 144, 48, 0.2);
    border: 1px solid #806820;
}

/* ========================================
   Map Area - Strategic Overview
   ======================================== */
.theme-molotov #map-area {
    background: linear-gradient(180deg, var(--molotov-grey-medium) 0%, var(--molotov-grey-dark) 100%);
    border: 2px solid var(--molotov-border-dark);
    border-top-color: var(--molotov-grey-light);
    box-shadow:
        inset 0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.5);
}

.theme-molotov .world-map-container {
    background: linear-gradient(180deg, var(--molotov-concrete-medium) 0%, var(--molotov-concrete-dark) 100%);
    border: 1px solid var(--molotov-border-dark);
}

.theme-molotov .map-title {
    color: var(--molotov-text-emphasis);
    font-family: 'Courier Prime', 'Courier New', monospace;
    letter-spacing: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

.theme-molotov .region-summary {
    background: linear-gradient(180deg, rgba(42, 45, 50, 0.92) 0%, rgba(26, 28, 30, 0.95) 100%);
    border: 1px solid var(--molotov-grey-light);
}

.theme-molotov .region-summary .region-name {
    color: var(--molotov-text-emphasis);
    font-family: 'Courier Prime', 'Courier New', monospace;
    letter-spacing: 2px;
    font-size: 11px;
}

.theme-molotov .country-chip {
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-weight: bold;
    border-radius: 0;
}

.theme-molotov .country-chip.us {
    background: rgba(74, 85, 104, 0.4);
    border: 1px solid var(--molotov-steel-blue);
    color: #A0B0C8;
}

.theme-molotov .country-chip.ussr {
    background: rgba(139, 0, 0, 0.3);
    border: 1px solid var(--molotov-red);
    color: #C08080;
}

.theme-molotov .country-chip.contested {
    background: rgba(128, 128, 80, 0.3);
    border: 1px solid #808050;
    color: #C0C080;
}

.theme-molotov .country-chip.vetoed {
    background: rgba(139, 0, 0, 0.5);
    border: 2px solid var(--molotov-red);
    color: var(--molotov-paper);
    animation: veto-pulse 2s infinite;
}

@keyframes veto-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.theme-molotov .global-control-indicator {
    background: linear-gradient(180deg, rgba(42, 45, 50, 0.92) 0%, rgba(26, 28, 30, 0.95) 100%);
    border: 1px solid var(--molotov-grey-light);
    color: var(--molotov-text-emphasis);
}

/* ========================================
   Action Panel - Ministry Dispatch Office
   ======================================== */
.theme-molotov #action-panel {
    background: linear-gradient(180deg, rgba(42, 45, 50, 0.95) 0%, rgba(26, 28, 30, 0.98) 100%);
    border: 2px solid var(--molotov-grey-light);
    border-top: 3px solid var(--molotov-red);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.theme-molotov .action-header {
    border-bottom: 1px solid var(--molotov-grey-light);
}

.theme-molotov .action-header h2 {
    color: var(--molotov-text-emphasis);
    font-family: 'Courier Prime', 'Courier New', monospace;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 14px;
}

.theme-molotov .ap-display {
    color: var(--molotov-text-on-grey);
    font-family: 'Courier Prime', 'Courier New', monospace;
}

/* Official Document style cards */
.theme-molotov .telegram {
    background: var(--molotov-paper);
    border: 1px solid var(--molotov-grey-steel);
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.theme-molotov .telegram::before {
    /* Red official stamp stripe */
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 15px,
        var(--molotov-red) 15px,
        var(--molotov-red) 30px
    );
    height: 4px;
}

.theme-molotov .action-name {
    color: var(--molotov-ink);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theme-molotov .action-cost {
    background: var(--molotov-grey-dark);
    color: var(--molotov-text-emphasis);
    border: 1px solid var(--molotov-border-dark);
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.theme-molotov .action-cost.cost-discount {
    background: var(--molotov-red-dark);
    color: var(--molotov-paper);
    border-color: var(--molotov-red);
}

.theme-molotov .action-cost.cost-markup {
    background: var(--molotov-grey-steel);
    color: var(--molotov-text-muted);
    border-color: var(--molotov-grey-highlight);
}

.theme-molotov .telegram-body p {
    color: var(--molotov-text-on-paper);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 12px;
}

.theme-molotov .telegram-body .stats {
    color: var(--molotov-ink-grey);
}

.theme-molotov .country-selector label {
    color: var(--molotov-ink-grey);
    font-family: 'Courier Prime', 'Courier New', monospace;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
}

.theme-molotov .country-select {
    background: var(--molotov-paper);
    border: 1px solid var(--molotov-grey-steel);
    color: var(--molotov-ink);
    font-family: 'Courier Prime', 'Courier New', monospace;
    border-radius: 0;
}

.theme-molotov .execute-btn {
    /* Steel grey official button */
    background: linear-gradient(180deg, var(--molotov-grey-light) 0%, var(--molotov-grey-dark) 100%);
    border: 2px solid var(--molotov-grey-highlight);
    border-radius: 0;
    color: var(--molotov-text-emphasis);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.4);
}

.theme-molotov .execute-btn:hover:not(:disabled) {
    background: linear-gradient(180deg, var(--molotov-grey-highlight) 0%, var(--molotov-grey-light) 100%);
}

.theme-molotov .execute-btn:disabled {
    background: var(--molotov-concrete-dark);
    border-color: var(--molotov-border-dark);
    color: #8a8d92;
}

.theme-molotov .end-turn-btn {
    /* Heavy official stamp button */
    background: linear-gradient(180deg, var(--molotov-grey-medium) 0%, var(--molotov-grey-dark) 100%);
    border: 3px solid var(--molotov-grey-light);
    border-radius: 0;
    color: var(--molotov-text-emphasis);
    font-family: 'Courier Prime', 'Courier New', monospace;
    letter-spacing: 4px;
    text-transform: uppercase;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.4);
}

.theme-molotov .end-turn-btn:hover {
    background: linear-gradient(180deg, var(--molotov-grey-light) 0%, var(--molotov-grey-medium) 100%);
}

/* ========================================
   ISSUE VETO Button
   ======================================== */
.veto-container {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--molotov-red-dark);
}

.veto-btn {
    width: 100%;
    padding: 15px 20px;
    /* Heavy red seal / stamp */
    background: linear-gradient(180deg, var(--molotov-red) 0%, var(--molotov-red-dark) 100%);
    border: 3px solid #400000;
    border-top-color: var(--molotov-red-bright);
    border-radius: 0;
    color: var(--molotov-paper);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.5);
}

.veto-btn:hover:not(:disabled) {
    background: linear-gradient(180deg, var(--molotov-red-bright) 0%, var(--molotov-red) 100%);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        0 5px 12px rgba(0, 0, 0, 0.6);
}

.veto-btn:disabled {
    background: linear-gradient(180deg, var(--molotov-grey-steel) 0%, var(--molotov-grey-dark) 100%);
    border-color: var(--molotov-grey-medium);
    color: var(--molotov-grey-light);
    cursor: not-allowed;
}

.veto-label {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.veto-subtitle {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    letter-spacing: 1px;
    font-style: italic;
}

.veto-cost {
    display: block;
    font-size: 11px;
    color: var(--molotov-paper-dim);
    margin-top: 5px;
}

.veto-used {
    width: 100%;
    padding: 15px;
    background: var(--molotov-grey-dark);
    border: 2px solid var(--molotov-grey-medium);
    border-radius: 0;
    color: var(--molotov-text-muted);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 12px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Country selector for Veto */
.veto-country-select {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    background: var(--molotov-paper);
    border: 1px solid var(--molotov-grey-steel);
    color: var(--molotov-ink);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 14px;
    border-radius: 0;
}

/* ========================================
   Tension/DEFCON Override
   ======================================== */
.theme-molotov .tension-status {
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theme-molotov .tension-calm {
    background: var(--molotov-grey-light);
    color: var(--molotov-text-emphasis);
}

.theme-molotov .tension-concerned {
    background: #4A4840;
    color: var(--molotov-paper);
}

.theme-molotov .tension-mobilizing {
    background: #5A4030;
    color: var(--molotov-paper);
}

.theme-molotov .tension-ready {
    background: var(--molotov-red-dark);
    color: var(--molotov-paper);
}

.theme-molotov .tension-imminent {
    background: var(--molotov-red);
    color: var(--molotov-paper);
    animation: imminent-pulse 1.5s infinite;
}

@keyframes imminent-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ========================================
   Domestic Stats Override
   ======================================== */
.theme-molotov .domestic-stat.domestic-ok {
    background: var(--molotov-grey-light);
    color: var(--molotov-text-emphasis);
}

.theme-molotov .domestic-stat.domestic-warning {
    background: #5A4A30;
    color: var(--molotov-paper);
}

.theme-molotov .domestic-stat.domestic-low {
    background: var(--molotov-red-dark);
    color: var(--molotov-paper);
}

/* ========================================
   Footer - Ministry Classification
   ======================================== */
.theme-molotov #footer {
    background: var(--molotov-concrete-dark);
    border-top: 1px solid var(--molotov-grey-medium);
}

.theme-molotov .classification {
    color: var(--molotov-red-bright);
    font-weight: bold;
    letter-spacing: 3px;
    font-family: 'Courier Prime', 'Courier New', monospace;
    text-transform: uppercase;
}

.theme-molotov .version {
    color: #9A9DA2;
}

/* ========================================
   Crisis Modal Override - Official Communique
   ======================================== */
.theme-molotov .crisis-modal {
    background: var(--molotov-paper);
    border: 3px solid var(--molotov-red);
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.theme-molotov .crisis-title {
    color: var(--molotov-ink);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 2px solid var(--molotov-red);
}

.theme-molotov .crisis-description {
    color: var(--molotov-ink);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.theme-molotov .red-phone {
    background: var(--molotov-red);
    box-shadow: 0 4px 12px rgba(80, 0, 0, 0.5);
}

.theme-molotov .phone-ring {
    border-color: var(--molotov-red-bright);
}

.theme-molotov .crisis-btn {
    font-family: 'Courier Prime', 'Courier New', monospace;
    background: var(--molotov-paper-aged);
    border: 2px solid var(--molotov-grey-steel);
    color: var(--molotov-ink);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theme-molotov .crisis-btn:hover {
    background: var(--molotov-paper);
    border-color: var(--molotov-grey-dark);
}

.theme-molotov .crisis-btn.escalate {
    background: linear-gradient(180deg, var(--molotov-red) 0%, var(--molotov-red-dark) 100%);
    border-color: #400000;
    color: var(--molotov-paper);
}

.theme-molotov .crisis-btn.escalate:hover {
    background: linear-gradient(180deg, var(--molotov-red-bright) 0%, var(--molotov-red) 100%);
}

/* ========================================
   Event Modal Override - Soviet Perspective
   ======================================== */
.theme-molotov .event-modal {
    background: var(--molotov-paper);
    border: 3px solid var(--molotov-grey-dark);
    border-top: 5px solid var(--molotov-red);
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.theme-molotov .event-modal .event-title {
    color: var(--molotov-ink);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
}

.theme-molotov .event-modal .event-subtitle {
    color: var(--molotov-red-bright);
    font-family: 'Courier Prime', 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 10px;
}

.theme-molotov .event-modal .event-description {
    color: var(--molotov-ink);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.7;
}

.theme-molotov .event-modal .event-option {
    background: var(--molotov-paper-aged);
    border: 2px solid var(--molotov-grey-steel);
    border-radius: 0;
    color: var(--molotov-ink);
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.theme-molotov .event-modal .event-option:hover {
    background: var(--molotov-paper);
    border-color: var(--molotov-grey-dark);
}

.theme-molotov .event-modal .event-option.recommended {
    border-color: var(--molotov-red);
    background: rgba(139, 0, 0, 0.1);
}

/* ========================================
   Action Log Override - Official Record
   ======================================== */
.theme-molotov .action-log-container {
    background: var(--molotov-paper);
    border: 1px solid var(--molotov-grey-steel);
    border-radius: 0;
}

.theme-molotov .log-header {
    background: linear-gradient(180deg, var(--molotov-paper-aged) 0%, var(--molotov-paper-dim) 100%);
    border-bottom-color: var(--molotov-grey-steel);
}

.theme-molotov .log-title {
    color: var(--molotov-ink);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.theme-molotov .log-status {
    color: var(--molotov-grey-steel);
    font-weight: bold;
}

.theme-molotov .log-content {
    color: var(--molotov-ink);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 11px;
}

.theme-molotov .log-entry.usa-entry {
    border-left-color: var(--molotov-steel-blue);
    color: var(--molotov-steel-blue);
}

.theme-molotov .log-entry.ussr-entry {
    border-left-color: var(--molotov-red);
    color: var(--molotov-red-dark);
}

/* ========================================
   Vignette Override - Cold Sterile
   ======================================== */
.theme-molotov::before {
    /* Cold, sterile shadows */
    background: radial-gradient(
        ellipse at 50% 30%,
        transparent 30%,
        rgba(20, 22, 25, 0.3) 70%,
        rgba(10, 12, 15, 0.5) 100%
    );
}

/* No scanlines - clinical, clean */
.theme-molotov::after {
    display: none;
}

/* ========================================
   Notification Override
   ======================================== */
.theme-molotov .notification {
    font-family: 'Courier Prime', 'Courier New', monospace;
    border: 2px solid;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}

.theme-molotov .notification.success {
    background: var(--molotov-grey-medium);
    color: var(--molotov-text-emphasis);
    border-color: var(--molotov-grey-light);
}

.theme-molotov .notification.error {
    background: var(--molotov-red-dark);
    color: var(--molotov-paper);
    border-color: var(--molotov-red);
}

.theme-molotov .notification.veto-blocked {
    background: var(--molotov-red);
    color: var(--molotov-paper);
    border-color: var(--molotov-red-bright);
    animation: veto-notification 0.5s ease;
}

@keyframes veto-notification {
    0% { transform: scale(0.9); opacity: 0; }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); opacity: 1; }
}

/* ========================================
   Advisor Selection Modal - Ministry Style
   ======================================== */
.theme-molotov .advisor-modal,
.theme-molotov .ussr-modal {
    background: linear-gradient(180deg, var(--molotov-grey-dark) 0%, var(--molotov-concrete-dark) 100%);
}

.theme-molotov .advisor-card {
    background: linear-gradient(180deg, var(--molotov-grey-medium) 0%, var(--molotov-grey-dark) 100%);
    border: 2px solid var(--molotov-grey-light);
    border-radius: 0;
}

.theme-molotov .advisor-card:hover {
    border-color: var(--molotov-red);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

.theme-molotov .advisor-card.selected {
    border-color: var(--molotov-red);
    background: linear-gradient(180deg, var(--molotov-grey-light) 0%, var(--molotov-grey-medium) 100%);
}

.theme-molotov .advisor-name {
    color: var(--molotov-text-emphasis);
    font-family: 'Courier Prime', 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.theme-molotov .advisor-title {
    color: var(--molotov-red);
    font-family: 'Courier Prime', 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px;
}

.theme-molotov .advisor-select-btn {
    background: linear-gradient(180deg, var(--molotov-red) 0%, var(--molotov-red-dark) 100%);
    border: 2px solid #400000;
    color: var(--molotov-paper);
    font-family: 'Courier Prime', 'Courier New', monospace;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.theme-molotov .advisor-select-btn:hover {
    background: linear-gradient(180deg, var(--molotov-red-bright) 0%, var(--molotov-red) 100%);
}

/* ========================================
   Vetoed Country Marker (Map overlay)
   ======================================== */
.veto-marker {
    position: absolute;
    background: var(--molotov-red);
    color: var(--molotov-paper);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.veto-marker::after {
    content: 'VETO';
}

/* ========================================
   NATO Target Status Indicator
   ======================================== */
.nato-targets-panel {
    background: var(--molotov-concrete-medium);
    border: 1px solid var(--molotov-grey-light);
    padding: 10px;
    margin-top: 10px;
}

.nato-targets-title {
    color: var(--molotov-text-emphasis);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.nato-target-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid var(--molotov-grey-dark);
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 11px;
}

.nato-target-item:last-child {
    border-bottom: none;
}

.nato-target-name {
    color: var(--molotov-text-on-grey);
}

.nato-target-status {
    padding: 2px 6px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nato-target-status.western {
    background: var(--molotov-steel-blue);
    color: var(--molotov-paper);
}

.nato-target-status.neutral {
    background: #806820;
    color: var(--molotov-paper);
}

.nato-target-status.wavering {
    background: var(--molotov-red-dark);
    color: var(--molotov-paper);
}

.nato-target-status.soviet {
    background: var(--molotov-red);
    color: var(--molotov-paper);
}
