/* Design tokens lifted 1:1 from pokemon.zignixx.dev so both sites read as one.
   Keep this file free of component styles -- it is the shared vocabulary. */

:root {
    --bg-primary: #0d1117;
    --bg-card: #161b22;
    --bg-card-hover: #1c2129;
    --bg-input: #21262d;
    --border: #30363d;
    --border-light: #3d444d;
    --text: #e6edf3;
    --text-muted: #8b949e;
    --text-dim: #6e7681;
    --accent: #ef4444;
    --accent-light: #f87171;
    --accent-dark: #dc2626;
    --accent-glow: rgba(239, 68, 68, 0.3);
    --success: #22c55e;
    --warning: #eab308;
    --info: #3b82f6;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --transition: 0.2s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg-primary);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
                 Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 12px 16px 32px;
}

header {
    padding: 20px 0 16px;
}

h1 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
}

.back-link:hover {
    color: var(--text);
}
