/* The five themes, as Кино wears them.
 *
 * The Hub and Кино now answer to the same switch: both read `data-theme` off
 * <html> and both remember it under localStorage["hubTheme"], so choosing
 * Terminal in one turns the other green too.
 *
 * What they do NOT share is the canvas. The Hub's Aero theme is a light blue
 * page, and a light page is the wrong background for a wall of film posters -
 * artwork is cut out against black for a reason, and every cinema app on earth
 * is dark. So Кино keeps a dark stage in all five, and takes the theme's
 * accent, its hue and its temperature instead. Same house, different room.
 *
 * Only Кино loads this file, so these names cannot collide with the Hub's.
 */

/* Aero - the default. A deep blue-black stage under the Hub's cool blue.
 *
 * ⚠ Сцената си остава ТЪМНА - обложките се изрязват върху черно с причина и
 *   всяко кино приложение по света е тъмно. Смени се само температурата
 *   (7.09.2026, по молба на Николай): фонът беше почти неутрално черно
 *   (#080d12) до син хъб, тъй че двете страници изглеждаха от различни къщи.
 *   Сега черното е СИНЬО черно - същият тон като дълбокия край на хъбовия
 *   градиент - и картите с него. Осветеността е почти същата, тъй че нищо
 *   не става по-светло или по-тъмно; сменя се само на кого прилича.
 */
:root {
  --accent-rgb:74,163,232;
  --on-accent:#04121e;
  --good:#4bd08a;
  --good-bg:#123024;
  --good-bd:#2f8f6b;
  --bg:#061523;
  --card:#0f1e2c;
  --accent:#4aa3e8;
  --accent2:#8ccbf5;
  --text:#eaf1f7;
  --muted:#93a9bd;
  --line:rgba(150,200,240,.11);
  --sidebar:260px;
}

/* Dark - the Hub's own night palette, near-neutral. */
:root[data-theme="dark"] {
  --accent-rgb:113,188,255;
  --on-accent:#04121e;
  --good:#43d977;
  --good-bg:#12301f;
  --good-bd:#2f8f57;
  --bg:#07090d;
  --card:#141a22;
  --accent:#71bcff;
  --accent2:#a9d8ff;
  --text:#eef3f9;
  --muted:#8b98a8;
  --line:rgba(255,255,255,.1);
}

/* Minimal - quiet greys, one clear blue. Still dark: this is a cinema. */
:root[data-theme="min"] {
  --accent-rgb:77,141,255;
  --on-accent:#f7f9fc;
  --good:#41c98a;
  --good-bg:#16241c;
  --good-bd:#2f8f6b;
  --bg:#0e1013;
  --card:#181b20;
  --accent:#4d8dff;
  --accent2:#9dc0ff;
  --text:#f2f4f7;
  --muted:#9aa3af;
  --line:rgba(255,255,255,.08);
}

/* Terminal - phosphor green on black, monospaced, square corners. */
:root[data-theme="term"] {
  --accent-rgb:51,255,102;
  --on-accent:#012006;
  --good:#3dff77;
  --good-bg:#04220e;
  --good-bd:#1f8a45;
  --bg:#010301;
  --card:#04140a;
  --accent:#33ff66;
  --accent2:#8dffb5;
  --text:#8dffb5;
  --muted:#3fbf72;
  --line:rgba(40,255,120,.22);
}
:root[data-theme="term"] body,
:root[data-theme="term"] .btn,
:root[data-theme="term"] .nav { font-family:"Consolas","Lucida Console",monospace; }
:root[data-theme="term"] .btn,
:root[data-theme="term"] .card,
:root[data-theme="term"] #detBackBtn { border-radius:4px !important; }

/* PS2 - the blue of a memory-card screen. */
:root[data-theme="ps2"] {
  --accent-rgb:143,196,255;
  --on-accent:#061229;
  --good:#7fe0a8;
  --good-bg:#0d2436;
  --good-bd:#2f6f8f;
  --bg:#040a18;
  --card:#0c1730;
  --accent:#8fc4ff;
  --accent2:#cfe4ff;
  --text:#e6f0ff;
  --muted:#8ea6c8;
  --line:rgba(140,190,255,.16);
}

/* The bar itself lives in /chrome.css - shared with the Hub, one shape.
   These are only the colours it wears in this room. */
/* Nothing about the bar is defined here any more - shape AND colours live
   in /chrome.css, shared with the Hub. Two copies is how they drifted. */
/* ⚠ Полето около лентата беше ТУК - а theme.css го зарежда само Кино. Тоест
   правилото важеше за една стая от единайсет. Преместено в chrome.css, който
   се зарежда навсякъде. */
