  :root {
            --primary: rgb(9, 164, 159); /* Əsas rəng */
            --dark-bg: #121212; /* Arxa fon */
            --light-bg: #181818; /* Məqalə bloku arxa fonu */
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --info: #01a49f;
        }
        
        * { 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; }

        /* Başlıq (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); }

        /* ƏSAS MƏZMUN VƏ MƏQALƏ YAPI */
        .article-container { 
            max-width: 900px; 
            margin: 40px auto; 
            padding: 0 32px;
        }
        
        /* Məqalə Başlığı və Meta */
        .article-header {
            text-align: center;
            margin-bottom: 30px;
        }
        .article-title {
            font-size: 40px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 0 0 5px rgba(9, 164, 159, 0.3);
        }
        .article-meta {
            font-size: 14px;
            color: var(--text-secondary);
        }
        .article-meta span {
            margin: 0 10px;
        }
        
        /* Şəkil (Banner) */
        .article-image {
            width: 100%;
            height: 450px;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Məqalə Mətni (Content) */
        .article-content {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 8px;
            line-height: 1.8;
            font-size: 16px;
        }
        .article-content p {
            margin-bottom: 25px;
            color: var(--text-secondary);
            text-align: justify;
        }
        .article-content h3 {
            color: var(--primary);
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 24px;
            border-bottom: 1px dashed #282828;
            padding-bottom: 5px;
        }
        .article-content strong,a {
            color: var(--text-primary);
        }

        a{

            text-decoration: none;
        }
        
        .tag {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
            margin-right: 10px;
            background: var(--primary);
            color: #000;
            margin-top: 20px;
        }
        
        /* Geri Qayıt Düyəmsi */
        .back-link {
            display: block;
            text-align: left;
            margin-bottom: 20px;
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            transition: opacity 0.2s;
        }
        .back-link:hover {
            opacity: 0.8;
        }

        /* Şərhlər Bölməsi Stili */
.comments-container {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #282828;
   
    max-width: 800px; /* Məqalə mətni ilə eyni və ya ona yaxın en */
    margin: 50px auto; /* Yuxarıdan məsafə və mərkəzləşdirmə */
    padding: 0 20px; /* Mobil cihazlarda kənarlara yapışmaması üçün */
}


.comments-header h3 {
    color: var(--primary);
    margin-bottom: 25px;
}

.comment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #282828;
}

.comment-avatar {
    width: 45px;
    height: 45px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.comment-author {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.comment-author span:first-child {
    font-weight: bold;
    color: var(--text-primary);
}

.comment-date {
    font-size: 11px;
    color: var(--text-secondary);
}

.comment-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Şərh Forması */
.comment-form-section {
    margin-top: 40px;
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #282828;
}

.comment-form-section h4 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.input-group {
    margin-bottom: 15px;
}

.input-group input, .input-group textarea {
   width: 100%;
    background: #121212;
    border: 1px solid #333;
    padding: 15px; /* Bir az daha geniş daxili boşluq */
    color: white;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box; /* Ölçülərin daşmaması üçün vacibdir */
    transition: border-color 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--primary);
}

.submit-comment-btn {
    background: var(--primary);
    color: black;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.submit-comment-btn:hover {
    transform: scale(1.03);
    opacity: 0.9;
}