/* ===== CHARACTER SHEET ===== */.sheet-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .sheet-title .dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
        }

        .sheet-title h3 {
            margin: 0;
            font-size: 1.1em;
        }

        .sheet-section {
            background: #1e2a4a;
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 12px;
        }

        .section-header {
            font-size: 0.75em;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-header::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #0f3460;
        }

        /* Resources */
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .resource-box {
            background: #0f3460;
            border-radius: 8px;
            padding: 10px;
            text-align: center;
        }

        .resource-box .label {
            font-size: 0.7em;
            color: #888;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .resource-box .value {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .resource-box input {
            width: 50px;
            font-size: 1.3em;
            font-weight: bold;
            text-align: center;
            background: transparent;
            border: none;
            color: white;
        }

        .resource-box input:focus {
            outline: 2px solid #3498db;
            border-radius: 4px;
        }

        .resource-box .max {
            font-size: 0.9em;
            color: #666;
        }

        .resource-health input { color: #e74c3c; }
        .resource-mana input { color: #3498db; }
        .resource-attack input { color: #f39c12; }

        /* Ether */
        .ether-box {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 12px;
        }

        .ether-box .label {
            font-size: 0.85em;
        }

        .ether-box input {
            width: 80px;
            font-size: 1.5em;
            font-weight: bold;
            text-align: center;
            background: rgba(0,0,0,0.2);
            border: none;
            border-radius: 6px;
            color: white;
            padding: 5px;
        }

        /* Skills */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .skill-slot {
            background: #0f3460;
            border: 2px dashed #3498db33;
            border-radius: 8px;
            padding: 10px;
            min-height: 60px;
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s;
        }

        .skill-slot:hover {
            border-color: #3498db;
        }

        .skill-slot.filled {
            border-style: solid;
            border-color: #3498db;
        }

        .skill-slot .slot-num {
            font-size: 0.7em;
            color: #666;
            margin-bottom: 4px;
        }

        .skill-slot input {
            width: 100%;
            font-size: 0.85em;
            background: transparent;
            border: none;
            color: white;
            padding: 0;
        }

        .skill-slot input::placeholder {
            color: #555;
        }

        .bonuses-row {
            display: flex;
            gap: 8px;
            margin-top: 10px;
        }

        .bonus-badge {
            flex: 1;
            text-align: center;
            padding: 8px;
            border-radius: 6px;
            font-size: 0.75em;
            background: #0f3460;
            color: #666;
        }

        .bonus-badge.active {
            background: #27ae60;
            color: white;
        }

        /* VP */
        .vp-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, #f39c12, #e67e22);
            border-radius: 8px;
            padding: 15px;
        }

        .vp-display .label {
            font-size: 0.9em;
        }

        .vp-display input {
            width: 60px;
            font-size: 2em;
            font-weight: bold;
            text-align: center;
            background: rgba(0,0,0,0.2);
            border: none;
            border-radius: 6px;
            color: white;
        }

        .vp-display .target {
            font-size: 0.85em;
            color: rgba(255,255,255,0.7);
        }

        /* Artifacts */
        .artifacts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .artifact-slot {
            background: #0f3460;
            border: 2px dashed #9b59b633;
            border-radius: 8px;
            padding: 8px;
            min-height: 50px;
        }

        .artifact-slot input {
            width: 100%;
            font-size: 0.8em;
            background: transparent;
            border: none;
            color: white;
        }

        .artifact-slot input::placeholder {
            color: #555;
            font-size: 0.9em;
        }

        /* Trackers */
        .trackers-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .tracker-box {
            background: #0f3460;
            border-radius: 6px;
            padding: 8px;
            text-align: center;
        }

        .tracker-box .label {
            font-size: 0.65em;
            color: #888;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .tracker-box input {
            width: 100%;
            font-size: 1.1em;
            font-weight: bold;
            text-align: center;
            background: transparent;
            border: none;
            color: white;
        }

        /* Alliance */
        .alliance-row {
            display: flex;
            gap: 10px;
        }

        .alliance-box {
            flex: 1;
            background: #0f3460;
            border-radius: 6px;
            padding: 10px;
        }

        .alliance-box .label {
            font-size: 0.7em;
            color: #888;
            margin-bottom: 5px;
        }

        .alliance-box select, .alliance-box input {
            width: 100%;
            padding: 6px;
            font-size: 0.9em;
            background: #1e2a4a;
            border: 1px solid #3498db33;
            border-radius: 4px;
            color: white;
        }

        /* Notes */
        .notes-textarea {
            width: 100%;
            min-height: 80px;
            background: #0f3460;
            border: none;
            border-radius: 6px;
            padding: 10px;
            font-size: 0.85em;
            color: white;
            resize: vertical;
            font-family: inherit;
        }

        .notes-textarea::placeholder {
            color: #555;
        }

        /* Position tracker */
        .position-box {
            background: #0f3460;
            border-radius: 6px;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .position-box .label {
            font-size: 0.8em;
            color: #888;
        }

        .position-box .value {
            font-size: 1.2em;
            font-weight: bold;
            color: #3498db;
        }

/* ===== STATUS PANEL ===== */.status-panel {
            background: #1e2a4a;
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 12px;
        }

        .status-header {
            font-size: 0.7em;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .status-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 4px 0;
            font-size: 0.85em;
        }

        .status-row .label {
            color: #888;
        }

        .status-row .value {
            color: #fff;
            font-weight: 500;
        }

        .status-row .value.highlight {
            color: #f39c12;
        }

        .status-shops {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-top: 8px;
        }

        .status-shop {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f39c12, #e67e22);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7em;
            font-weight: bold;
            color: white;
        }

        .status-players {
            margin-top: 8px;
        }

        .status-player {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 0;
            font-size: 0.85em;
        }

        .status-player .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .status-player .vp {
            margin-left: auto;
            color: #f39c12;
            font-weight: bold;
        }

        .status-actions {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 10px;
        }

        .status-actions .btn {
            margin: 0;
            padding: 10px;
            font-size: 0.85em;
        }