﻿/* -- base.css -- Verdict Alpha -- */
/* Verdict Alpha — Custom Board Styles */

:root {
    --bg: #12121a;
    --bg-light: #1a1a28;
    --bg-lighter: #252540;
    --accent: #e94560;
    --accent-green: #00d9a5;
    --accent-amber: #f4a261;
    --text: #e8e8f0;
    --text-dim: #9999aa;
    --text-dark: #555566;
    --border: #2a2a40;
    --success: #00d9a5;
    --warning: #f4a261;
    --error: #e94560;
    --surface: #1a1a28;
    --surface2: #252540;
    --square-light: #edd9b5;
    --square-dark: #b58863;
    --square-selected: rgba(0, 217, 165, 0.5);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.5;
    overflow-x: hidden;
}

.app {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.badge {
    font-size: 0.65rem;
    background: var(--accent);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    vertical-align: middle;
    margin-left: 8px;
    font-weight: 700;
}
.subtitle {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}
