<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Hero BÃ¶lÃ¼mÃ¼ */
.blog-hero {
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.01);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 2rem auto 0;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 4px;
}

/* Ä°statistikler */
.hero-stats {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #94A3B8;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 4rem 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
        margin-top: 1.5rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        margin-top: 1.2rem;
    }

    .stat-value {
        font-size: 1.6rem;
    }
}

/* Blog Container */
.blog-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* Arama ve Filtreler */
.blog-filters {
    margin-bottom: 2rem;
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.category-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    color: #818cf8;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    background: rgba(99, 102, 241, 0.9);
    color: #fff;
    font-size: 0.8rem;
    border-radius: 6px;
}

.card-content {
    padding: 1.5rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.card-meta i {
    color: rgba(255, 255, 255, 0.4);
}

.card-content h2 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.card-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #818cf8;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.8rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-btn.active {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    color: #818cf8;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-container {
        padding: 0 1rem;
    }

    .category-filters {
        gap: 0.4rem;
    }

    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 180px;
    }
}

/* Blog Post SayfasÄ± */
.blog-post-container {
    max-width: 870px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.post-category {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.post-header h1 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    font-weight: 700;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.post-meta &gt; div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta i {
    color: var(--primary-color);
    font-size: 1rem;
}

.post-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.post-content {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-area {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

.content-area h2 {
    font-size: 1.6rem;
    color: #fff;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-area p {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tags {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tags i {
    color: var(--primary-color);
    font-size: 1rem;
}

.tags a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.tags a:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-buttons span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.share-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook:hover {
    background: #1877F2;
    color: white;
}

.share-btn.twitter:hover {
    background: #1DA1F2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #0A66C2;
    color: white;
}

/* Benzer YazÄ±lar */
.related-posts {
    margin-top: 3rem;
}

.related-posts h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.related-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.3);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-content {
    padding: 1.2rem;
}

.related-content h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    font-weight: 500;
}

.related-meta {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Responsive TasarÄ±m */
@media (max-width: 768px) {
    .blog-post-container {
        margin: 3rem auto;
    }

    .post-header h1 {
        font-size: 2rem;
    }

    .post-meta {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .post-footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .tags {
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .post-header h1 {
        font-size: 1.6rem;
    }

    .post-content {
        padding: 1.5rem;
    }

    .content-area h2 {
        font-size: 1.4rem;
    }
} </pre></body></html>