﻿        /* ==================== TEMA SİSTEMİ ==================== */
        @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');

        :root {
            --font-main: 'Inter', -apple-system, system-ui, sans-serif;
            --font-display: 'Playfair Display', Georgia, serif;
            --font-mono: 'JetBrains Mono', monospace;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

            /* Admin Varsayılanları (Default: Light) */
            --admin-bg: #f8fafc;
            --admin-text: #1e293b;
            --admin-card-bg: #ffffff;
            --admin-border: #e2e8f0;
            --accent: #3b82f6;
            --accent-soft: rgba(59, 130, 246, 0.1);
        }

        body,
        .admin-panel {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ADMIN TEMA SETLERİ */
        [data-admin-theme="dark"] {
            --admin-bg: #0f172a;
            --admin-text: #f1f5f9;
            --admin-card-bg: #1e293b;
            --admin-border: #334155;
            --accent: #6366f1;
            --accent-soft: rgba(99, 102, 241, 0.2);
        }

        [data-admin-theme="ocean"] {
            --admin-bg: #ecfeff;
            --admin-text: #164e63;
            --admin-card-bg: #ffffff;
            --admin-border: #cffafe;
            --accent: #06b6d4;
            --accent-soft: rgba(6, 182, 212, 0.1);
        }

        [data-admin-theme="forest"] {
            --admin-bg: #f0fdf4;
            --admin-text: #14532d;
            --admin-card-bg: #ffffff;
            --admin-border: #dcfce7;
            --accent: #22c55e;
            --accent-soft: rgba(34, 197, 94, 0.1);
        }

        [data-admin-theme="coffee"] {
            --admin-bg: #fffbeb;
            --admin-text: #451a03;
            --admin-card-bg: #ffffff;
            --admin-border: #fde68a;
            --accent: #d97706;
            --accent-soft: rgba(217, 119, 6, 0.1);
        }

        [data-admin-theme="berry"] {
            --admin-bg: #fdf2f8;
            --admin-text: #831843;
            --admin-card-bg: #ffffff;
            --admin-border: #fbcfe8;
            --accent: #db2777;
            --accent-soft: rgba(219, 39, 119, 0.1);
        }

        [data-admin-theme="sunset"] {
            --admin-bg: #fff7ed;
            --admin-text: #7c2d12;
            --admin-card-bg: #ffffff;
            --admin-border: #fed7aa;
            --accent: #ea580c;
            --accent-soft: rgba(234, 88, 12, 0.1);
        }

        [data-admin-theme="royal"] {
            --admin-bg: #f5f3ff;
            --admin-text: #4c1d95;
            --admin-card-bg: #ffffff;
            --admin-border: #ddd6fe;
            --accent: #7c3aed;
            --accent-soft: rgba(124, 58, 237, 0.1);
        }

        [data-admin-theme="cyber"] {
            --admin-bg: #000000;
            --admin-text: #00ff41;
            --admin-card-bg: #111111;
            --admin-border: #333333;
            --accent: #00ff41;
            --accent-soft: rgba(0, 255, 65, 0.1);
        }

        [data-admin-theme="minimal"] {
            --admin-bg: #ffffff;
            --admin-text: #000000;
            --admin-card-bg: #ffffff;
            --admin-border: #e5e5e5;
            --accent: #000000;
            --accent-soft: rgba(0, 0, 0, 0.05);
        }

        /* Weather Widget New Style */
        .weather-widget {
            background: var(--admin-card-bg);
            border: 1px solid var(--admin-border);
            border-radius: 99px;
            padding: 6px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--admin-text);
            position: relative;
            cursor: default;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .weather-widget:hover {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px var(--accent-soft);
        }

        .weather-icon {
            font-size: 16px;
            color: var(--accent);
        }

        #weather-time {
            font-family: var(--font-mono);
            opacity: 0.8;
            font-size: 12px;
            letter-spacing: -0.5px;
        }

        /* Compact GA Card */
        .ga-compact-card {
            background: linear-gradient(135deg, var(--admin-card-bg) 0%, var(--admin-bg) 100%);
            border: 1px solid var(--admin-border);
            border-radius: var(--radius-md);
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .ga-compact-card:hover {
            border-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .stat-card {
            cursor: pointer;
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent);
        }

        /* Preview Frame Device Styles */
        .preview-frame {
            border: 0;
            border-radius: 0;
            background: #fff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
        }

        .preview-frame.desktop-mode {
            width: 100%;
            height: 100%;
            border-radius: var(--radius-sm);
            border: 1px solid #e5e5e5;
        }

        .preview-frame.mobile-mode {
            width: 375px;
            height: 667px;
            margin: 0 auto;
            border: 12px solid #333;
            border-radius: 32px;
            box-shadow: 0 0 0 2px #555, 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        /* Scrollbar styles */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(150, 150, 150, 0.3);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(150, 150, 150, 0.5);
        }

        ::selection {
            background: var(--accent);
            color: white;
        }

        /* SİTE TEMALARI (Frontend) - unchanged */
        [data-theme="dark"] {
            --bg-primary: #0a0a0f;
            --bg-secondary: #12121a;
            --bg-tertiary: #1a1a24;
            --bg-card: rgba(255, 255, 255, 0.03);
            --bg-card-hover: rgba(255, 255, 255, 0.06);
            --bg-input: rgba(255, 255, 255, 0.05);
            --border-color: rgba(255, 255, 255, 0.08);
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --glass: rgba(18, 18, 26, 0.65);
            --glass-border: rgba(255, 255, 255, 0.1);
            --texture: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        /* DiÄŸer temalar aynÄ± kalacak */
        [data-theme="light"] {
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-tertiary: #f1f5f9;
            --bg-card: rgba(0, 0, 0, 0.02);
            --bg-card-hover: rgba(0, 0, 0, 0.04);
            --bg-input: rgba(0, 0, 0, 0.03);
            --border-color: rgba(0, 0, 0, 0.08);
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-muted: #94a3b8;
            --accent: #4f46e5;
            --accent-hover: #6366f1;
            --accent-soft: rgba(79, 70, 229, 0.1);
            --success: #16a34a;
            --success-soft: rgba(22, 163, 74, 0.1);
            --warning: #d97706;
            --warning-soft: rgba(217, 119, 6, 0.1);
            --danger: #dc2626;
            --danger-soft: rgba(220, 38, 38, 0.1);
            --glass: rgba(255, 255, 255, 0.75);
            --glass-border: rgba(255, 255, 255, 0.4);
            --texture: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        [data-theme="ocean"] {
            --bg-primary: #0c1929;
            --bg-secondary: #0f2137;
            --bg-tertiary: #132a46;
            --bg-card: rgba(255, 255, 255, 0.04);
            --bg-card-hover: rgba(255, 255, 255, 0.07);
            --bg-input: rgba(255, 255, 255, 0.06);
            --border-color: rgba(255, 255, 255, 0.1);
            --text-primary: #f0f9ff;
            --text-secondary: #7dd3fc;
            --text-muted: #38bdf8;
            --accent: #0ea5e9;
            --accent-hover: #38bdf8;
            --accent-soft: rgba(14, 165, 233, 0.2);
            --success: #2dd4bf;
            --success-soft: rgba(45, 212, 191, 0.15);
            --warning: #fbbf24;
            --warning-soft: rgba(251, 191, 36, 0.15);
            --danger: #f87171;
            --danger-soft: rgba(248, 113, 113, 0.15);
            --glass: rgba(12, 25, 41, 0.65);
            --glass-border: rgba(255, 255, 255, 0.1);
            --texture: none;
        }

        [data-theme="forest"] {
            --bg-primary: #0f1a14;
            --bg-secondary: #152419;
            --bg-tertiary: #1c2e21;
            --bg-card: rgba(255, 255, 255, 0.04);
            --bg-card-hover: rgba(255, 255, 255, 0.07);
            --bg-input: rgba(255, 255, 255, 0.06);
            --border-color: rgba(255, 255, 255, 0.1);
            --text-primary: #f0fdf4;
            --text-secondary: #86efac;
            --text-muted: #4ade80;
            --accent: #22c55e;
            --accent-hover: #4ade80;
            --accent-soft: rgba(34, 197, 94, 0.2);
            --success: #34d399;
            --success-soft: rgba(52, 211, 153, 0.15);
            --warning: #fcd34d;
            --warning-soft: rgba(252, 211, 77, 0.15);
            --danger: #fb7185;
            --danger-soft: rgba(251, 113, 133, 0.15);
            --glass: rgba(15, 26, 20, 0.65);
            --glass-border: rgba(255, 255, 255, 0.1);
            --texture: none;
        }

        [data-theme="cream"] {
            --bg-primary: #faf8f5;
            --bg-secondary: #f5f2ed;
            --bg-tertiary: #ebe7e0;
            --bg-card: rgba(139, 90, 43, 0.04);
            --bg-card-hover: rgba(139, 90, 43, 0.08);
            --bg-input: rgba(139, 90, 43, 0.05);
            --border-color: rgba(139, 90, 43, 0.12);
            --text-primary: #2c2416;
            --text-secondary: #5c4d3c;
            --text-muted: #8b7355;
            --accent: #a0714f;
            --accent-hover: #8b5a2b;
            --accent-soft: rgba(160, 113, 79, 0.15);
            --success: #5d8c5a;
            --success-soft: rgba(93, 140, 90, 0.15);
            --warning: #c9943a;
            --warning-soft: rgba(201, 148, 58, 0.15);
            --danger: #b85450;
            --danger-soft: rgba(184, 84, 80, 0.15);
            --glass: rgba(250, 248, 245, 0.75);
            --glass-border: rgba(139, 90, 43, 0.15);
            --texture: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%238b5a2b' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        /* HEADER & NAV */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-color);
            padding: 16px 0;
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .brand-logo {
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            color: white;
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
        }

        .brand-text h1 {
            font-size: 22px;
            font-weight: 600;
        }

        .brand-text span {
            font-size: 12px;
            color: var(--text-muted);
        }

        .search-box {
            flex: 1;
            max-width: 400px;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 12px 16px 12px 44px;
            background: var(--bg-input);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            color: var(--text-primary);
            font-size: 14px;
            transition: all var(--transition);
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--border-focus);
            background: var(--bg-card);
        }

        .search-box i {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .theme-selector {
            position: relative;
        }

        .theme-btn {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all var(--transition);
        }

        .theme-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 8px;
            min-width: 160px;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all var(--transition);
            z-index: 9999;
        }

        .theme-selector:hover .theme-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .theme-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            font-size: 13px;
            color: var(--text-secondary);
            transition: all var(--transition);
        }

        .theme-option:hover {
            background: var(--bg-card);
            color: var(--text-primary);
        }

        .theme-option.active {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .theme-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid var(--border-color);
        }

        .social-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all var(--transition);
            position: relative;
        }

        .social-link:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .social-link::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-8px);
            background: var(--bg-secondary);
            color: var(--text-primary);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            z-index: 100;
            pointer-events: none;
        }

        .social-link:hover::after {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-4px);
        }

        .main-nav {
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-color);
            padding: 12px 0;
        }

        .nav-tabs {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding-bottom: 4px;
        }

        .nav-tab {
            padding: 10px 20px;
            border-radius: var(--radius-lg);
            background: transparent;
            border: 1px solid transparent;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            transition: all var(--transition);
        }

        .nav-tab:hover {
            background: var(--bg-card);
            color: var(--text-primary);
        }

        .nav-tab.active {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
        }

        .sub-nav {
            display: flex;
            gap: 8px;
            padding: 16px 0;
            flex-wrap: wrap;
            min-height: 56px;
        }

        .sub-nav-btn {
            padding: 8px 16px;
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
        }

        .sub-nav-btn:hover {
            border-color: var(--text-muted);
            color: var(--text-primary);
        }

        .sub-nav-btn.active {
            background: var(--accent-soft);
            border-color: var(--accent);
            color: var(--accent);
        }

        /* FOOTER */
        .site-footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 40px 0;
            margin-top: auto;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            gap: 16px;
            flex-direction: row !important;
        }

        /* ZORLA YAN YANA */
        .copyright {
            color: var(--text-muted);
            font-size: 13px;
        }

        /* FRONTEND STYLES */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            z-index: 1001;
            pointer-events: none;
        }

        .progress-indicator {
            height: 100%;
            background: var(--accent);
            width: 0%;
            transition: width 0.1s;
            box-shadow: 0 0 10px var(--accent);
        }

        .content-area {
            padding: 32px 0 64px;
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-section {
            position: relative;
            width: 100%;
            height: 60vh;
            min-height: 500px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: 60px;
            box-shadow: var(--shadow-lg);
            transform: translateZ(0);
        }

        .hero-img {
            width: 100%;
            height: 110%;
            object-fit: cover;
            transition: transform 0.1s linear;
            will-change: transform;
        }

        .hero-overlay {
            position: absolute;
            bottom: 40px;
            left: 40px;
            right: 40px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            pointer-events: none;
        }

        .hero-card {
            background: var(--glass);
            -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            padding: 32px 40px;
            border-radius: var(--radius-lg);
            max-width: 700px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            pointer-events: auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: var(--accent);
            color: white;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .hero-title {
            font-size: 42px;
            font-family: var(--font-display);
            line-height: 1.1;
            color: var(--text-primary);
            margin: 0;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            animation: bounce 2s infinite;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            opacity: 0.8;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translate(-50%, 0);
            }

            40% {
                transform: translate(-50%, -10px);
            }

            60% {
                transform: translate(-50%, -5px);
            }
        }

        .article-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .article-sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
            padding-right: 24px;
            border-right: 1px solid var(--border-color);
            background-image: var(--texture);
        }

        .meta-group {
            margin-bottom: 32px;
        }

        .meta-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .meta-value {
            font-size: 16px;
            color: var(--text-primary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .meta-divider {
            height: 1px;
            background: var(--border-color);
            margin: 24px 0;
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag {
            font-size: 12px;
            padding: 4px 10px;
            background: var(--bg-card);
            border-radius: 12px;
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
            cursor: pointer;
        }

        .tag:hover {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .article-content {
            font-size: 19px;
            line-height: 1.8;
            color: var(--text-secondary);
            font-family: var(--font-display);
            background: var(--bg-card);
            padding: 40px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
        }

        .article-content p {
            margin-bottom: 24px;
        }

        .article-content>p:first-of-type::first-letter {
            float: left;
            font-size: 4.8em;
            line-height: 0.8;
            font-weight: 700;
            margin-right: 16px;
            margin-top: 4px;
            color: var(--accent);
            font-family: var(--font-display);
            text-shadow: 2px 2px 0px var(--bg-tertiary);
        }

        .separator-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0 40px;
            color: var(--accent);
            opacity: 0.5;
        }

        .separator-icon::before,
        .separator-icon::after {
            content: "";
            width: 40px;
            height: 1px;
            background: currentColor;
            margin: 0 10px;
        }

        .article-content h3 {
            font-size: 28px;
            margin: 48px 0 24px;
            color: var(--text-primary);
        }

        .article-content ul,
        .article-content ol {
            margin: 24px 0;
            padding-left: 24px;
        }

        .article-content li {
            margin-bottom: 12px;
        }

        .article-content blockquote {
            border-left: 4px solid var(--accent);
            padding-left: 16px;
            margin: 16px 0;
            font-style: italic;
            color: var(--text-secondary);
            background: var(--bg-tertiary);
            padding: 12px;
            border-radius: 4px;
        }

        /* GALLERY STYLES */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .gallery-item {
            border-radius: var(--radius-md);
            overflow: hidden;
            cursor: zoom-in;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            background: var(--bg-card);
            position: relative;
        }

        .gallery-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-caption {
            padding: 12px 16px;
            font-size: 13px;
            color: var(--text-muted);
            font-style: italic;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }

        /* Watermark */
        .gallery-item::after {
            content: "Feyyaz Ko\00E7";
            position: absolute;
            bottom: 10px;
            right: 10px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            pointer-events: none;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
            font-family: var(--font-display);
        }

        .article-nav {
            display: flex;
            justify-content: space-between;
            gap: 24px;
            margin-top: 80px;
            padding-top: 40px;
            border-top: 1px solid var(--border-color);
        }

        .nav-link-card {
            flex: 1;
            padding: 24px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .nav-link-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
        }

        .nav-label {
            font-size: 12px;
            text-transform: uppercase;
            color: var(--text-muted);
            font-weight: 600;
        }

        .nav-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            font-family: var(--font-display);
        }

        .empty-state {
            text-align: center;
            padding: 80px 24px;
        }

        .empty-state i {
            font-size: 64px;
            color: var(--text-muted);
            margin-bottom: 24px;
            display: block;
        }

        .empty-state h3 {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .empty-state p {
            color: var(--text-muted);
            max-width: 400px;
            margin: 0 auto;
        }

        .action-btn {
            display: inline-block;
            padding: 12px 24px;
            background: var(--accent);
            color: white;
            border-radius: var(--radius-md);
            font-weight: 600;
            margin-top: 24px;
            text-align: center;
            transition: all var(--transition);
        }

        .action-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            opacity: 0.9;
        }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: var(--radius-md);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all var(--transition);
        }

        .btn-primary {
            background: var(--accent);
            color: white;
        }

        .btn-primary:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            color: var(--text-primary);
        }

        .btn-secondary:hover {
            background: var(--bg-card-hover);
            border-color: var(--text-muted);
        }

        .btn-danger {
            background: var(--danger-soft);
            color: var(--danger);
        }

        .btn-danger:hover {
            background: var(--danger);
            color: white;
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 13px;
        }

        /* ADMIN PANEL BUTTON OVERRIDES */
        .admin-panel .btn-secondary {
            background: rgba(255, 255, 255, 0.5);
            color: var(--admin-text);
            border-color: var(--admin-border);
        }

        .admin-panel .btn-secondary:hover {
            background: var(--admin-border);
            color: var(--admin-text);
        }

        .admin-panel .btn-primary {
            background: var(--accent);
            color: #ffffff;
        }

        /* ADMIN STYLES */
        .admin-panel {
            position: fixed;
            inset: 0;
            background: var(--admin-bg);
            z-index: 500;
            display: none;
            overflow: hidden;
            color: var(--admin-text);
        }

        .admin-panel.active {
            display: block;
        }

        .admin-header {
            background: var(--admin-card-bg);
            border-bottom: 1px solid var(--admin-border);
            padding: 16px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            z-index: 100;
            position: relative;
        }

        .admin-header-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .admin-header h2 {
            font-size: 18px;
            font-family: var(--font-main);
            font-weight: 600;
        }

        .save-status {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: var(--radius-lg);
            font-size: 13px;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        .save-status.saved {
            background: var(--success-soft);
            color: var(--success);
        }

        .save-status.unsaved {
            background: var(--warning-soft);
            color: var(--warning);
        }

        .save-status.saving {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .admin-header-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .admin-body {
            display: flex;
            height: calc(100vh - 73px);
            overflow: hidden;
            position: relative;
            background: var(--admin-bg);
        }

        /* Flexbox handles responsiveness better, but we keep mobile overrides if needed */
        @media (max-width: 1200px) {
            .preview-panel {
                display: none !important;
            }

            .sidebar-panel {
                position: absolute;
                right: 0;
                top: 0;
                bottom: 0;
                z-index: 100;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
        }

        .editor-panel {
            flex: 1;
            min-width: 0;
            padding: 24px;
            overflow-y: auto;
            border-right: 1px solid var(--admin-border);
            display: flex;
            flex-direction: column;
            background: var(--admin-bg);
        }

        .editor-tabs {
            display: flex;
            gap: 4px;
            background: var(--admin-card-bg);
            padding: 4px;
            border-radius: var(--radius-md);
            margin-bottom: 24px;
            border: 1px solid var(--admin-border);
        }

        .editor-tab {
            flex: 1;
            padding: 10px 16px;
            border: none;
            background: transparent;
            color: var(--admin-text);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            opacity: 0.7;
        }

        .editor-tab:hover {
            opacity: 1;
        }

        .editor-tab.active {
            background: var(--accent);
            color: white;
            box-shadow: var(--shadow-sm);
            opacity: 1;
        }

        .tab-panel {
            display: none;
        }

        .tab-panel.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        .editor-toolbar {
            display: flex;
            gap: 4px;
            padding: 8px;
            background: var(--admin-card-bg);
            border: 1px solid var(--admin-border);
            border-bottom: none;
            border-radius: var(--radius-md) var(--radius-md) 0 0;
            flex-wrap: wrap;
        }

        .toolbar-btn {
            width: 36px;
            height: 36px;
            border: none;
            background: transparent;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all var(--transition);
        }

        .toolbar-btn:hover {
            background: var(--admin-border);
            color: var(--admin-text);
        }

        .toolbar-btn.active {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .toolbar-divider {
            width: 1px;
            background: var(--admin-border);
            margin: 4px 8px;
        }

        .content-editor {
            min-height: 300px;
            padding: 20px;
            background: var(--admin-card-bg);
            border: 1px solid var(--admin-border);
            border-radius: 0 0 var(--radius-md) var(--radius-md);
            color: var(--admin-text);
            font-size: 15px;
            line-height: 1.8;
            outline: none;
            overflow-y: auto;
        }

        .content-editor:focus {
            border-color: var(--accent);
        }

        .content-editor:empty::before {
            content: attr(data-placeholder);
            color: var(--text-muted);
        }

        .content-editor b,
        .content-editor strong {
            font-weight: 700;
            color: var(--text-primary);
        }

        .content-editor i,
        .content-editor em {
            font-style: italic;
        }

        .content-editor h3 {
            font-size: 20px;
            font-weight: 600;
            margin: 16px 0 8px;
            color: var(--text-primary);
        }

        .content-editor ul {
            margin: 12px 0;
            padding-left: 24px;
        }

        .content-editor a {
            color: var(--accent);
            text-decoration: underline;
        }

        .content-editor blockquote {
            border-left: 4px solid var(--accent);
            padding-left: 16px;
            margin: 16px 0;
            font-style: italic;
            color: var(--text-secondary);
            background: var(--bg-tertiary);
            padding: 12px;
            border-radius: 4px;
        }

        .upload-zone {
            border: 2px dashed var(--admin-border);
            border-radius: var(--radius-lg);
            padding: 40px;
            text-align: center;
            cursor: pointer;
            transition: all var(--transition);
            margin-bottom: 20px;
            background: var(--admin-card-bg);
        }

        .upload-zone:hover,
        .upload-zone.dragover {
            border-color: var(--accent);
            background: var(--accent-soft);
        }

        .upload-zone i {
            font-size: 48px;
            color: var(--admin-text);
            opacity: 0.4;
            margin-bottom: 16px;
            display: block;
        }

        .upload-zone h4 {
            font-size: 16px;
            margin-bottom: 8px;
            color: var(--admin-text);
        }

        .upload-zone p {
            font-size: 13px;
            color: var(--admin-text);
            opacity: 0.6;
        }

        .upload-progress {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 16px;
            margin-bottom: 16px;
            display: none;
        }

        .upload-progress.active {
            display: block;
        }

        .progress-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .progress-header span {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .progress-bar {
            height: 6px;
            background: var(--bg-tertiary);
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--accent-hover));
            border-radius: 3px;
            transition: width 0.3s ease;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 16px;
            padding: 4px;
            overflow-y: auto;
        }

        .image-card {
            position: relative;
            aspect-ratio: 1;
            border-radius: var(--radius-md);
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all var(--transition);
            background: var(--bg-input);
        }

        .image-card:hover {
            border-color: var(--accent);
        }

        .image-card.selected {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px var(--accent-soft);
        }

        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .image-card:hover img {
            transform: scale(1.1);
        }

        .image-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            opacity: 0;
            transition: opacity var(--transition);
            display: flex;
            align-items: flex-end;
            padding: 8px;
        }

        .image-card:hover .image-card-overlay {
            opacity: 1;
        }

        .image-card-actions {
            display: flex;
            gap: 4px;
            width: 100%;
        }

        .image-card-actions button {
            flex: 1;
            padding: 6px;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 12px;
            cursor: pointer;
        }

        .image-card-actions .delete-btn {
            background: var(--danger);
            color: white;
        }

        .preview-panel {
            width: 420px;
            flex-shrink: 0;
            padding: 24px;
            overflow-y: auto;
            background: var(--admin-card-bg);
            border-left: 1px solid var(--admin-border);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .preview-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .preview-header h3 {
            font-size: 14px;
            font-family: var(--font-main);
            color: var(--admin-text);
            font-weight: 500;
            opacity: 0.7;
        }

        .preview-frame {
            background: var(--admin-bg);
            border: 1px solid var(--admin-border);
            border-radius: var(--radius-lg);
            padding: 24px;
            min-height: 400px;
            overflow: hidden;
            transition: all 0.3s ease;
            flex: 1;
            color: var(--admin-text);
        }

        .preview-frame.mobile {
            max-width: 375px;
            margin: 0 auto;
        }

        .preview-frame.fullscreen {
            position: fixed;
            inset: 0;
            z-index: 2000;
            width: 100%;
            height: 100%;
            max-width: none;
            border-radius: 0;
            border: none;
        }

        .sidebar-panel {
            width: 320px;
            flex-shrink: 0;
            padding: 24px;
            overflow-y: auto;
            background: var(--admin-bg);
            border-left: 1px solid var(--admin-border);
            transition: margin-right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 20;
        }

        .sidebar-panel.collapsed {
            margin-right: -320px;
        }

        /* NEW FEATURE STYLES */
        .sidebar-toggle-btn {
            position: absolute;
            left: -12px;
            top: 24px;
            width: 24px;
            height: 24px;
            background: var(--admin-card-bg);
            border: 1px solid var(--admin-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            color: var(--text-muted);
            z-index: 25;
            transition: all 0.2s;
        }

        .sidebar-toggle-btn:hover {
            color: var(--accent);
            transform: scale(1.1);
        }

        .sidebar-panel.collapsed .sidebar-toggle-btn i {
            transform: rotate(180deg);
        }

        .ai-assist-btn {
            background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
            color: white;
            border: none;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
            transition: transform 0.1s;
        }

        .ai-assist-btn:hover {
            transform: translateY(-1px);
        }

        /* Editor Stats Bar */
        .editor-stats-bar {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 8px;
            padding: 8px 12px;
            background: var(--admin-input-bg);
            border-radius: var(--radius-sm);
            font-size: 11px;
            color: var(--text-muted);
            border: 1px solid var(--admin-border);
        }

        .editor-stat-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Focus Mode Styles */
        body.focus-active .admin-header,
        body.focus-active .sidebar-panel,
        body.focus-active .preview-panel {
            opacity: 0.1;
            pointer-events: none;
            filter: blur(4px);
            transition: all 0.5s ease;
        }

        body.focus-active .editor-panel {
            box-shadow: 0 0 0 100vmax var(--admin-bg);
            z-index: 100;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .sidebar-section {
            margin-bottom: 32px;
        }

        .sidebar-section h4 {
            font-size: 12px;
            font-family: var(--font-main);
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .content-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .content-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all var(--transition);
        }

        .content-item:hover {
            background: var(--bg-card-hover);
            border-color: var(--text-muted);
        }

        .content-item.active {
            background: var(--accent-soft);
            border-color: var(--accent);
            color: var(--accent);
        }

        .content-item-icon {
            width: 32px;
            height: 32px;
            border-radius: var(--radius-sm);
            background: var(--bg-tertiary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
        }

        .content-item-info {
            flex: 1;
            min-width: 0;
        }

        .content-item-title {
            font-size: 13px;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .content-item-meta {
            font-size: 11px;
            color: var(--text-muted);
        }

        .content-item-status {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .content-item-status.published {
            background: var(--success);
        }

        .content-item-status.draft {
            background: var(--warning);
        }

        .danger-zone {
            background: var(--danger-soft);
            border: 1px solid var(--danger);
            border-radius: var(--radius-md);
            padding: 16px;
        }

        .danger-zone h5 {
            color: var(--danger);
            font-size: 12px;
            margin-bottom: 12px;
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .stat-card {
            background: var(--admin-card-bg);
            border: 1px solid var(--admin-border);
            border-radius: var(--radius-lg);
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .stat-value {
            font-size: 32px;
            font-weight: 700;
            color: var(--admin-text);
            font-family: var(--font-display);
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .stat-icon {
            font-size: 24px;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .weather-widget {
            position: relative;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 16px;
            background: var(--admin-card-bg);
            border-radius: var(--radius-md);
            font-size: 14px;
            color: var(--admin-text);
            border: 1px solid var(--admin-border);
            cursor: help;
        }

        .weather-icon {
            font-size: 20px;
            color: var(--accent);
        }

        .weather-tooltip {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 12px;
            width: 200px;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition);
            z-index: 100;
            font-size: 13px;
            color: var(--text-primary);
        }

        .weather-widget:hover .weather-tooltip {
            opacity: 1;
            visibility: visible;
        }

        .weather-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 4px;
        }

        body.zen-active .admin-body {
            grid-template-columns: 1fr;
        }

        body.zen-active .sidebar-panel,
        body.zen-active .preview-panel,
        body.zen-active .admin-header-left button,
        body.zen-active .admin-header-right {
            display: none;
        }

        body.zen-active .admin-header {
            justify-content: center;
        }

        body.zen-active .editor-panel {
            border: none;
            max-width: 800px;
            margin: 0 auto;
        }

        body.zen-active .zen-exit-btn {
            display: block !important;
        }

        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 24px;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 40px;
            width: 100%;
            max-width: 400px;
            box-shadow: var(--shadow-lg);
        }

        .modal-card h2 {
            text-align: center;
            margin-bottom: 8px;
        }

        .modal-card>p {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            background: var(--bg-input);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            color: var(--text-primary);
            font-size: 15px;
            transition: all var(--transition);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-soft);
        }

        .form-input::placeholder {
            color: var(--text-muted);
        }

        /* THUMBNAIL INPUT STYLES */
        .thumbnail-preview {
            width: 100%;
            height: 200px;
            border: 2px dashed var(--border-color);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            overflow: hidden;
            background: var(--bg-input);
            position: relative;
            transition: all var(--transition);
        }

        .thumbnail-preview:hover {
            border-color: var(--accent);
            background: var(--accent-soft);
        }

        .thumbnail-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .thumbnail-preview i {
            font-size: 32px;
            color: var(--text-muted);
        }

        .thumbnail-preview span {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            pointer-events: none;
        }

        /* MEDIA STUDIO STYLES */
        .media-studio-grid {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 24px;
            height: 100%;
        }

        .media-sidebar {
            border-right: 1px solid var(--border-color);
            padding-right: 24px;
            overflow-y: auto;
        }

        .media-main {
            overflow-y: auto;
            padding-bottom: 24px;
        }

        .media-control-group {
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border-color);
        }

        .media-control-title {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        /* MODERN SLIDER TASARIMI (iOS Style) */
        .range-slider {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 6px;
            background: var(--bg-tertiary);
            border-radius: 4px;
            outline: none;
            margin: 10px 0;
            cursor: pointer;
            position: relative;
        }

        .range-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #ffffff;
            border: 2px solid var(--accent);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.2s ease;
            margin-top: -7px;
        }

        .range-slider::-webkit-slider-thumb:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .range-slider::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border: none;
            border-radius: 50%;
            background: #ffffff;
            border: 2px solid var(--accent);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            cursor: pointer;
        }

        .layout-options {
            display: flex;
            gap: 8px;
        }

        .layout-btn {
            flex: 1;
            padding: 8px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            background: var(--bg-card);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.2s;
        }

        .layout-btn.active {
            background: var(--accent-soft);
            border-color: var(--accent);
            color: var(--accent);
        }

        .layout-btn:hover {
            border-color: var(--text-muted);
        }

        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90vh;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }

        .lightbox-close {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* TOAST BÄ°LDÄ°RÄ°MLERÄ° */
        .toast-container {
            position: fixed;
            bottom: 24px;
            right: 24px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            z-index: 3000;
        }

        .toast {
            min-width: 220px;
            max-width: 320px;
            padding: 10px 14px;
            border-radius: 10px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-md);
            font-size: 13px;
            color: var(--text-primary);
            display: flex;
            align-items: flex-start;
            gap: 8px;
            animation: fadeIn 0.2s ease-out;
        }

        .toast-success {
            border-color: var(--success);
        }

        .toast-error {
            border-color: var(--danger);
        }

        .toast-warning {
            border-color: var(--warning);
        }

        .toast-icon {
            margin-top: 2px;
        }

        @media (max-width: 900px) {
            .header-inner {
                flex-wrap: wrap;
            }

            .search-box {
                order: 3;
                max-width: 100%;
                width: 100%;
                margin-top: 16px;
            }

            .brand-text span {
                display: none;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .hero-section {
                height: 50vh;
            }

            .hero-overlay {
                left: 20px;
                right: 20px;
                bottom: 20px;
            }

            .hero-card {
                padding: 24px;
            }

            .hero-title {
                font-size: 32px;
            }

            .article-layout {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .article-sidebar {
                position: static;
                display: flex;
                flex-wrap: wrap;
                gap: 24px;
                border-bottom: 1px solid var(--border-color);
                padding-bottom: 24px;
                margin-bottom: 24px;
                border-right: none;
                background-image: none;
            }

            .meta-group {
                margin-bottom: 0;
            }

            .meta-divider {
                display: none;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .media-studio-grid {
                grid-template-columns: 1fr;
            }

            .media-sidebar {
                border-right: none;
                border-bottom: 1px solid var(--border-color);
                padding-bottom: 24px;
                margin-bottom: 24px;
            }
        }

        /* FORM INPUTS */
        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--admin-text);
            margin-bottom: 6px;
        }

        .form-input {
            width: 100%;
            padding: 10px 14px;
            background: var(--admin-card-bg);
            border: 1px solid var(--admin-border);
            border-radius: var(--radius-sm);
            color: var(--admin-text);
            font-size: 14px;
            font-family: var(--font-main);
            transition: all var(--transition);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-soft);
        }

        .form-input::placeholder {
            color: var(--admin-text);
            opacity: 0.4;
        }

        textarea.form-input {
            resize: vertical;
            min-height: 80px;
        }

        .hide {
            display: none !important;
        }

        /* ADMIN PANEL CORE STYLES */
        .admin-panel {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: var(--admin-bg);
            overflow: hidden;
        }

        .admin-panel.active {
            display: flex;
            flex-direction: column;
        }

        .admin-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 24px;
            background: var(--admin-card-bg);
            border-bottom: 1px solid var(--admin-border);
            flex-shrink: 0;
            gap: 16px;
        }

        .admin-header-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .admin-header-left h2 {
            font-size: 18px;
            font-weight: 600;
            color: var(--admin-text);
            margin: 0;
        }

        .admin-header-right {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .admin-body {
            display: grid;
            grid-template-columns: 1fr 420px 320px;
            flex: 1;
            overflow: hidden;
        }

        .editor-panel {
            padding: 24px;
            overflow-y: auto;
            background: var(--admin-bg);
            border-right: 1px solid var(--admin-border);
        }

        .editor-tabs {
            display: flex;
            gap: 4px;
            margin-bottom: 24px;
            border-bottom: 1px solid var(--admin-border);
            padding-bottom: 12px;
            flex-wrap: wrap;
        }

        .editor-tab {
            padding: 8px 16px;
            border: none;
            background: transparent;
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all var(--transition);
        }

        .editor-tab:hover {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .editor-tab.active {
            background: var(--accent);
            color: white;
        }

        .tab-panel {
            display: none;
        }

        .tab-panel.active {
            display: block;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .save-status {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            font-size: 12px;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        .save-status.saved {
            background: var(--success-soft);
            color: var(--success);
        }

        .save-status.unsaved {
            background: var(--warning-soft);
            color: var(--warning);
        }

        .save-status.saving {
            background: var(--accent-soft);
            color: var(--accent);
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 18px;
            border: none;
            border-radius: var(--radius-md);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
            font-family: var(--font-main);
        }

        .btn-primary {
            background: var(--accent);
            color: white;
        }

        .btn-primary:hover {
            filter: brightness(1.1);
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: var(--admin-card-bg);
            color: var(--admin-text);
            border: 1px solid var(--admin-border);
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .btn-danger {
            background: var(--danger);
            color: white;
        }

        .btn-danger:hover {
            filter: brightness(1.1);
        }

        .btn-sm {
            padding: 6px 12px;
            font-size: 12px;
        }

        .upload-zone {
            border: 2px dashed var(--admin-border);
            border-radius: var(--radius-md);
            padding: 40px;
            text-align: center;
            cursor: pointer;
            transition: all var(--transition);
            background: var(--admin-card-bg);
        }

        .upload-zone:hover,
        .upload-zone.dragover {
            border-color: var(--accent);
            background: var(--accent-soft);
        }

        .upload-zone i {
            font-size: 48px;
            color: var(--text-muted);
            margin-bottom: 12px;
            display: block;
        }

        .upload-zone p {
            color: var(--text-muted);
            font-size: 14px;
        }

        .upload-progress {
            display: none;
        }

        .upload-progress.active {
            display: block;
        }

        .progress-bar {
            height: 6px;
            background: var(--admin-border);
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .content-editor {
            min-height: 300px;
            padding: 16px;
            background: var(--admin-card-bg);
            border: 1px solid var(--admin-border);
            border-radius: var(--radius-md);
            color: var(--admin-text);
            line-height: 1.8;
            font-size: 15px;
            outline: none;
            overflow-y: auto;
        }

        .content-editor:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-soft);
        }

        .content-editor:empty::before {
            content: attr(data-placeholder);
            color: var(--text-muted);
            pointer-events: none;
        }

        .editor-toolbar {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            padding: 8px;
            background: var(--admin-card-bg);
            border: 1px solid var(--admin-border);
            border-bottom: none;
            border-radius: var(--radius-md) var(--radius-md) 0 0;
        }

        .toolbar-btn {
            width: 32px;
            height: 32px;
            border: none;
            background: transparent;
            color: var(--admin-text);
            border-radius: var(--radius-sm);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.15s;
        }

        .toolbar-btn:hover {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .toolbar-divider {
            width: 1px;
            height: 24px;
            background: var(--admin-border);
            margin: 0 4px;
        }

        /* SIDEBAR PANEL */
        .sidebar-panel {
            width: 300px;
            flex-shrink: 0;
            padding: 24px;
            overflow-y: auto;
            background: var(--admin-bg);
            border-left: 1px solid var(--admin-border);
            transition: width 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
            position: relative;
        }

        .sidebar-panel.collapsed {
            width: 0;
            padding: 0;
            overflow: visible;
            /* Fixed butonun görünmesi için */
            border-left: none;
        }

        .sidebar-panel.collapsed .sidebar-section {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s;
        }

        /* Preview panel genişlesin */
        .preview-panel {
            flex: 1;
            transition: flex 0.3s ease;
        }

        .sidebar-toggle-btn {
            position: absolute;
            left: -12px;
            top: 24px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--admin-card-bg);
            border: 1px solid var(--admin-border);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            color: var(--text-muted);
            z-index: 25;
            transition: all 0.2s;
        }

        .sidebar-toggle-btn:hover {
            color: var(--accent);
            transform: scale(1.1);
        }

        .sidebar-panel.collapsed .sidebar-toggle-btn {
            position: fixed;
            right: 16px;
            top: 80px;
            left: auto;
            width: 40px;
            height: 40px;
            background: var(--accent);
            color: white;
            border: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .sidebar-panel.collapsed .sidebar-toggle-btn:hover {
            transform: scale(1.1);
        }

        .sidebar-panel.collapsed .sidebar-toggle-btn i {
            transform: rotate(180deg);
        }

        .sidebar-section h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--admin-text);
            margin-bottom: 16px;
        }

        .content-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .content-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: var(--admin-card-bg);
            border: 1px solid var(--admin-border);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.2s;
        }

        .content-item:hover {
            border-color: var(--accent);
            transform: translateX(4px);
        }

        .content-item.active {
            border-color: var(--accent);
            background: var(--accent-soft);
        }

        .content-item-icon {
            width: 36px;
            height: 36px;
            background: var(--admin-bg);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
        }

        .content-item-info {
            flex: 1;
            min-width: 0;
        }

        .content-item-title {
            font-weight: 500;
            color: var(--admin-text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .content-item-meta {
            font-size: 12px;
            color: var(--text-muted);
        }

        .content-item-status {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .content-item-status.published {
            background: var(--success);
        }

        .content-item-status.draft {
            background: var(--warning);
        }

        /* THUMBNAIL UPLOAD ZONE */
        .thumbnail-preview {
            border: 2px dashed var(--admin-border);
            border-radius: var(--radius-md);
            padding: 24px;
            text-align: center;
            background: var(--admin-card-bg);
            transition: all 0.2s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            position: relative;
            min-height: 140px;
            justify-content: center;
        }

        .thumbnail-preview:hover {
            border-color: var(--accent);
            background: var(--accent-soft);
        }

        .thumbnail-preview i {
            font-size: 32px;
            color: var(--text-muted);
        }

        /* FIXED LAYOUT & INTERACTION RULES */
        .admin-body {
            display: flex;
            height: calc(100vh - 60px);
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .preview-panel {
            flex: 1;
            transition: flex 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .sidebar-panel {
            z-index: 1000;
        }

        .sidebar-toggle-btn {
            z-index: 1001;
            cursor: pointer;
        }

        .theme-dropdown.active {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }

        /* PRELOADER STYLES */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-body);
            z-index: 999999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        #preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .loader-spinner {
            width: 48px;
            height: 48px;
            border: 3px solid var(--border-color);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .loader-text {
            font-family: var(--font-header);
            font-size: 16px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-main);
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }
        }

        /* LOGIN MODAL FIX - PREVENT FLASH */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .admin-hidden-link {
            opacity: 0.1;
            color: inherit;
            text-decoration: none;
            margin-left: 10px;
            font-size: 11px;
        }

        /* GENERATED UTILITY CLASSES (FROM INLINE STYLES) */
        .u-style-1 {
            background: #0a0a0f !important;
        }

        .u-style-2 {
            background: #fff !important;
            border-color: #ddd !important;
        }

        .u-style-3 {
            background: #0c1929 !important;
        }

        .u-style-4 {
            background: #0f1a14 !important;
        }

        .u-style-5 {
            background: #faf8f5 !important;
            border-color: #ddd !important;
        }

        .u-style-6 {
            position: relative !important;
        }

        .u-style-7 {
            padding-right: 40px !important;
        }

        .u-style-8 {
            position: absolute !important;
            right: 10px !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            background: none !important;
            border: none !important;
            color: var(--text-muted) !important;
            cursor: pointer !important;
        }

        .u-style-9 {
            width: 100% !important;
            margin-top: 8px !important;
        }

        .u-style-10 {
            width: 100% !important;
            margin-top: 12px !important;
        }

        .u-style-11 {
            max-width: 350px !important;
            text-align: center !important;
        }

        .u-style-12 {
            font-size: 48px !important;
            color: var(--warning) !important;
            margin-bottom: 16px !important;
            display: block !important;
        }

        .u-style-13 {
            display: flex !important;
            gap: 12px !important;
            margin-top: 24px !important;
        }

        .u-style-14 {
            flex: 1 !important;
        }

        .u-style-15 {
            display: flex !important;
            align-items: center !important;
            gap: 12px !important;
        }

        .u-style-16 {
            display: flex !important;
            align-items: center !important;
            gap: 8px !important;
        }

        .u-style-17 {
            font-size: 13px !important;
            opacity: 0.8 !important;
            font-weight: 500 !important;
        }

        .u-style-18 {
            font-family: monospace !important;
            font-weight: 600 !important;
        }

        .u-style-19 {
            font-weight: 600 !important;
            margin-bottom: 8px !important;
            color: var(--accent) !important;
        }

        .u-style-20 {
            width: 140px !important;
        }

        .u-style-21 {
            background: #0f172a !important;
        }

        .u-style-22 {
            background: #ecfeff !important;
        }

        .u-style-23 {
            background: #f0fdf4 !important;
        }

        .u-style-24 {
            background: #fffbeb !important;
        }

        .u-style-25 {
            background: #fdf2f8 !important;
        }

        .u-style-26 {
            background: #fff7ed !important;
        }

        .u-style-27 {
            background: #f5f3ff !important;
        }

        .u-style-28 {
            background: #000 !important;
        }

        .u-style-29 {
            background: #fff !important;
            border: 1px solid #000 !important;
        }

        .u-style-30 {
            display: none !important;
        }

        .u-style-31 {
            position: absolute !important;
            right: 20px !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            opacity: 0.2 !important;
        }

        .u-style-32 {
            display: grid !important;
            grid-template-columns: 2fr 1fr !important;
            gap: 24px !important;
            margin-top: 24px !important;
        }

        .u-style-33 {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            margin-bottom: 12px !important;
        }

        .u-style-34 {
            margin: 0 !important;
        }

        .u-style-35 {
            font-size: 11px !important;
            color: var(--text-muted) !important;
        }

        .u-style-36 {
            width: 100% !important;
            height: 120px !important;
            padding: 12px !important;
            border-radius: var(--radius-md) !important;
            border: 1px solid var(--admin-border) !important;
            background: var(--admin-bg) !important;
            color: var(--admin-text) !important;
            resize: none !important;
            font-family: var(--font-main) !important;
        }

        .u-style-37 {
            margin-top: 24px !important;
        }

        .u-style-38 {
            display: flex !important;
            align-items: center !important;
            gap: 16px !important;
        }

        .u-style-39 {
            width: 48px !important;
            height: 48px !important;
            background: rgba(255, 255, 255, 0.9) !important;
            border-radius: 12px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
        }

        .u-style-40 {
            margin: 0 !important;
            color: var(--admin-text) !important;
        }

        .u-style-41 {
            margin: 2px 0 0 !important;
            font-size: 13px !important;
            color: var(--text-muted) !important;
        }

        .u-style-42 {
            color: var(--text-muted) !important;
        }

        .u-style-43 {
            position: relative !important;
            height: 120px !important;
            background: var(--admin-card-bg) !important;
            border-radius: var(--radius-md) !important;
            padding: 16px !important;
            border: 1px solid var(--border-color) !important;
            margin-bottom: 12px !important;
        }

        .u-style-44 {
            background: var(--admin-card-bg) !important;
            border-radius: var(--radius-md) !important;
            padding: 16px !important;
            border: 1px solid var(--border-color) !important;
        }

        .u-style-45 {
            font-size: 18px !important;
            font-weight: 600 !important;
            color: var(--admin-text) !important;
            margin-bottom: 4px !important;
        }

        .u-style-46 {
            font-size: 12px !important;
            color: var(--text-muted) !important;
            margin-bottom: 12px !important;
        }

        .u-style-47 {
            width: 100% !important;
        }

        .u-style-48 {
            display: flex !important;
            gap: 8px !important;
        }

        .u-style-49 {
            pointer-events: none !important;
        }

        .u-style-50 {
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            opacity: 0 !important;
            cursor: pointer !important;
        }

        .u-style-51 {
            margin-top: 8px !important;
        }

        .u-style-52 {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            margin-bottom: 8px !important;
        }

        .u-style-53 {
            display: flex !important;
            gap: 12px !important;
        }

        .u-style-54 {
            position: relative !important;
            display: inline-block !important;
        }

        .u-style-55 {
            margin-left: auto !important;
        }

        .u-style-56 {
            color: var(--accent) !important;
        }

        .u-style-57 {
            margin-left: auto !important;
            color: var(--success) !important;
        }

        .u-style-58 {
            margin-top: 16px !important;
            padding: 16px !important;
            background: var(--admin-card-bg) !important;
            border-radius: var(--radius-md) !important;
            border: 1px solid var(--admin-border) !important;
        }

        .u-style-59 {
            font-size: 13px !important;
            font-weight: 600 !important;
            margin-bottom: 8px !important;
            display: block !important;
        }

        .u-style-60 {
            margin-top: 16px !important;
        }

        .u-style-61 {
            margin-bottom: 8px !important;
            display: block !important;
        }

        .u-style-62 {
            padding: 20px !important;
        }

        .u-style-63 {
            font-size: 32px !important;
        }

        .u-style-64 {
            font-size: 12px !important;
        }

        .u-style-65 {
            display: flex !important;
            justify-content: space-between !important;
            margin-bottom: 4px !important;
            font-size: 12px !important;
        }

        .u-style-66 {
            font-weight: bold !important;
            color: var(--accent) !important;
        }

        .u-style-67 {
            width: 0% !important;
        }

        .u-style-68 {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            margin-bottom: 16px !important;
            flex-wrap: wrap !important;
            gap: 12px !important;
        }

        .u-style-69 {
            display: flex !important;
            gap: 8px !important;
            flex: 1 !important;
            max-width: 300px !important;
        }

        .u-style-70 {
            padding: 8px 12px !important;
            font-size: 13px !important;
        }

        .u-style-71 {
            margin-bottom: 12px !important;
            display: none !important;
        }

        .u-style-72 {
            font-size: 13px !important;
            color: var(--text-muted) !important;
            margin-left: 8px !important;
        }

        .u-style-73 {
            grid-column: 1/-1 !important;
            text-align: center !important;
            color: var(--text-muted) !important;
        }

        .u-style-74 {
            margin-top: 40px !important;
        }

        .u-style-75 {
            width: 100% !important;
            margin-top: 16px !important;
        }

        .u-style-76 {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            margin-bottom: 16px !important;
        }

        .analytics-logo {
            font-size: 28px;
            color: #f59e0b;
        }


        #preview-content {
            height: 100%;
            overflow-y: auto;
            padding-right: 4px;
        }

        /* ==================== SAVE STATUS FIX ==================== */
        .save-status {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: var(--radius-md);
            font-size: 13px;
            font-weight: 500;
            transition: opacity 0.5s ease, transform 0.3s ease;
        }

        .save-status.saved {
            background: var(--success-soft, rgba(34, 197, 94, 0.1));
            color: var(--success, #22c55e);
        }

        .save-status.unsaved {
            background: var(--warning-soft, rgba(245, 158, 11, 0.1));
            color: var(--warning, #f59e0b);
        }

        .save-status.saving {
            background: var(--accent-soft);
            color: var(--accent);
        }


        .save-status.hidden {
            opacity: 0;
            pointer-events: none;
        }

        /* NEW VISITOR CARD STYLES */
        .visitor-list-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-height: 250px;
            overflow-y: auto;
            padding-right: 4px;
        }

        .visitor-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        }

        .visitor-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border-color: var(--accent-light);
        }

        .visitor-icon-box {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--bg-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 20px;
        }

        .visitor-info {
            flex: 1;
        }

        .visitor-location {
            font-weight: 500;
            font-size: 14px;
            color: var(--text-color);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .visitor-time {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .visitor-badge {
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 6px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .badge-gps {
            background: #dcfce7;
            color: #166534;
        }

        .badge-ip {
            background: #f3f4f6;
            color: #4b5563;
        }

        /* NEW STORAGE WIDGET STYLES */
        .storage-widget-card {
            background: white;
            border-radius: 16px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-color);
        }

        .storage-chart-area {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
            position: relative;
        }

        .storage-info-area {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .storage-title {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            margin-bottom: 4px;
            font-weight: 600;
        }

        .storage-value {
            font-size: 24px;
            font-weight: 700;
            color: #3f2e22;
            /* Dark Brown */
            line-height: 1.1;
        }

        .storage-sub {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .btn-storage-calc {
            background: #a16207;
            /* Warm Terracotta/Brown */
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
            align-self: flex-start;
            position: relative;
            z-index: 100;
            pointer-events: auto;
        }

        .btn-storage-calc:hover {
            background: #854d0e;
            transform: translateY(-1px);
        }



        /* ==================== PARALLAX EFFECT ==================== */
        .parallax-container {
            overflow: hidden;
            position: relative;
        }

        .parallax-bg {
            position: absolute;
            top: -20%;
            left: 0;
            width: 100%;
            height: 140%;
            background-size: cover;
            background-position: center;
            will-change: transform;
            z-index: -1;
        }

        .parallax-element {
            will-change: transform;
            transition: transform 0.1s linear;
        }

        /* ==================== 3D TILT EFFECT ==================== */
        .tilt-card {
            transform-style: preserve-3d;
            perspective: 1000px;
            transition: transform 0.3s ease;
        }

        .tilt-card:hover {
            transform: translateZ(20px);
        }

        .tilt-card .tilt-content {
            transform: translateZ(30px);
            transition: transform 0.3s ease;
        }

        .gallery-item,
        .stat-card,
        .content-item,
        .image-card {
            transform-style: preserve-3d;
            perspective: 1000px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover,
        .stat-card:hover,
        .content-item:hover,
        .image-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* ==================== TYPEWRITER EFFECT ==================== */
        .typewriter-container {
            display: inline-block;
            position: relative;
        }

        .typewriter-text {
            display: inline;
            border-right: 3px solid var(--accent);
            animation: cursor-blink 0.8s infinite;
            padding-right: 4px;
        }

        @keyframes cursor-blink {

            0%,
            50% {
                border-color: var(--accent);
            }

            51%,
            100% {
                border-color: transparent;
            }
        }

        .typewriter-highlight {
            color: var(--accent);
            font-weight: 600;
        }

        /* Hero Typewriter specific */
        .hero-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-top: 12px;
            min-height: 28px;
        }

        /* ==================== SCROLL ANIMATIONS ==================== */
        .scroll-fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .scroll-fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .scroll-scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Stagger animation for lists */
        .stagger-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .stagger-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ==================== SMOOTH SCROLL BEHAVIOR ==================== */
        html {
            scroll-behavior: smooth;
        }

        /* ==================== GRADIENT ANIMATED ACCENT ==================== */
        @keyframes gradient-shift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .animated-gradient {
            background: linear-gradient(135deg, var(--accent), var(--accent-hover, #818cf8), var(--accent));
            background-size: 200% 200%;
            animation: gradient-shift 3s ease infinite;
        }

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--accent-hover, #d97706);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* ==================== ENHANCED BUTTON HOVER ANIMATIONS ==================== */
.btn, .action-btn, .toolbar-btn, .sub-nav-btn, .nav-tab {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before, .action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before, .action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover, .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:active, .action-btn:active {
    transform: translateY(0);
}



/* ==================== ADMIN PANEL ENHANCEMENTS ==================== */

/* Glassmorphism for Admin Panel */
.admin-panel[data-admin-theme='light'] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 251, 0.8));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.admin-panel[data-admin-theme='dark'] {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Enhanced Admin Header */
.admin-header {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

[data-admin-theme='dark'] .admin-header {
    background: rgba(31, 41, 55, 0.9) !important;
}

/* Enhanced Stat Cards */
.stat-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(var(--accent-rgb, 245, 158, 11), 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-icon {
    transition: transform 0.3s ease;
}

/* Enhanced Tab Transitions */
.tab-panel {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Editor Tabs */
.editor-tab {
    position: relative;
    transition: all 0.3s ease;
}

.editor-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.editor-tab:hover::after {
    width: 80%;
}

.editor-tab.active::after {
    width: 100%;
}

/* Enhanced Form Inputs */
.form-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Enhanced Weather Widget */
.weather-widget {
    transition: all 0.3s ease;
}

.weather-widget:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Enhanced Storage Widget */
.storage-widget-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.storage-widget-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.storage-widget-card:hover::before {
    opacity: 1;
}

.storage-widget-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Enhanced Content Items */
.content-item {
    transition: all 0.3s ease;
    position: relative;
}

.content-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.content-item:hover::before {
    transform: scaleY(1);
}

.content-item:hover {
    transform: translateX(5px);
    background: rgba(var(--accent-rgb, 245, 158, 11), 0.05);
}

/* Enhanced Modal */
.modal-overlay {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-card {
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Loading State Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

