/**
 * Battleground Mission Control - Frontend Styles
 *
 * @package Battleground_Mission_Control
 * @version 1.0.0
 * @build 011
 * @author Ayonto UG | ayonto.de
 */

/* ========================================
 * BASE & CONTAINER
 * ======================================== */

.bmc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* ========================================
 * LOADING STATES
 * ======================================== */

.bmc-loading {
    text-align: center;
    padding: 40px 20px;
}

.bmc-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    border: 4px solid #e2e8f0;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: bmc-spin 0.8s linear infinite;
}

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

/* ========================================
 * LOGIN SECTION
 * ======================================== */

.bmc-login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.bmc-login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    overflow: hidden;
}

.bmc-login-header {
    padding: 30px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    text-align: center;
}

.bmc-login-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.bmc-login-header p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.bmc-login-form {
    padding: 30px;
}

.bmc-form-group {
    margin-bottom: 20px;
}

.bmc-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.bmc-form-group label svg {
    color: #94a3b8;
    flex-shrink: 0;
}

.bmc-input,
.bmc-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
    background: #fff;
}

.bmc-input:focus,
.bmc-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.bmc-remember-me-group {
    margin-bottom: 25px;
}

.bmc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.bmc-checkbox {
    position: absolute;
    opacity: 0;
}

.bmc-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.2s;
}

.bmc-checkbox:checked + .bmc-checkbox-custom {
    background: #3b82f6;
    border-color: #3b82f6;
}

.bmc-checkbox:checked + .bmc-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.bmc-checkbox-text {
    font-size: 14px;
    color: #64748b;
}

/* ========================================
 * BUTTONS
 * ======================================== */

.bmc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    min-height: 44px;
}

.bmc-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.bmc-btn-primary:hover {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

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

.bmc-btn-secondary {
    background: #f1f5f9;
    color: #334155;
}

.bmc-btn-secondary:hover {
    background: #e2e8f0;
}

.bmc-btn-login {
    width: 100%;
    margin-top: 10px;
}

.bmc-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========================================
 * HEADER & USER BAR
 * ======================================== */

.bmc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.bmc-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.bmc-user-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bmc-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f1f5f9;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}

.bmc-user-info svg {
    color: #64748b;
}

.bmc-logout-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.bmc-logout-btn:hover {
    background: #fee2e2;
    border-color: #fecaca;
    color: #dc2626;
}

/* ========================================
 * FILTER BAR
 * ======================================== */

.bmc-filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.bmc-filter-bar .bmc-select {
    min-width: 200px;
}

/* ========================================
 * MISSION CARDS
 * ======================================== */

.bmc-missions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.bmc-mission-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: all 0.2s;
    cursor: pointer;
}

.bmc-mission-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.bmc-mission-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.bmc-mission-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.bmc-mission-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.bmc-mission-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 15px;
}

.bmc-mission-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.bmc-mission-time {
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ========================================
 * BADGES
 * ======================================== */

.bmc-badge,
.bmc-faction-badge,
.bmc-status-badge,
.bmc-points {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.bmc-faction-badge {
    color: #fff;
}

.bmc-points {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

/* Status-Farben */
.bmc-status-draft { background: #9E9E9E; color: #fff; }
.bmc-status-pending { background: #FFC107; color: #000; }
.bmc-status-active { background: #4CAF50; color: #fff; }
.bmc-status-completed { background: #2196F3; color: #fff; }
.bmc-status-failed { background: #F44336; color: #fff; }
.bmc-status-cancelled { background: #757575; color: #fff; }

/* ========================================
 * MISSION DETAIL
 * ======================================== */

.bmc-mission-detail {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.bmc-mission-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.bmc-mission-section {
    margin-bottom: 30px;
}

.bmc-mission-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 15px 0;
}

.bmc-objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bmc-objectives-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 10px;
}

.bmc-obj-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bmc-obj-number {
    font-weight: 700;
    color: #3b82f6;
    flex-shrink: 0;
}

.bmc-obj-text {
    flex: 1;
    color: #334155;
    line-height: 1.5;
}

.bmc-mission-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

/* ========================================
 * QR-CODE MODAL (Einfach & Klar)
 * ======================================== */

.bmc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.bmc-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.bmc-modal-content {
    position: relative;
    background: #fff;
    max-width: 500px;
    margin: 50px auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
}

.bmc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.bmc-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.bmc-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.bmc-modal-close:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.bmc-modal-body {
    padding: 30px 20px;
    text-align: center;
}

.bmc-qr-display {
    margin-bottom: 20px;
}

.bmc-qr-display img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.bmc-qr-url {
    margin-bottom: 20px;
}

.bmc-qr-url label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    text-align: left;
}

.bmc-qr-url input {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
    color: #1e293b;
    background: #f8fafc;
}

.bmc-qr-url input:focus {
    outline: none;
    border-color: #3b82f6;
    background: #fff;
}

/* QR-Code Button */
.bmc-show-qr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bmc-show-qr-btn svg {
    flex-shrink: 0;
}

/* Mobile Anpassungen */
@media (max-width: 576px) {
    .bmc-modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }
    
    .bmc-modal-body {
        padding: 20px 15px;
    }
    
    .bmc-qr-display img {
        max-width: 250px;
    }
}


.bmc-mission-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

/* ========================================
 * SCOREBOARD
 * ======================================== */

.bmc-scoreboard-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.bmc-scoreboard-container h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
}

.bmc-scoreboard {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bmc-scoreboard-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.2s;
}

.bmc-scoreboard-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.bmc-rank {
    font-size: 24px;
    font-weight: 900;
    color: #3b82f6;
    min-width: 50px;
}

.bmc-scoreboard-item:nth-child(1) .bmc-rank { color: #f59e0b; }
.bmc-scoreboard-item:nth-child(2) .bmc-rank { color: #94a3b8; }
.bmc-scoreboard-item:nth-child(3) .bmc-rank { color: #cd7f32; }

.bmc-faction-color {
    width: 6px;
    height: 40px;
    border-radius: 3px;
}

.bmc-faction-name {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #334155;
}

.bmc-scoreboard-item .bmc-points {
    font-size: 20px;
    font-weight: 700;
}

/* ========================================
 * FACTION DASHBOARD
 * ======================================== */

.bmc-faction-dashboard {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.bmc-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.bmc-dashboard-header .bmc-faction-badge {
    font-size: 20px;
    padding: 10px 20px;
}

.bmc-faction-points {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bmc-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.bmc-stat-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.bmc-stat-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.bmc-stat-value {
    font-size: 28px;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 5px;
}

.bmc-stat-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bmc-dashboard-missions h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
}

/* ========================================
 * ERROR / NO DATA
 * ======================================== */

.bmc-error,
.bmc-no-data {
    padding: 30px;
    text-align: center;
    background: #fef2f2;
    border-radius: 8px;
    color: #991b1b;
    font-weight: 500;
}

.bmc-no-data {
    background: #f8fafc;
    color: #64748b;
}

/* ========================================
 * RESPONSIVE: MOBILE FIRST
 * ======================================== */

@media (max-width: 768px) {
    .bmc-container {
        padding: 20px 15px;
    }
    
    .bmc-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bmc-user-bar {
        width: 100%;
        justify-content: space-between;
    }
    
    .bmc-missions-grid {
        grid-template-columns: 1fr;
    }
    
    .bmc-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bmc-mission-detail {
        padding: 20px;
    }
    
    .bmc-mission-actions {
        flex-direction: column;
    }
    
    .bmc-mission-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .bmc-header h2 {
        font-size: 24px;
    }
    
    .bmc-mission-title {
        font-size: 16px;
    }
    
    .bmc-dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .bmc-scoreboard-item {
        flex-wrap: wrap;
    }
    
    .bmc-rank {
        font-size: 20px;
        min-width: 40px;
    }
}
    cursor: pointer;
    user-select: none;
}

.bmc-checkbox {
    position: absolute;
    opacity: 0;
}

.bmc-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    background: #fff;
    transition: all 0.2s;
    flex-shrink: 0;
    position: relative;
}

.bmc-checkbox:checked + .bmc-checkbox-custom {
    background: #3b82f6;
    border-color: #3b82f6;
}

.bmc-checkbox:checked + .bmc-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.bmc-checkbox-text {
    font-size: 14px;
    color: #64748b;
}

.bmc-login-status {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

.bmc-login-status.error {
    background: #fef2f2;
    color: #dc2626;
}

.bmc-login-status.loading {
    background: #f1f5f9;
    color: #64748b;
}

.bmc-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.bmc-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.bmc-btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

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

.bmc-btn-primary:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
}

.bmc-btn svg {
    flex-shrink: 0;
}

/* MAIN SECTION */
.bmc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.bmc-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.bmc-user-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    padding: 10px 16px;
    border-radius: 10px;
}

.bmc-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #334155;
}

.bmc-user-info svg {
    color: #64748b;
}

.bmc-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #dc2626;
    background: #fff;
    border: 1px solid #fecaca;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.bmc-logout-btn:hover {
    background: #fef2f2;
    border-color: #fca5a5;
}

.bmc-logout-btn svg {
    flex-shrink: 0;
}

/* MISSIONS LIST */
.bmc-missions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bmc-mission-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bmc-mission-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.bmc-mission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.bmc-mission-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.bmc-status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bmc-status-draft { background: #9E9E9E; }
.bmc-status-pending { background: #FFC107; }
.bmc-status-active { background: #4CAF50; }
.bmc-status-completed { background: #2196F3; }
.bmc-status-failed { background: #F44336; }
.bmc-status-cancelled { background: #757575; }

.bmc-mission-body {
    padding: 20px;
}

.bmc-mission-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #64748b;
}

.bmc-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bmc-meta-item svg {
    color: #94a3b8;
    flex-shrink: 0;
}

.bmc-mission-description {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 15px;
}

.bmc-points-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

/* ========================================
 * BREADCRUMBS (Build 010)
 * ======================================== */

.bmc-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    margin-bottom: 20px;
    font-size: 14px;
    color: #64748b;
}

.bmc-breadcrumbs a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.bmc-breadcrumbs a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.bmc-breadcrumb-separator {
    color: #cbd5e1;
}

.bmc-breadcrumb-current {
    color: #334155;
    font-weight: 500;
}

/* ========================================
 * VERBESSERTE MISSION-CARD HOVER (Build 010)
 * ======================================== */

.bmc-mission-card {
    position: relative;
}

.bmc-mission-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.bmc-mission-card:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Loading State beim Click */
.bmc-mission-card.bmc-loading {
    opacity: 0.7;
    pointer-events: none;
}

.bmc-mission-card.bmc-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #e2e8f0;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: bmc-spin 0.6s linear infinite;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .bmc-container {
        padding: 20px 15px;
    }
    
    .bmc-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bmc-user-bar {
        width: 100%;
        justify-content: space-between;
    }
    
    .bmc-mission-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .bmc-breadcrumbs {
        font-size: 13px;
        flex-wrap: wrap;
    }
}

/* HONEYPOT (Hidden) */
input[name="bmc_hp_email"] {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
}
