/*
Theme Name: Aflamicose
Theme URI: https://aflamicose.com
Author: Aflamicose Team
Author URI: https://aflamicose.com
Description: قالب احترافي لمواقع الأفلام والمسلسلات - ينافس DooPlay وZetaFlix
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aflamicose
Tags: movies, series, entertainment, dark, arabic, rtl, responsive
Template: 
*/

/* ===========================================
   متغيرات CSS الأساسية
=========================================== */
:root {
    --primary-color: #e50914;
    --primary-dark: #b20710;
    --primary-light: #ff1f2d;
    --bg-main: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-hover: #222222;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #2a2a2a;
    --gold-color: #f5c518;
    --green-color: #46d369;
    --font-main: 'Cairo', sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-card: 0 4px 20px rgba(0,0,0,0.5);
    --transition: all 0.3s ease;
}

/* ===========================================
   إعادة تعيين CSS
=========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-primary);
    direction: rtl;
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: var(--text-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-color); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-main); }
input, textarea, select { font-family: var(--font-main); outline: none; }

/* ===========================================
   الحاوية الرئيسية
=========================================== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.container-fluid { width: 100%; padding: 0 20px; }
.section-padding { padding: 40px 0; }
.row { display: flex; flex-wrap: wrap; gap: 20px; }
