/*
Theme Name: Survival Siren
Theme URI: https://survivalsiren.com
Author: AI Builder
Author URI: https://survivalsiren.com
Description: A high-performance, responsive news and magazine theme for Survival Siren, featuring dark/light mode and customizable categories.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: survival-siren
Tags: blog, news, magazine, dark-mode, responsive-layout, custom-colors
*/

/* 
 * We are using Tailwind CSS via CDN for this generated prototype.
 * Custom CSS variables for the theme:
 */
:root {
  --color-primary: #e11d48;
  --bg-color: #ffffff;
  --text-color: #0f172a;
  --border-color: #e2e8f0;
  --surface-color: #ffffff;
  --muted-bg: #f1f5f9;
  --muted-color: #64748b;
  --accent-bg: #f8fafc;
}

.dark {
  --bg-color: #020617;
  --text-color: #f8fafc;
  --border-color: #1e293b;
  --surface-color: #0f172a;
  --muted-bg: #1e293b;
  --muted-color: #94a3b8;
  --accent-bg: #0f172a;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}
