/* ===== GENEL STİLLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
    background: #f8f9fa;
    line-height: 1.6;
    color: #333;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ===== KATEGORİ STİLLERİ ===== */
.category-header {
    background: linear-gradient(135deg, #d2232a, #b31e25);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(210, 35, 42, 0.3);
    grid-column: 1 / -1;
}

.category-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.category-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ===== TEK SATIR BREADCRUMB STİLLERİ ===== */
.single-line-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-family: Arial, sans-serif;
    grid-column: 1 / -1;
}
.single-line-breadcrumb a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.single-line-breadcrumb a:hover {
    color: #e74c3c;
    text-decoration: underline;
}
.current-title {
    color: #e74c3c;
    font-weight: bold;
}

/* ===== HABER DETAY CONTAINER ===== */
.news-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
}

/* ===== HABER LAYOUT ===== */
.news-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: start;
}

/* ===== ANA İÇERİK ALANI ===== */
.news-main {
    background: #fff;
    border-radius: 8px;
    padding: 0;
}

/* ===== HABER BAŞLIK ALANI ===== */
.news-header {
    margin-bottom: 20px;
    padding: 25px;
    border-bottom: 1px solid #e6e6e6;
}

.news-category {
    display: inline-block;
    background: #d2232a;
    color: white;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.news-title {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 6px;
}

.news-meta-simple {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
}

/* ===== RESİM VE REKLAM ALANI ===== */
.news-image-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    align-items: start;
}

.news-ad-left {
    width: 300px;
    height: 300px;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.news-image-right {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.news-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== KOMPAKT PAYLAŞIM BUTONLARI ===== */
.news-share-bar {
    background: #f9f9f9;
    padding: 10px 25px;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    height: 45px;
}

.news-update-info {
    color: #666;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 0;
}

.update-time {
    padding: 3px 6px;
    border-radius: 3px;
    font-weight: 600;
    color: #7c0004;
    font-size: 11px;
    white-space: nowrap;
}

.update-label {
    color: #666;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.share-buttons {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-shrink: 0;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid;
    min-width: 70px;
    gap: 4px;
    height: 25px;
}

.share-button.facebook {
    background: #3b5998;
    color: white;
    border-color: #3b5998;
}

.share-button.twitter {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.share-button.whatsapp {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.share-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Video badge stilleri */
.video-badge {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 6px;
    white-space: nowrap;
}

/* ===== HABER SPOT ALANI ===== */
.news-spot {
    background: #f8f9fa;
    padding: 20px;
    margin: 0;
    border-bottom: 1px solid #e6e6e6;
}

.news-spot-content {
    text-align: center;
}

.news-spot p {
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* ===== OKUMA ARAÇ ÇUBUĞU STİLLERİ ===== */
.reading-toolbar {
    background: #f9f9f9;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 4px 10px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-family: "Segoe UI", Arial, sans-serif;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toolbar-right {
    display: flex;
    align-items: center;
}

.text-size-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 4px 8px;
    border-radius: 6px;
}

.toolbar-btn {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    height: 25px;
}

.toolbar-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.text-smaller, .text-bigger {
    min-width: 30px;
    justify-content: center;
}

.text-size-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.audio-reader {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
}

.audio-reader:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

.audio-reader.playing {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
}

.btn-text {
    font-size: 11px;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 4px 10px;
    border-radius: 15px;
    border: 1px solid #ddd;
    font-size: 11px;
    font-weight: 600;
    color: #495057;
}

.time-icon {
    font-size: 10px;
}

.time-text {
    white-space: nowrap;
}

/* ===== HABER İÇERİK ALANI ===== */
.news-content {
    padding: 25px;
    line-height: 1.7;
    font-size: 15px;
    color: #333;
}

.news-content p {
    margin-bottom: 20px;
    color: #333;
    text-align: justify;
    font-size: 17px;
    line-height: 1.7;
}

.news-content p:first-of-type {
    font-weight: 600;
}

.news-content p:first-of-type::first-letter {
    font-size: 2.2em;
    font-weight: bold;
    color: #d2232a;
    float: left;
    line-height: 1;
    margin-right: 8px;
    margin-top: 5px;
}

.news-content h1, 
.news-content h2, 
.news-content h3, 
.news-content h4 {
    color: #333;
    margin: 25px 0 15px 0;
    font-weight: 700;
}

.news-content h1 {
    font-size: 1.6rem;
    border-bottom: 2px solid #d2232a;
    padding-bottom: 8px;
}

.news-content h2 {
    font-size: 1.4rem;
    color: #333;
    border-left: 4px solid #d2232a;
    padding-left: 12px;
    background: #f8f9fa;
    padding: 12px 15px;
}

.news-content h3 {
    font-size: 1.2rem;
    color: #333;
    padding-bottom: 6px;
    border-bottom: 1px solid #e0e0e0;
}

.news-content strong {
    color: #d2232a;
    font-weight: 800;
}

.news-content em {
    color: #666;
    font-style: italic;
}

.news-content ul, 
.news-content ol {
    color: #333;
    margin: 15px 0;
    padding-left: 25px;
}

.news-content li {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
}

.news-content a {
    color: #d2232a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #d2232a;
    transition: all 0.3s;
}

.news-content a:hover {
    color: #b31e25;
    border-bottom: 1px solid #b31e25;
    background: #fff5f5;
}

/* Font size değişiklikleri için */
.news-content.font-small {
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.news-content.font-medium {
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.news-content.font-large {
    font-size: 18px !important;
    line-height: 1.8 !important;
}

.news-content.font-xlarge {
    font-size: 20px !important;
    line-height: 1.9 !important;
}

.news-content.font-small p,
.news-content.font-medium p,
.news-content.font-large p,
.news-content.font-xlarge p {
    font-size: inherit !important;
    line-height: inherit !important;
}

/* ===== YAZI İÇİ KÜÇÜK VİDEO STİLLERİ ===== */
.inline-video-container {
    float: right;
    margin: 10px 0 15px 20px;
    width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid #e6e6e6;
}

.inline-video-player {
    width: 100%;
    height: 200px;
    background: #000;
    position: relative;
}

.inline-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inline-video-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    z-index: 2;
}

.inline-video-info {
    padding: 10px 12px;
    background: #f8f9fa;
    border-top: 1px solid #e6e6e6;
}

.inline-video-title {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    line-height: 1.3;
}

.inline-video-description {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

/* ===== HABER ALTINDA BENZER HABERLER STİLLERİ ===== */
.similar-news-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e6e6e6;
    clear: both;
}

.similar-news-title {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.similar-news-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #d2232a, #b31e25);
    border-radius: 2px;
}

.similar-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

/* ===== SIDEBAR STİLLERİ ===== */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-ad {
    background: transparent !important;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.sidebar-similar-news {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e6e6e6;
}

.sidebar-similar-title {
    font-size: 1.2rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid #d2232a;
    padding-bottom: 8px;
}

.sidebar-article {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.sidebar-article:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-article:hover {
    transform: translateX(5px);
    background: #f8f9fa;
    padding: 10px;
    margin: -10px -10px 10px -10px;
    border-radius: 4px;
}

.sidebar-article-image-container {
    flex-shrink: 0;
    position: relative;
}

.sidebar-article-image {
    width: 70px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
}

.sidebar-article-content {
    flex: 1;
    min-width: 0;
}

.sidebar-article-category {
    font-size: 10px;
    color: #d2232a;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.sidebar-article-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-article-meta {
    font-size: 10px;
    color: #666;
    margin-top: 3px;
}

/* ===== BENZER HABERLER ALANI ===== */
.similar-news {
    margin-top: 40px;
    grid-column: 1 / -1;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e6e6e6;
}

.similar-title {
    font-size: 1.3rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/* ===== HEADER STİLLERİ ===== */
.header {
    background: linear-gradient(135deg, #db0808, #b30606);
    color: white;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 15px;
}

.logo-image {
    height: 40px;
    width: auto;
}

.site-name {
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-top {
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 6px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    white-space: nowrap;
}

.menu-item > a:hover,
.menu-item > a.active {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.menu-item.has-children > a::after {
    content: '▼';
    font-size: 9px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.menu-item.has-children:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1000;
}

.menu-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #db0808;
    padding-left: 25px;
}

.team-submenu {
    left: 100%;
    top: 0;
}

.login-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.3);
}

.login-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
}

/* ===== HABER LİSTE STİLLERİ ===== */
.content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    align-items: start;
}

.article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

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

.article-image {
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(219, 8, 8, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content {
    padding: 20px;
}

.article-content h2 {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.4;
    margin: 0;
    font-weight: 700;
    display: -webkit-box;
      -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Video indikatör stilleri */
.video-indicator {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
}

/* ===== REKLAM STİLLERİ - TAMAMEN GÜNCELLENDİ ===== */
.advertisement {
    width: 100%;
    margin: 10px 0;
    text-align: center;
    background: transparent !important;
}

.advertisement .ad-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.advertisement .ad-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Google Adsense reklamları için */
ins.adsbygoogle {
    background: transparent !important;
    border: none !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Reklam container'ları */
.ad-container {
    min-height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    color: #6c757d;
    margin: 10px 0;
}

.ad-container[data-ad-position="news_sidebar"] {
    min-height: 600px;
}

.ad-container[data-ad-position="news_inline"] {
    min-height: 300px;
    width: 300px;
}

.ad-container[data-ad-position="home_after_3"],
.ad-container[data-ad-position="home_after_6"],
.ad-container[data-ad-position="home_after_10"],
.ad-container[data-ad-position="home_after_14"],
.ad-container[data-ad-position="home_middle"],
.ad-container[data-ad-position="home_top"],
.ad-container[data-ad-position="home_bottom"],
.ad-container[data-ad-position="category_after_3"],
.ad-container[data-ad-position="category_after_6"],
.ad-container[data-ad-position="category_after_10"],
.ad-container[data-ad-position="category_after_14"],
.ad-container[data-ad-position="category_middle"],
.ad-container[data-ad-position="category_top"],
.ad-container[data-ad-position="category_bottom"] {
    min-height: 90px;
    width: 100%;
}

/* Özel reklam stilleri */
.ad-article {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    grid-column: 1 / -1 !important;
}

.ad-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background: transparent !important;
}

/* Reklam grid pozisyonları */
.article-ad-container {
    grid-column: 1 / -1;
    margin: 20px 0;
}

.advertisement-home {
    grid-column: 1 / -1;
    margin: 20px 0;
}

/* Sidebar reklamları */
.ad-sidebar {
    background: transparent !important;
    color: #333;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.ad-sidebar:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(210, 35, 42, 0.2);
}

/* Varsayılan reklam placeholder'ları */
.default-ad {
    background: #f8f9fa !important;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    color: #6c757d;
    font-size: 14px;
    margin: 10px 0;
}

.default-ad:hover {
    background: #e9ecef !important;
}

/* Metin reklamı stilleri */
.text-ad {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
    padding: 20px !important;
    text-align: center !important;
    background: linear-gradient(135deg, #d2232a, #b31e25) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.text-ad:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(210, 35, 42, 0.3) !important;
}

.text-ad h4 {
    margin-bottom: 10px !important;
    color: white !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
}

.text-ad p {
    margin-bottom: 15px !important;
    opacity: 0.9 !important;
    font-size: 1rem !important;
    line-height: 1.4 !important;
    color: white !important;
}

.text-ad span {
    background: white !important;
    color: #d2232a !important;
    padding: 10px 25px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    display: inline-block !important;
    transition: all 0.3s !important;
}

/* ===== FOOTER STİLLERİ ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    margin-top: 60px;
    padding: 40px 0 20px;
    border-top: 3px solid #d2232a;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: start;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
    border-bottom: 2px solid #d2232a;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.footer-links a:hover {
    color: #d2232a;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 16px;
}

.social-links a:hover {
    background: #d2232a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(210, 35, 42, 0.4);
}

.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    font-size: 14px;
    color: #95a5a6;
}

.footer-links-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #d2232a;
}

/* ===== NO HABER MESAJI ===== */
.no-news-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.no-news-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.no-news-message h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.no-news-message p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.add-news-btn {
    display: inline-block;
    background: #d2232a;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.add-news-btn:hover {
    background: #b31e25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(210, 35, 42, 0.3);
}

/* ===== PAGE STİLLERİ ===== */
.page-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: start;
}

.page-main {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-body {
    line-height: 1.7;
    font-size: 16px;
    color: #333;
}

.page-body p {
    margin-bottom: 20px;
}

.page-body h1, .page-body h2, .page-body h3 {
    color: #2c3e50;
    margin: 25px 0 15px 0;
}

.page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-not-found {
    text-align: center;
    padding: 60px 20px;
}

.page-not-found h1 {
    font-size: 4rem;
    color: #d2232a;
    margin-bottom: 20px;
}

.related-pages {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
}

.related-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.related-list {
    list-style: none;
    padding: 0;
}

.related-item {
    margin-bottom: 10px;
}

.related-item a {
    color: #d2232a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-item a:hover {
    color: #b31e25;
    text-decoration: underline;
}

.breadcrumb {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    grid-column: 1 / -1;
}

.breadcrumb a {
    color: #d2232a;
    text-decoration: none;
    font-weight: 500;
}

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

/* ===== ACİL FİX: KATEGORİ SAYFASI 3 SÜTUN ===== */
.content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 25px !important;
}

.content .article {
    grid-column: unset !important;
    margin: 0 !important;
}

.content .advertisement-home,
.content .article-ad-container,
.content .category-header,
.content .no-news-message {
    grid-column: 1 / -1 !important;
}

/* ===== GRID DÜZENİ GÜVENCE ALTINA AL ===== */
.content > * {
    grid-column: 1 / -1;
}

.content > .article {
    grid-column: unset;
}

/* Video oluşturma butonu stilleri */
.video-create-prompt {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.btn-create-video {
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-create-video:hover {
    background: #219653;
    transform: translateY(-2px);
}

.video-available-badge {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    margin-left: 10px;
    font-weight: bold;
}

/* ===== COOKIE CONSENT STİLLERİ ===== */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-consent-title {
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
}

.cookie-consent-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-consent-text a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-consent-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-consent-accept {
    background: #27ae60;
    color: white;
}

.cookie-consent-reject {
    background: #95a5a6;
    color: white;
}

.cookie-consent-settings {
    background: #3498db;
    color: white;
}

.cookie-consent-btn:hover {
    transform: translateY(-1px);
}

/* Cookie settings modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cookie-settings-group {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cookie-settings-group-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
}

.cookie-settings-group-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.cookie-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-toggle-label {
    font-weight: 500;
}

.cookie-toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .cookie-toggle-slider {
    background-color: #27ae60;
}

input:checked + .cookie-toggle-slider:before {
    transform: translateX(26px);
}

.cookie-settings-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.cookie-settings-cancel,
.cookie-settings-save {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-settings-cancel {
    background: #95a5a6;
    color: white;
}

.cookie-settings-save {
    background: #27ae60;
    color: white;
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 768px) {
    .news-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-image-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-ad-left {
        width: 100%;
        height: 250px;
    }
    
    .news-image-right {
        height: 250px;
    }
    
    .news-title {
        font-size: 22px;
    }
    
    .news-share-bar {
        flex-direction: column;
        height: auto;
        gap: 10px;
        padding: 10px 15px;
    }
    
    .news-update-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .update-label {
        margin-left: 0;
    }
    
    .share-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .share-button {
        flex: 1;
        min-width: auto;
        text-align: center;
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-top {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .content {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-header {
        padding: 20px;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-top {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-top.active {
        display: flex;
    }
    
    .menu-item {
        width: 100%;
    }
    
    .menu-item > a {
        padding: 15px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.1);
        display: none;
    }
    
    .menu-item.active .dropdown-menu {
        display: block;
    }
    
    /* Mobil için okuma araç çubuğu */
    .reading-toolbar {
        flex-direction: column;
        height: auto;
        gap: 10px;
        padding: 10px;
    }
    
    .toolbar-left, .toolbar-right {
        width: 100%;
        justify-content: center;
    }
    
    .text-size-controls {
        flex: 1;
        justify-content: center;
    }
    
    .btn-text {
        display: none;
    }
    
    /* Mobil için yazı içi video düzenlemeleri */
    .inline-video-container {
        float: none;
        width: 100%;
        max-width: 300px;
        margin: 15px auto;
        display: block;
    }
    
    /* Mobil için benzer haberler grid */
    .similar-news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Mobil için reklam düzenlemeleri */
    .ad-container[data-ad-position="news_inline"] {
        width: 100%;
        min-height: 250px;
    }
    
    .ad-container[data-ad-position="news_sidebar"] {
        min-height: 300px;
    }
    
    /* Mobil için cookie consent */
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .page-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .news-detail-container {
        padding: 10px;
    }
    
    .news-header {
        padding: 15px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-title {
        font-size: 20px;
    }
    
    .article-content h2 {
        font-size: 1rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .inline-video-container {
        max-width: 100%;
    }
    
    .inline-video-player {
        height: 180px;
    }
    
    .share-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .share-button {
        width: 100%;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== ANİMASYONLAR ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.article:nth-child(1) { animation-delay: 0.1s; }
.article:nth-child(2) { animation-delay: 0.2s; }
.article:nth-child(3) { animation-delay: 0.3s; }
.article:nth-child(4) { animation-delay: 0.4s; }
.article:nth-child(5) { animation-delay: 0.5s; }
.article:nth-child(6) { animation-delay: 0.6s; }

/* ===== ŞEFFAF REKLAM ALANLARI ===== */
.advertisement-home,
.advertisement-home > div,
.advertisement-home .advertisement,
.article-ad-container,
.ad-inner,
.ad-sidebar,
.sidebar-ad,
.news-ad-left {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* ===== PERFORMANS OPTİMİZASYONLARI ===== */
img {
    max-width: 100%;
    height: auto;
}

/* ===== PRINT STİLLERİ ===== */
@media print {
    .header, .footer, .news-share-bar, .reading-toolbar, .sidebar-ad, .news-ad-left {
        display: none !important;
    }
    
    .news-layout {
        grid-template-columns: 1fr !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .news-content {
        font-size: 12pt !important;
        line-height: 1.4 !important;
    }
}

/* ===== ACCESSIBILITY (ERİŞİLEBİLİRLİK) ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .news-content {
        color: #000 !important;
    }
    
    .news-content a {
        color: #0000EE !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background: #1a1a1a;
        color: #e0e0e0;
    }
    
    .news-main, .page-main, .article, .sidebar-similar-news, .similar-news {
        background: #2d2d2d;
        color: #e0e0e0;
    }
    
    .news-content, .page-body {
        color: #e0e0e0;
    }
    
    .news-content h1, .news-content h2, .news-content h3,
    .page-body h1, .page-body h2, .page-body h3 {
        color: #e0e0e0;
    }
}

/* ===== SCROLLBAR STİLLERİ ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}