/* Genel ayarlar */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        :root {
            --primary-color: #c31a25;
            --primary-dark: #a51620;
            --secondary-color: #6c757d;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --border-radius: 12px;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--light-bg);
        }
        
        /* Blog sayfası için özel stiller */
        .blog-container {
            max-width: 1000px;
            width: 100%;
            margin: 30px auto;
            padding: 25px;
            background-color: #fff;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            box-sizing: border-box;
            animation: fadeIn 0.8s ease-out;
        }
        
        .blog-header {
            margin-bottom: 30px;
            position: relative;
            animation: fadeIn 1s ease-out;
        }
        
        .blog-header h1 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            text-align: center;
            line-height: 1.3;
            position: relative;
        }
        
        .blog-header h1::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }
        
        .blog-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 25px;
            margin-top: 25px;
            color: #666;
            font-size: 0.9rem;
            animation: fadeIn 1.2s ease-out;
        }
        
        .blog-meta span {
            margin: 0 10px;
            display: flex;
            align-items: center;
            padding: 5px 12px;
            background-color: var(--light-bg);
            border-radius: 20px;
            transition: var(--transition);
        }
        
        .blog-meta span:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .blog-meta i {
            margin-right: 5px;
            color: var(--primary-color);
        }
        
        .blog-content {
            line-height: 1.8;
            color: var(--text-color);
            font-size: 16px;
            animation: fadeIn 1.4s ease-out;
        }
        
        .blog-content p {
            margin-bottom: 20px;
            animation: fadeIn 0.5s ease-out;
        }
        
        .blog-content h2 {
            font-size: 1.7rem;
            color: var(--primary-color);
            margin: 35px 0 20px;
            border-left: 4px solid var(--primary-color);
            padding-left: 15px;
            position: relative;
            animation: slideInLeft 0.5s ease-out;
        }
        
        .blog-content h3 {
            font-size: 1.4rem;
            color: var(--text-color);
            margin: 30px 0 18px;
            position: relative;
            animation: slideInLeft 0.4s ease-out;
        }
        
        .blog-content img {
            max-width: 100%;
            height: auto;
            margin: 25px 0;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .blog-content img:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        
        .blog-content ul, .blog-content ol {
            margin-bottom: 25px;
            padding-left: 25px;
        }
        
        .blog-content li {
            margin-bottom: 12px;
            position: relative;
            animation: fadeIn 0.5s ease-out;
        }
        
        .blog-content li::before {
            content: '';
            position: absolute;
            left: -18px;
            top: 10px;
            width: 6px;
            height: 6px;
            background-color: var(--primary-color);
            border-radius: 50%;
        }
        
        .blog-content blockquote {
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            margin: 25px 0;
            background-color: var(--light-bg);
            font-style: italic;
            border-radius: 8px;
            position: relative;
            animation: fadeIn 0.6s ease-out;
        }
        
        .blog-content blockquote::before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 50px;
            color: var(--primary-color);
            opacity: 0.3;
            position: absolute;
            top: 5px;
            left: 10px;
        }
        
        /* Yorum sistemi için modern stil */
        .comments-section {
            margin-top: 50px;
            padding: 30px;
            background-color: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .comments-section h3 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }
        
        .comments-section h3:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background-color: #c31a25;
            border-radius: 4px;
        }
        
        .comment-form {
            background-color: #f9f9fa;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 35px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .comment-form:focus-within {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        
        .comment-form h4 {
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 1.3rem;
            color: #444;
            position: relative;
            display: inline-block;
        }
        
        .comment-form h4:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #c31a25;
            border-radius: 3px;
        }
        
        .form-group {
            margin-bottom: 20px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
            transition: all 0.3s ease;
        }
        
        .form-control {
            width: 100%;
            padding: 14px 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s ease;
            box-sizing: border-box;
            background-color: #fff;
        }
        
        .form-control:focus {
            border-color: #c31a25;
            box-shadow: 0 0 0 3px rgba(195, 26, 37, 0.1);
            outline: none;
        }
        
        textarea.form-control {
            height: 140px;
            resize: vertical;
        }
        
        .submit-comment {
            background-color: #c31a25;
            color: white;
            border: none;
            border-radius: 10px;
            padding: 14px 25px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            display: block;
            text-align: center;
        }
        
        .submit-comment:hover {
            background-color: #a51620;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }
        
        .cancel-reply {
            background-color: #6c757d;
            color: white;
            border: none;
            border-radius: 10px;
            padding: 14px 25px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 10px;
            width: 100%;
            display: block;
            text-align: center;
        }
        
        .cancel-reply:hover {
            background-color: #5a6268;
            transform: translateY(-2px);
        }
        
        .comments-list {
            margin-top: 30px;
        }
        
        .comment {
            margin-bottom: 30px;
            padding: 20px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .comment:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }
        
        .comment::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: #c31a25;
        }
        
        .comment-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .comment-avatar {
            flex-shrink: 0;
            margin-right: 15px;
            position: relative;
        }
        
        .comment-avatar img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #f0f0f0;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
        }
        
        .comment-info {
            flex-grow: 1;
        }
        
        .comment-info h5 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin: 0 0 5px 0;
        }
        
        .comment-info span {
            color: #777;
            font-size: 13px;
            display: block;
        }
        
        .comment-body {
            margin-bottom: 15px;
        }
        
        .comment-body p {
            margin: 0;
            line-height: 1.7;
            color: #444;
            font-size: 15px;
        }
        
        .comment-actions {
            display: flex;
            justify-content: flex-end;
            margin-top: 15px;
        }
        
        .replies-container {
            margin-top: 20px;
            padding-left: 15px;
            border-left: 2px solid #f0f0f0;
        }
        
        .comment-reply {
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .comment-reply:last-child {
            margin-bottom: 0;
        }
        
        .admin-reply {
            background-color: #f8f9fa;
            border-left: 3px solid #c31a25;
        }
        
        .admin-reply:hover {
            background-color: #f1f3f5;
        }
        
        .user-reply {
            background-color: #f6f7f9;
            border-left: 3px solid #6c757d;
        }
        
        .user-reply:hover {
            background-color: #f0f2f5;
        }
        
        .reply-to-reply-button, .user-reply-button {
            background-color: #6c757d;
            color: white;
            border: none;
            border-radius: 20px;
            padding: 8px 15px;
            font-size: 14px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .user-reply-button {
            background-color: #c31a25;
        }
        
        .reply-to-reply-button:hover, .user-reply-button:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
        }
        
        .reply-to-reply-button i, .user-reply-button i {
            margin-right: 5px;
        }
        
        /* Yorum durum mesajı için güncellenmiş stil */
        .comment-status {
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
            font-weight: 500;
            display: none;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .comment-status::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
        }
        
        .comment-status.success {
            background-color: #d4edda;
            color: #155724;
        }
        
        .comment-status.success::before {
            background-color: #28a745;
        }
        
        .comment-status.error {
            background-color: #f8d7da;
            color: #721c24;
        }
        
        .comment-status.error::before {
            background-color: #dc3545;
        }
        
        .comment-status.info {
            background-color: #e2f3fb;
            color: #0c5460;
        }
        
        .comment-status.info::before {
            background-color: #17a2b8;
        }
        
        .no-comments {
            text-align: center;
            padding: 30px;
            color: #6c757d;
            font-style: italic;
            background-color: #f8f9fa;
            border-radius: 10px;
            margin-top: 20px;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
        }
        
        .col {
            flex: 1;
            padding: 0 10px;
            min-width: 200px;
            box-sizing: border-box;
        }
        
        .form-text {
            display: block;
            margin-top: 5px;
            font-size: 12px;
            color: #6c757d;
        }
        
        /* Mobil görünüm için düzenlemeler */
        @media (max-width: 768px) {
            body {
                margin: 0;
                padding: 0;
                overflow-x: hidden;
                width: 100%;
                min-width: 100%;
                background-color: #fff;
            }
            
            .header-content {
                width: 100%;
                padding: 0 15px;
            }
            
            main {
                width: 100%;
                min-width: 100%;
                padding: 0;
                overflow-x: hidden;
            }
            
            .blog-container {
                width: 100%;
                min-width: 100%;
                margin: 0;
                padding: 20px;
                border-radius: 0;
                box-shadow: none;
            }
            
            .blog-header {
                margin-bottom: 25px;
            }
            
            .blog-header h1 {
                font-size: 1.7rem;
                line-height: 1.4;
                padding: 0 10px;
            }
            
            .blog-meta {
                flex-direction: column;
                align-items: center;
                gap: 8px;
                margin-bottom: 20px;
            }
            
            .blog-meta span {
                margin: 5px 0;
                padding: 6px 12px;
                font-size: 0.85rem;
            }
            
            .blog-content {
                font-size: 16px;
                padding: 0 5px;
            }
            
            .blog-content p {
                margin-bottom: 20px;
                line-height: 1.7;
            }
            
            .blog-content h2 {
                font-size: 1.5rem;
                margin: 30px 0 15px;
                padding-left: 12px;
            }
            
            .blog-content h3 {
                font-size: 1.3rem;
                margin: 25px 0 15px;
            }
            
            .blog-content ul, .blog-content ol {
                padding-left: 20px;
            }
            
            .blog-content blockquote {
                padding: 15px;
                margin: 20px 0;
                font-size: 0.95rem;
            }
            
            .comments-section {
                padding: 20px 15px;
                margin-top: 30px;
                border-radius: 0;
                box-shadow: none;
                border-top: 8px solid #f8f9fa;
            }
            
            .comments-section h3 {
                font-size: 1.6rem;
                margin-bottom: 25px;
            }
            
            .comment-form {
                padding: 20px 15px;
                border-radius: 10px;
                margin-bottom: 25px;
            }
            
            .form-group {
                margin-bottom: 15px;
            }
            
            .form-group label {
                font-size: 0.95rem;
                margin-bottom: 6px;
            }
            
            .form-control {
                padding: 12px;
                font-size: 14px;
                border-radius: 8px;
            }
            
            textarea.form-control {
                height: 120px;
            }
            
            .row {
                flex-direction: column;
            }
            
            .col {
                margin-bottom: 15px;
                width: 100%;
            }
            
            .submit-comment, .cancel-reply {
                width: 100%;
                padding: 12px 15px;
                font-size: 15px;
                border-radius: 8px;
            }
            
            .comment {
                margin-bottom: 20px;
                padding: 15px;
                border-radius: 10px;
                box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            }
            
            .comment-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .comment-avatar {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .comment-avatar img {
                width: 45px;
                height: 45px;
            }
            
            .comment-info {
                text-align: center;
            }
            
            .comment-body {
                margin-top: 15px;
                margin-bottom: 15px;
                text-align: center;
            }
            
            .comment-actions {
                justify-content: center;
            }
            
            .replies-container {
                margin-top: 15px;
                padding-left: 10px;
                border-left-width: 1px;
            }
            
            .comment-reply {
                padding: 12px;
                margin-bottom: 10px;
                border-radius: 8px;
            }
            
            .reply-to-reply-button, .user-reply-button {
                width: 100%;
                justify-content: center;
                padding: 10px 15px;
                margin-top: 10px;
                border-radius: 8px;
            }
            
            footer {
                width: 100%;
            }
            
            .footer-content {
                flex-direction: column;
                padding: 20px 15px;
            }
            
            .footer-section {
                margin-bottom: 20px;
                width: 100%;
            }
        }