/*
Theme Name: Podgonka
Theme URI: https://podgonka.pro
Author: Podgonka Team
Description: Сервис подключения и администрирования нод Gonka AI. Дизайн 1:1 с gonka.ai.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: podgonka
Tags: one-page, dark-mode, custom-logo, custom-menu, translation-ready
*/

/* === CSS Variables === */
:root {
  --primary: #3a8ac5;
  --accent: #6171E9;
  --text-secondary: #787878;
  --bg: #fff;
  --bg-card: #fff;
  --bg-partner: #FAFAFA;
  --text: #000;
  --shadow-card: 0px 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-card-hover: 0px 8px 24px rgba(0, 0, 0, 0.25);
  --header-bg: transparent;
  --footer-border: #e8e8e8;
}

[data-theme="dark"] {
  --bg: #000;
  --bg-card: #1a1a1a;
  --bg-partner: #111;
  --text: #fff;
  --text-secondary: #888;
  --shadow-card: 0px 4px 16px rgba(255, 255, 255, 0.08);
  --shadow-card-hover: 0px 8px 24px rgba(255, 255, 255, 0.12);
  --header-bg: #000;
  --footer-border: #222;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: Inter, sans-serif; transition: background 0.2s, color 0.2s; }
