 :root {
            --primary: rgb(9, 164, 159);
            --dark-bg: #121212;
            --light-bg: #181818;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --info: #01a49f;
            --action-color: #4CAF50; /* Yaşıl */
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: sans-serif; }
        body { background-color: var(--dark-bg); color: var(--text-primary); overflow-x: hidden; }
        .main-content { max-width: 1200px; margin: 0 auto; padding: 40px 32px; }

        /* Header Stili */
        header { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            padding: 16px 32px; 
            background: rgba(0, 0, 0, 0.6); 
            position: sticky; 
            top: 0; 
            z-index: 100; 
            border-bottom: 2px solid var(--primary);
        }
        .logo { 
            font-size: 26px; 
            font-weight: 700; 
            text-decoration: none; 
            color: var(--info); 
        }

        nav a { 
            color: var(--text-secondary); 
            text-decoration: none; 
            font-size: 14px; 
            font-weight: 700; 
            margin-left: 20px;
            transition: color 0.2s;
        }
        nav a:hover { color: var(--primary); }

        .page-title {
            color: var(--text-primary);
            font-size: 48px;
            text-align: center;
            margin-bottom: 10px;
            text-shadow: 0 0 5px rgba(9, 164, 159, 0.5);
        }
        .page-subtitle {
            color: var(--text-secondary);
            font-size: 18px;
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 1px solid #282828;
            padding-bottom: 20px;
        }
        
        /* LAYOUT: İKİ SÜTUNLU YAPI */
        .blog-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 30px;
        }
        
        /* SOL SIDEBAR (KATEQORİYALAR) */
        .sidebar {
            padding: 15px;
            background: var(--light-bg);
            border-radius: 8px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        /* YENİ: Sidebar daxilindəki Düymə Stili */
        .create-article-button {
            width: 100%; /* Sidebar eni qədər */
            background-color: var(--action-color); 
            color: white;
            padding: 10px 15px;
            margin-bottom: 20px; /* Kateqoriya başlıqları ilə aranı saxlayırıq */
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s, transform 0.2s;
            border: none;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
        }
        .create-article-button:hover {
            background-color: #43A047;
            transform: scale(1.02);
        }
        .create-article-button i {
            font-size: 14px;
        }
        /* /YENİ DÜYMƏ STİLİ */

        .sidebar h3 {
            color: var(--primary);
            font-size: 20px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #282828;
        }
        .category-list {
            list-style: none;
            padding: 0;
        }
        .category-list li {
            margin-bottom: 10px;
        }
        .category-list a {
            color: var(--text-secondary);
            text-decoration: none;
            display: block;
            padding: 8px 10px;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
        }
        .category-list a:hover {
            background: var(--primary);
            color: #000000;
            font-weight: bold;
        }
        .category-count {
            float: right;
            color: #666;
            font-size: 12px;
            padding-top: 2px;
        }

        
        
        .articles-section {
            padding-top: 15px;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .article-card {
            background: var(--light-bg);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border: 1px solid #282828;
            text-decoration: none;
        }
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 10px var(--primary);
        }

        .article-image {
            height: 200px;
            background: #333;
            overflow: hidden;
        }
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .article-card:hover .article-image img {
            transform: scale(1.05);
        }

        .article-content {
            padding: 20px;
        }
        .article-meta {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
        }
        .article-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        .article-summary {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 15px;
        }
        .read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
        }

        .tag {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            margin-right: 5px;
            background: rgba(9, 164, 159, 0.2);
            color: var(--primary);
        }
        
        /* Responsivlik */
        @media (max-width: 900px) {
            .blog-layout {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-bottom: 30px;
            }
        }
