* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Varsayılan renkler - Admin panelinden değiştirilebilir */
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-gradient-start: #667eea;
    --bg-gradient-end: #764ba2;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: white;
    padding: 30px 0;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.logo img {
    max-height: 55px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.3s;
}

.logo:hover img {
    transform: scale(1.05);
}

.site-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.site-title:hover {
    transform: translateX(5px);
}

.main-menu {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.main-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.main-menu a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Content - Bootstrap Style */
.site-description {
    font-size: 18px;
    color: #6c757d;
    margin: 48px 0;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

/* Posts Grid - Bootstrap Style */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.post-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
    transition: all 0.15s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-in-out;
}

.post-card:hover .post-image img {
    transform: scale(1.03);
}

.post-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-category {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

.post-category a {
    color: #ffffff;
    text-decoration: none;
}

.post-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-weight: 600;
}

.post-title a {
    color: #212529;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-excerpt {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
    font-size: 0.9375rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6c757d;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    flex-wrap: wrap;
    margin-top: auto;
}

.post-author, .post-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Post Detail - Bootstrap Style */
.post-content-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 3rem 0;
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.post-content-wrapper h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #212529;
    line-height: 1.2;
    font-weight: 600;
}

.post-content-wrapper .post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
    font-size: 0.875rem;
    color: #6c757d;
}

.post-category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-category-badge a {
    color: #ffffff;
    text-decoration: none;
}

.reading-time {
    color: #6c757d;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    background: #f8f9fa;
    border-radius: 0.375rem;
    font-weight: 500;
}

.post-featured-image {
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #f8f9fa;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content-wrapper .post-excerpt {
    font-size: 1.125rem;
    color: #6c757d;
    font-style: normal;
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 0.375rem;
    line-height: 1.6;
}

.post-body {
    font-size: 1rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    color: #212529;
    max-width: 100%;
}

.post-body > *:first-child {
    margin-top: 0;
}

.post-body > *:last-child {
    margin-bottom: 0;
}

.post-body p {
    margin-bottom: 1rem;
}

.post-body strong {
    font-weight: 600;
    color: #212529;
}

.post-body em {
    font-style: italic;
    color: #6c757d;
}

.post-body h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem 0;
    color: #212529;
    font-weight: 600;
    line-height: 1.3;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
}

.post-body h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.75rem 0;
    color: #212529;
    font-weight: 600;
    line-height: 1.4;
}

.post-body h4 {
    font-size: 1.25rem;
    margin: 1.25rem 0 0.5rem 0;
    color: #212529;
    font-weight: 600;
}

.post-body ul, .post-body ol {
    margin: 1rem 0;
    padding-left: 2rem;
    line-height: 1.6;
}

.post-body ul li {
    margin-bottom: 0.5rem;
}

.post-body ol li {
    margin-bottom: 0.5rem;
}

.post-body a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.post-body a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.post-body blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 0.375rem;
    font-style: italic;
    color: #6c757d;
}

.post-body blockquote p {
    margin: 0;
    font-size: 1.125rem;
}

.post-body code {
    background: #f8f9fa;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875em;
    color: #e83e8c;
}

.post-body pre {
    background: #212529;
    color: #ffffff;
    padding: 1rem;
    border-radius: 0.375rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-body pre code {
    background: transparent;
    padding: 0;
    color: inherit;
    font-size: 0.875em;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
    margin: 1.5rem auto;
    display: block;
}

.post-body hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid #dee2e6;
}

.post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border: 1px solid #dee2e6;
}

.post-body table th,
.post-body table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.post-body table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #212529;
}

.post-body table tr:hover {
    background: #f8f9fa;
}

.post-body table tr:last-child td {
    border-bottom: none;
}

.post-images {
    margin: 60px 0;
}

.post-images h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.image-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.4s;
}

.image-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
}

.author-box {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    border-left: 4px solid var(--primary-color);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dee2e6;
    flex-shrink: 0;
}

.author-box h3 {
    margin-bottom: 0.5rem;
    color: #212529;
    font-size: 1.25rem;
    font-weight: 600;
}

.author-box h4 {
    margin-bottom: 0.5rem;
    color: #212529;
    font-size: 1.125rem;
    font-weight: 600;
}

.author-box p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9375rem;
}

/* FAQ - Bootstrap Style */
.faq-section {
    margin-top: 3rem;
    padding-top: 2rem;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #212529;
}

.faq-list {
    margin-top: 0;
    width: 100%;
    max-width: 100%;
}

.faq-item {
    margin-bottom: 0.75rem;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    overflow: hidden;
    transition: all 0.15s ease-in-out;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    padding: 1rem 3rem 1rem 1rem;
    color: #212529;
    line-height: 1.5;
    position: relative;
    cursor: pointer;
    transition: color 0.15s ease-in-out;
    background: var(--secondary-color);
}

.faq-item:hover .faq-question {
    color: #f8f9fa;
}

.faq-item.active .faq-question {
    color: #f8f9fa;
    background: var(--primary-color);
}

.faq-question::after {
    content: '▼';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--primary-color);
    transition: transform 0.15s ease-in-out;
    font-weight: 400;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.9375rem;
    padding: 0 1rem;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    padding: 1rem 1rem 1rem 1rem;
    max-height: 1000px;
}

/* Category - Bootstrap Style */
.category-page {
    margin-bottom: 3rem;
}

.category-page h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #212529;
    font-weight: 600;
}

.category-description {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: rgba(255,255,255,0.9);
    padding: 60px 0 30px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-menu a:hover {
    background: rgba(255,255,255,0.15);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.social-link {
    color: white;
    text-decoration: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255,255,255,0.2);
    font-size: 20px;
}

.social-link i {
    display: block;
}

/* Facebook */
.social-link[aria-label="Facebook"] {
    background: #1877F2;
}

.social-link[aria-label="Facebook"]:hover {
    background: #166FE5;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

/* Twitter/X */
.social-link[aria-label="Twitter"] {
    background: #000000;
}

.social-link[aria-label="Twitter"]:hover {
    background: #1a1a1a;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Instagram */
.social-link[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #ff9d43 0%, #f6784c 25%, #ec3853 50%, #dc3376 75%, #cc2878 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
}

/* LinkedIn */
.social-link[aria-label="Linkedin"] {
    background: #0077B5;
}

.social-link[aria-label="Linkedin"]:hover {
    background: #006399;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

/* YouTube */
.social-link[aria-label="Youtube"] {
    background: #FF0000;
}

.social-link[aria-label="Youtube"]:hover {
    background: #E60000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* Telegram */
.social-link[aria-label="Telegram"] {
    background: #0088CC;
}

.social-link[aria-label="Telegram"]:hover {
    background: #0077B5;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.footer-text {
    margin-top: 40px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.8;
}

/* Empty State - Bootstrap Style */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: #6c757d;
    background: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
}

.empty-state p {
    font-size: 1.125rem;
    margin-bottom: 0;
}

/* Minimal Breadcrumb Design */
.breadcrumb-nav {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    background: transparent;
    align-items: center;
    gap: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.8125rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: #adb5bd;
    margin: 0 0.625rem;
    font-size: 0.75rem;
    display: inline-block;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    padding: 0;
    font-weight: 400;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-item.active span {
    color: #6c757d;
    font-weight: 400;
    padding: 0;
}

.breadcrumb-item i {
    font-size: 0.75rem;
    margin-right: 0.25rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb-item.active i {
    color: #adb5bd;
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        margin-bottom: 1rem;
        padding-top: 0.75rem;
    }
    
    .breadcrumb-item {
        font-size: 0.75rem;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 0.5rem;
    }
    
    .breadcrumb-item i {
        font-size: 0.6875rem;
        margin-right: 0.2rem;
    }
}

/* Page Content - Bootstrap Style */
.page-content {
    width: 100%;
    max-width: 100%;
    margin: 3rem 0;
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.page-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #212529;
    font-weight: 600;
    line-height: 1.2;
}

.page-content .content {
    font-size: 1rem;
    line-height: 1.6;
    color: #212529;
}

.page-content .content > *:first-child {
    margin-top: 0;
}

.page-content .content > *:last-child {
    margin-bottom: 0;
}

.page-content .content p {
    margin-bottom: 1.8em;
    text-align: justify;
}

.page-content .content strong {
    font-weight: 600;
    background: linear-gradient(135deg, rgb(237 163 75 / 32%), rgba(139, 92, 246, 0.1));
    padding: 5px 10px;
    border-radius: 4px;
}

.page-content .content em {
    font-style: italic;
    color: var(--text-light);
}

.page-content .content h2 {
    font-size: 36px;
    margin: 2.5em 0 1.2em 0;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.3;
    padding-bottom: 0.8em;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.page-content .content h2::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 3px;
}

.page-content .content h3 {
    font-size: 30px;
    margin: 2em 0 1em 0;
    color: var(--text-dark);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-content .content h4 {
    font-size: 24px;
    margin: 1.8em 0 0.9em 0;
    color: var(--text-dark);
    font-weight: 700;
}

.page-content .content ul, .page-content .content ol {
    margin: 2em 0;
    padding-left: 2.5em;
    line-height: 2;
}

.page-content .content ul {
    list-style: none;
    padding-left: 0;
}

.page-content .content ul li {
    margin-bottom: 1em;
    padding-left: 2.5em;
    position: relative;
}

.page-content .content ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.4em;
}

.page-content .content ol li {
    margin-bottom: 1em;
}

.page-content .content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
}

.page-content .content a:hover {
    border-bottom-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
}

.page-content .content blockquote {
    margin: 2.5em 0;
    padding: 2em 2.5em;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 6px solid var(--primary-color);
    border-radius: 16px;
    font-style: italic;
    color: var(--text-light);
    position: relative;
    box-shadow: var(--shadow-md);
}

.page-content .content blockquote::before {
    content: '"';
    position: absolute;
    left: 20px;
    top: 10px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.15;
    font-family: Georgia, serif;
}

.page-content .content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 2.5em auto;
    display: block;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--border-color);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .main-menu {
        width: 100%;
        justify-content: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .post-content-wrapper,
    .page-content {
        padding: 40px 24px;
        margin: 32px auto;
        border-radius: 24px;
    }
    
    .post-content-wrapper h1,
    .page-content h1 {
        font-size: 36px;
    }
    
    .category-page h1 {
        font-size: 36px;
    }
    
    .images-grid {
        grid-template-columns: 1fr;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 16px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-card,
.faq-item,
.page-content,
.post-content-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: var(--bg-gradient-start);
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 7px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Custom CSS Injection */
#custom-colors {
    display: none;
}

/* Home Sections - Bootstrap Style */
.home-section {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-title.text-center {
    display: block;
    text-align: center;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.home-section.section-cards {
    display: block !important;
}

.home-section.section-cards .section-title {
    display: block !important;
    width: 100%;
    margin-bottom: 1.5rem !important;
    float: none !important;
    clear: both !important;
}

.home-section.section-cards .row {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    clear: both !important;
}

.section-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
    color: #212529;
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
    box-sizing: border-box;
}

/* Section Cards - Bootstrap Style */
.section-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
}

.section-cards .row {
    width: 100%;
    margin: 0;
}

.section-card {
    background: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.125);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 1rem;
}

.section-card:hover {
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.section-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.section-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
    display: block;
}

.section-card:hover .section-card-image img {
    transform: scale(1.08);
}

.section-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.section-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.section-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
    line-height: 1.4;
}

.section-card-text {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
}

.section-card-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
    text-align: center;
    margin-top: auto;
    align-self: flex-start;
}

.section-card-link:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

/* Section Slider */
.section-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    overflow: hidden;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2;
}

.slider-caption h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.slider-caption p {
    font-size: 0.9375rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 3;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    background: rgba(255,255,255,0.9);
    border: 1px solid #dee2e6;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
}

.slider-prev:hover,
.slider-next:hover {
    background: #ffffff;
    border-color: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.slider-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    border: 1px solid rgba(255,255,255,0.8);
}

.slider-dot.active {
    background: #ffffff;
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .section-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-card {
        margin: 0.75rem;
    }
    
    .section-card-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .section-cards {
        grid-template-columns: 1fr;
    }
    
    .section-card {
        margin: 0.75rem;
    }
    
    .section-card-image {
        height: 220px;
    }
    
    .section-card-content {
        padding: 1.5rem;
    }
    
    .section-card-title {
        font-size: 1.25rem;
    }
    
    .section-card-text {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .section-card-link {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
        width: 100%;
        align-self: stretch;
    }
}
    
    .slider-container {
        height: 250px;
    }
    
    .slider-caption {
        padding: 1rem;
    }
    
    .slider-caption h3 {
        font-size: 1.25rem;
    }
    
    .slider-caption p {
        font-size: 0.875rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
    
 
    
    .cta-title {
        font-size: 1.5rem;
    }
}

/* Section CTA - Bootstrap Style */
.section-cta {
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.section-cta .card-body {
    padding: 2rem !important;
}

.section-cta .card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-cta .card-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.section-cta .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

.section-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .section-cta {
        padding: 2rem 1.5rem;
    }
    
    .section-cta .card-title {
        font-size: 1.75rem;
    }
    
    .section-cta .card-text {
        font-size: 1rem;
    }
}

/* API Links Container */
.api-links-container {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
}

.api-title {
    font-size: 1.125rem;
    color: #212529;
    margin-bottom: 1.25rem;
}

.api-title-old {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.api-links-list {
    line-height: 1.8;
}

.api-link-item {
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.api-link-item strong {
    color: #212529;
    font-weight: 600;
}

.link-active {
    color: #198754;
    font-weight: 700;
    font-size: 1.1em;
}

.link-next {
    color: #0d6efd;
    font-weight: 700;
    font-size: 1.1em;
}

.link-old {
    color: #dc3545;
    font-weight: 700;
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.api-link-old {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
