/* THEME: BASIC / PEN & PAPER (Responsive + Resets) */
:root {
    --paper-white: #ffffff;
    --ink-black: #222222;
    --pencil-gray: #666666;
    --border-style: 2px solid #000000;
    --font-stack: 'Courier New', Courier, monospace; /* Typewriter feel */
}

.character-card {
    /* RESET RULES (Defensive CSS) */
    transform: none;          /* No tilts */
    clip-path: none;          /* No cut corners */
    backdrop-filter: none;    /* No blur */
    border-radius: 0;         /* Square corners */
    text-shadow: none;        /* No glowing text */
    box-shadow: none;         /* No colored shadows */
    margin: 0;
    background-image: none;   /* Remove gradients */

    /* Standard Layout */
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;

    /* Theme Styling */
    background-color: var(--paper-white);
    color: var(--ink-black);
    border: var(--border-style);
    padding: 20px;
    font-family: var(--font-stack);
}

.char-name {
    /* Resets */
    transform: none;
    text-shadow: none;
    
    /* Styling */
    margin-top: 0;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-bottom: var(--border-style);
    padding-bottom: 5px;
}

.actions {
    /* Resets */
    transform: none;
    
    /* Responsive Grid */
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.action-btn {
    /* Resets */
    clip-path: none;
    border-radius: 0;
    
    /* Styling */
    flex: 1 0 auto;
    background: #fff;
    color: var(--ink-black);
    border: 1px solid var(--ink-black);
    font-family: var(--font-stack);
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.action-btn:hover {
    background: #e6e6e6; /* Light gray pencil smudge */
    color: #000;
}

/* Secondary button style (optional distinction) */
.action-btn.secondary {
    border-style: dashed; 
}

/* Bars */
.bar-bg {
    /* Resets */
    transform: none;
    border-radius: 0;
    background: none;
    
    /* Styling */
    height: 12px;
    width: 100%;
    border: 1px solid var(--ink-black);
    margin-bottom: 8px;
    background-color: #f0f0f0;
}

.hp-fill { 
    height: 100%; 
    background-color: #444; /* Dark gray graphite */
}

.mp-fill { 
    height: 100%; 
    background-color: #888; /* Light gray graphite */
}

/* ADD TO BASIC.CSS */
.form-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.input-group { flex: 1 1 45%; display: flex; flex-direction: column; }
.full-width { flex: 1 1 100%; }

.theme-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--ink-black);
    font-family: var(--font-stack);
    font-size: 1em;
    padding: 5px;
    color: var(--ink-black);
    outline: none;
}
.theme-input:focus { background: rgba(0,0,0,0.05); }
.stats-row { display: flex; gap: 10px; width: 100%; margin: 10px 0; }
.stat-box { flex: 1; text-align: center; }
.stat-box input { text-align: center; }