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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header */
.header {
    background-color: #fff;
    border-bottom: 2px solid #e0e0e0;
    padding: 15px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    color: #0066cc;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}

.top-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
}

.top-nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.top-nav a:hover {
    color: #0066cc;
}

/* Main Navigation */
.main-nav {
    background-color: #0066cc;
    padding: 12px 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 0.8;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr 350px;
    gap: 30px;
}

/* Article Page Wrapper - No Left Sidebar */
.article-wrapper {
    grid-template-columns: 1fr 350px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Carousel */
.carousel-section {
    margin-bottom: 40px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    color: #fff;
}

.slide-content .category {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.slide-content h2 {
    font-size: 24px;
    line-height: 1.3;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fff;
}

/* News Section */
.news-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0066cc;
    border-bottom: 3px solid #0066cc;
    padding-bottom: 10px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
}

.news-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

.news-content {
    padding: 15px;
}

.news-category {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #333;
}

.news-content a {
    text-decoration: none;
    color: inherit;
}

.news-date {
    font-size: 12px;
    color: #666;
}

/* Breaking News Section */
.son-dakika-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.son-dakika-list {
    list-style: none;
}

.son-dakika-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.son-dakika-list li:last-child {
    border-bottom: none;
}

.son-dakika-list li::before {
    content: "▶";
    color: #cc0000;
    margin-right: 10px;
    font-size: 12px;
}

.son-dakika-list a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

.son-dakika-list a:hover {
    color: #0066cc;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-left {
    order: 1;
}

.sidebar-right {
    order: 3;
}

.left-content {
    order: 2;
}

.sidebar-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
    font-size: 18px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

/* Authors Carousel */
.yazarlar-carousel {
    position: relative;
    min-height: 150px;
}

.yazar-slide {
    display: none;
}

.yazar-slide.active {
    display: block;
}

.yazar-content {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.yazar-content h4 {
    color: #0066cc;
    margin-bottom: 8px;
    font-size: 16px;
}

.yazar-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.yazar-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.yazar-btn {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.yazar-btn:hover {
    background-color: #0052a3;
}

/* Sidebar Article */
.sidebar-article img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 12px;
}

.sidebar-article h4 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #333;
}

.sidebar-article p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.read-more {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Popular List */
.popular-list {
    list-style: none;
}

.popular-list li {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.popular-list li:last-child {
    border-bottom: none;
}

.popular-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 12px;
    margin-right: 12px;
    flex-shrink: 0;
}

.popular-list a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s;
}

.popular-list a:hover {
    color: #0066cc;
}

/* Currency */
.doviz-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doviz-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.doviz-name {
    font-weight: 500;
    color: #333;
}

.doviz-value {
    font-weight: bold;
    color: #0066cc;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Weather Widget */
.weather-widget {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.weather-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.city {
    font-weight: 500;
    color: #333;
}

.temp {
    font-weight: bold;
    color: #0066cc;
}

/* In the Press Today */
.basinda-list,
.mizah-list {
    list-style: none;
}

.basinda-list li,
.mizah-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.basinda-list li:last-child,
.mizah-list li:last-child {
    border-bottom: none;
}

.basinda-list a,
.mizah-list a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

.basinda-list a:hover,
.mizah-list a:hover {
    color: #0066cc;
}

/* Ad Placeholder */
.ad-placeholder {
    background-color: #f0f0f0;
    border: 2px dashed #ccc;
    padding: 60px 20px;
    text-align: center;
    border-radius: 4px;
}

.ad-placeholder p {
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-wrapper:not(.article-wrapper) {
        grid-template-columns: 1fr 350px;
    }
    
    .sidebar-left {
        display: none;
    }
}

@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar-right {
        order: 2;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .top-nav ul,
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        height: 300px;
    }

    .slide-content h2 {
        font-size: 18px;
    }
}

/* Article Detail Page Styles */
.article-content {
    background-color: #fff;
    padding: 40px 50px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

/* Article Header */
.article-header {
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-category {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.article-title {
    font-size: 42px;
    line-height: 1.3;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
    max-width: 100%;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.article-date {
    font-weight: 500;
}

.article-update {
    color: #999;
}

/* Article Image */
.article-image {
    margin: 40px 0;
    max-width: 100%;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
}

.image-caption {
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
    line-height: 1.5;
}

/* Article Body */
.article-body {
    font-size: 19px;
    line-height: 1.9;
    color: #333;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-body p {
    margin-bottom: 24px;
    text-align: justify;
}

.article-body .lead {
    font-size: 24px;
    font-weight: 500;
    color: #0066cc;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: left;
}

/* Social Share */
.social-share {
    margin: 50px auto;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
    max-width: 800px;
}

.social-share h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    transition: opacity 0.3s;
}

.share-btn:hover {
    opacity: 0.9;
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.share-btn.linkedin {
    background-color: #0077b5;
}

/* Article Tags */
.article-tags {
    margin: 50px auto;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    max-width: 800px;
}

.article-tags h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 8px 15px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.tag:hover {
    background-color: #0066cc;
    color: #fff;
}

/* Related News */
.related-news {
    margin: 50px 0;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    max-width: 100%;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.related-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

.related-content {
    padding: 15px;
}

.related-category {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 8px;
}

.related-content h4 {
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
}

.related-content a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.related-content a:hover {
    color: #0066cc;
}

/* Comments Section */
.comments-section {
    margin: 50px 0;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comment-form {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.comment-form h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.submit-btn {
    background-color: #0066cc;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0052a3;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.comment-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author strong {
    color: #0066cc;
    font-size: 16px;
}

.comment-date {
    font-size: 12px;
    color: #999;
}

.comment-text {
    color: #333;
    line-height: 1.6;
}

.comment-text p {
    margin: 0;
}

/* Responsive for Article Page */
@media (max-width: 1200px) {
    .article-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar-right {
        order: 2;
        margin-top: 40px;
    }
    
    .article-content {
        order: 1;
    }
}

@media (max-width: 968px) {
    .article-content {
        padding: 30px 25px;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .article-body {
        font-size: 17px;
        line-height: 1.8;
    }
    
    .article-body .lead {
        font-size: 20px;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .article-content {
        padding: 20px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .article-body {
        font-size: 15px;
    }
    
    .article-body .lead {
        font-size: 18px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        text-align: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

