* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --primary-color: #e30a17; --secondary-color: #1a1a2e; --accent-color: #ff6b35; --text-color: #333; --text-light: #666; --bg-color: #f8f9fa; --white: #ffffff; --border-color: #e0e0e0; --shadow: 0 2px 10px rgba(0,0,0,0.1); --shadow-hover: 0 8px 30px rgba(0,0,0,0.15); --radius: 8px; --transition: all 0.3s ease; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; overflow-x: hidden; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; position: relative; z-index: 1; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none; -o-user-drag: none; user-drag: none; pointer-events: none; }
a img, .featured-article img, .news-card-image img, .featured-side-item img, .news-detail-image img { pointer-events: auto; }
.site-header { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.header-top { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--border-color); }
.logo h1 { font-family: 'Roboto Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; text-transform: uppercase; letter-spacing: -1px; }
.logo h1 a { color: var(--secondary-color); }
.logo h1 span { color: var(--primary-color); }
.header-date { font-size: 0.9rem; color: var(--text-light); font-weight: 300; }
.main-nav ul { display: flex; list-style: none; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.main-nav ul::-webkit-scrollbar { display: none; }
.main-nav a { display: block; padding: 15px 20px; font-weight: 500; font-size: 0.95rem; color: var(--text-color); position: relative; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.5px; }
.main-nav a:hover, .main-nav a.active { color: var(--primary-color); }
.main-nav a.active::after, .main-nav a:hover::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--primary-color); }
.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; user-select: none; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #ffffff; border-radius: 0 0 8px 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); min-width: 200px; z-index: 99999; padding: 8px 0; border-top: 3px solid #e30a17; }
.dropdown-item { display: block; padding: 10px 20px; font-size: 0.9rem; color: #333; text-decoration: none; transition: all 0.2s ease; white-space: nowrap; cursor: pointer; }
.dropdown-item:hover { background: #f0f0f0; color: #e30a17; padding-left: 28px; }
.dropdown-item.active { color: #e30a17; font-weight: 700; background: #fff5f5; }
.breaking-news { background: var(--primary-color); color: var(--white); padding: 10px 0; overflow: hidden; }
.breaking-news .container { display: flex; align-items: center; gap: 15px; }
.breaking-label { background: var(--white); color: var(--primary-color); padding: 4px 12px; font-weight: 700; font-size: 0.75rem; border-radius: 3px; white-space: nowrap; animation: pulse 2s infinite; text-transform: uppercase; letter-spacing: 1px; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker { display: flex; gap: 30px; animation: ticker 30s linear infinite; white-space: nowrap; font-size: 0.9rem; font-weight: 300; }
.ticker span { flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.filter-bar { background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%); border-bottom: 2px solid #ffc107; padding: 12px 0; position: sticky; top: 0; z-index: 999; }
.filter-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.filter-bar span { font-size: 0.9rem; color: #856404; }
.filter-bar strong { color: var(--primary-color); font-weight: 700; }
.clear-filter-btn { background: var(--primary-color); color: var(--white); border: none; padding: 8px 20px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.clear-filter-btn:hover { background: #c50915; transform: translateY(-1px); }
.featured-section { margin: 30px 0; }
.featured-main { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
.featured-article { position: relative; border-radius: var(--radius); overflow: hidden; height: 500px; }
.featured-article img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.featured-article:hover img { transform: scale(1.05); }
.featured-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 30px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); color: var(--white); }
.featured-overlay h2 { font-size: 1.8rem; margin: 10px 0; font-weight: 700; line-height: 1.3; }
.featured-overlay p { font-size: 0.95rem; opacity: 0.9; font-weight: 300; }
.category-badge { display: inline-block; background: var(--primary-color); color: var(--white); padding: 4px 12px; border-radius: 3px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.featured-sidebar { display: grid; grid-template-rows: repeat(4, 1fr); gap: 10px; }
.featured-side-item { position: relative; border-radius: var(--radius); overflow: hidden; height: 118px; }
.featured-side-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.featured-side-item:hover img { transform: scale(1.1); }
.side-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 15px; background: linear-gradient(transparent, rgba(0,0,0,0.85)); color: var(--white); }
.side-overlay .category-badge { font-size: 0.6rem; padding: 2px 8px; }
.side-overlay h3 { font-size: 0.9rem; margin-top: 5px; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-grid-section { margin: 40px 0; }
.section-title { font-family: 'Roboto Condensed', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 25px; padding-bottom: 10px; border-bottom: 3px solid var(--primary-color); display: inline-block; text-transform: uppercase; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }
.news-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); opacity: 0; transform: translateY(30px); animation: fadeInUp 0.6s ease forwards; }
.news-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.news-card-image { position: relative; height: 200px; overflow: hidden; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; opacity: 0; transition: opacity 0.5s ease; }
.news-card-image img.loaded { opacity: 1; }
.news-card:hover .news-card-image img { transform: scale(1.08); }
.news-card-image .category-badge { position: absolute; top: 15px; left: 15px; }
.news-card-content { padding: 20px; }
.news-card-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: var(--secondary-color); }
.news-card:hover .news-card-content h3 { color: var(--primary-color); }
.news-card-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 15px; }
.news-card-meta { display: flex; gap: 15px; font-size: 0.8rem; color: var(--text-light); padding-top: 12px; border-top: 1px solid var(--border-color); }
.load-more-container { text-align: center; margin: 40px 0; }
.load-more-btn { background: var(--primary-color); color: var(--white); border: none; padding: 16px 50px; font-size: 1rem; font-weight: 700; border-radius: 50px; cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; }
.load-more-btn:hover { background: #c50915; transform: translateY(-2px); box-shadow: 0 5px 20px rgba(227, 10, 23, 0.4); }
.load-more-btn:disabled { background: #999; cursor: not-allowed; }
.spinner { width: 20px; height: 20px; animation: rotate 1s linear infinite; }
.spinner .path { stroke: var(--white); stroke-linecap: round; animation: dash 1.5s ease-in-out infinite; }
@keyframes rotate { 100% { transform: rotate(360deg); } }
@keyframes dash { 0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; } 50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; } 100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; } }
.total-news-count { text-align: center; margin-top: 15px; font-size: 0.85rem; color: var(--text-light); font-style: italic; }
.special-corner { margin: 50px 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border-left: 5px solid var(--primary-color); }
.corner-header { background: var(--secondary-color); color: var(--white); padding: 20px 30px; display: flex; align-items: center; gap: 15px; }
.corner-header h2 { font-size: 1.3rem; font-weight: 700; }
.corner-subtitle { background: var(--primary-color); padding: 4px 12px; border-radius: 3px; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.corner-article { display: grid; grid-template-columns: 1fr 1.5fr; }
.corner-image { height: 100%; min-height: 350px; }
.corner-image img { width: 100%; height: 100%; object-fit: cover; }
.corner-content { padding: 35px; }
.corner-author { color: var(--primary-color); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.corner-content h3 { font-size: 1.6rem; font-weight: 700; margin: 15px 0; line-height: 1.3; color: var(--secondary-color); }
.corner-excerpt { font-size: 1rem; color: var(--text-light); line-height: 1.7; margin-bottom: 15px; font-style: italic; }
.corner-full-text { font-size: 0.95rem; color: var(--text-color); line-height: 1.8; margin-bottom: 20px; padding-top: 15px; border-top: 1px dashed var(--border-color); }
.read-more-corner { background: var(--secondary-color); color: var(--white); border: none; padding: 12px 30px; font-size: 0.9rem; font-weight: 600; border-radius: 5px; cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 0.5px; }
.read-more-corner:hover { background: var(--primary-color); }
.news-detail-main { padding: 40px 0; }
.news-detail { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 40px; }
.news-detail-header { padding: 40px 40px 0; }
.news-detail-header h1 { font-size: 2.2rem; font-weight: 900; line-height: 1.3; margin: 15px 0; color: var(--secondary-color); }
.news-detail-meta { display: flex; gap: 20px; flex-wrap: wrap; padding: 15px 0; border-top: 1px solid var(--border-color); margin-top: 15px; font-size: 0.9rem; color: var(--text-light); }
.news-detail-image { margin: 30px 40px; border-radius: var(--radius); overflow: hidden; }
.news-detail-image img { width: 100%; height: auto; max-height: 500px; object-fit: cover; }
.news-detail-content { padding: 0 40px 40px; font-size: 1.1rem; line-height: 1.9; color: var(--text-color); }
.news-detail-content .lead { font-size: 1.3rem; font-weight: 500; color: var(--secondary-color); margin-bottom: 25px; padding-bottom: 20px; border-bottom: 2px solid var(--border-color); line-height: 1.6; }
.news-detail-content p { margin-bottom: 20px; }
.news-detail-content h2 { font-size: 1.6rem; font-weight: 700; margin: 30px 0 15px; color: var(--secondary-color); }
.news-detail-content h3 { font-size: 1.3rem; font-weight: 600; margin: 25px 0 12px; color: var(--secondary-color); }
.news-detail-content ul, .news-detail-content ol { margin: 20px 0 20px 30px; }
.news-detail-content li { margin-bottom: 8px; }
.news-detail-content blockquote { border-left: 4px solid var(--primary-color); padding: 15px 25px; margin: 25px 0; background: var(--bg-color); font-style: italic; border-radius: 0 var(--radius) var(--radius) 0; }
.news-detail-content blockquote cite { display: block; margin-top: 10px; font-size: 0.9rem; color: var(--text-light); font-style: normal; font-weight: 600; }
.news-detail-content a { color: var(--primary-color); text-decoration: underline; font-weight: 500; }
.news-detail-content a:hover { color: #c50915; }
.share-section { padding: 20px 40px; border-top: 1px solid var(--border-color); display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.share-section span { font-weight: 600; color: var(--text-light); }
.share-btn { padding: 8px 20px; border-radius: 20px; font-size: 0.85rem; font-weight: 500; color: var(--white); }
.share-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #1da1f2; }
.share-btn.wa { background: #25d366; }
.news-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 30px 40px; border-top: 2px solid var(--border-color); }
.nav-prev, .nav-next { padding: 20px; background: var(--bg-color); border-radius: var(--radius); transition: var(--transition); }
.nav-prev:hover, .nav-next:hover { background: var(--primary-color); color: var(--white); }
.nav-prev:hover .nav-label, .nav-next:hover .nav-label, .nav-prev:hover .nav-title, .nav-next:hover .nav-title { color: var(--white); }
.nav-next { text-align: right; }
.nav-label { font-size: 0.8rem; color: var(--primary-color); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.nav-title { font-size: 0.95rem; margin-top: 5px; font-weight: 500; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nav-prev.disabled, .nav-next.disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.breadcrumb { background: var(--white); padding: 15px 0; border-bottom: 1px solid var(--border-color); font-size: 0.85rem; }
.breadcrumb .container { display: flex; align-items: center; gap: 8px; color: var(--text-light); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary-color); }
.breadcrumb span { color: var(--text-color); font-weight: 500; }
.comments-section { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; }
.comments-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 3px solid var(--primary-color); display: inline-block; }
.comment-form-wrapper { margin-bottom: 40px; padding: 30px; background: var(--bg-color); border-radius: var(--radius); }
.comment-form-wrapper h3 { font-size: 1.2rem; margin-bottom: 20px; color: var(--secondary-color); }
.comment-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.comment-form .form-group { margin-bottom: 15px; }
.comment-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.comment-form input, .comment-form textarea { width: 100%; padding: 12px 15px; border: 2px solid var(--border-color); border-radius: var(--radius); font-family: inherit; font-size: 0.95rem; transition: var(--transition); background: var(--white); -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; -webkit-touch-callout: default; }
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(227, 10, 23, 0.1); }
.comment-form small { display: block; margin-top: 5px; font-size: 0.8rem; color: var(--text-light); font-style: italic; }
.comment-form textarea { resize: vertical; min-height: 100px; }
.submit-comment-btn { background: var(--primary-color); color: var(--white); border: none; padding: 14px 40px; font-size: 0.95rem; font-weight: 700; border-radius: 5px; cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; }
.submit-comment-btn:hover { background: #c50915; transform: translateY(-1px); }
.submit-comment-btn:disabled { background: #999; cursor: not-allowed; }
.comment-message { margin-top: 15px; padding: 15px 20px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; }
.comment-message.warning { background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%); color: #856404; border: 2px solid #ffc107; border-left: 5px solid #ff9800; }
.comment-message.warning strong { display: block; font-size: 1rem; margin-bottom: 3px; }
.comment-message.warning p { margin: 0; font-weight: 400; }
.comments-list { display: flex; flex-direction: column; gap: 20px; }
.no-comments { text-align: center; padding: 40px; color: var(--text-light); font-style: italic; background: var(--bg-color); border-radius: var(--radius); }
.comment-item { display: flex; gap: 15px; padding: 20px; background: var(--bg-color); border-radius: var(--radius); border-left: 3px solid var(--primary-color); }
.comment-avatar { width: 45px; height: 45px; border-radius: 50%; background: var(--primary-color); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.comment-body { flex: 1; }
.comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.comment-header strong { font-size: 0.95rem; color: var(--secondary-color); }
.comment-date { font-size: 0.8rem; color: var(--text-light); }
.comment-body p { font-size: 0.9rem; line-height: 1.6; }
.related-news { margin-top: 50px; padding-top: 40px; border-top: 2px solid var(--border-color); }
.related-news .section-title { margin-bottom: 30px; }
.related-news .news-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.related-news .news-card { opacity: 1; transform: translateY(0); }
.site-footer { background: var(--secondary-color); color: var(--white); padding: 50px 0 0; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 20px; font-weight: 700; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary-color); }
.footer-col p { font-size: 0.9rem; opacity: 0.8; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; opacity: 0.7; }
.footer-col ul li a:hover { opacity: 1; color: var(--primary-color); padding-left: 5px; }
.social-links { display: flex; gap: 10px; margin-top: 10px; }
.social-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: var(--white) !important; }
.social-icon.facebook { background: #1877f2; }
.social-icon.twitter { background: #1da1f2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.youtube { background: #ff0000; }
.social-icon:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.85rem; opacity: 0.6; }
.scroll-top-btn { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--primary-color); color: var(--white); border: none; border-radius: 50%; font-size: 1.5rem; cursor: pointer; box-shadow: 0 4px 15px rgba(227, 10, 23, 0.4); transition: var(--transition); opacity: 0; visibility: hidden; z-index: 999; }
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--secondary-color); transform: translateY(-3px); }
@media (max-width: 1024px) { .featured-main { grid-template-columns: 1fr; } .featured-sidebar { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); } .featured-side-item { height: 150px; } .corner-article { grid-template-columns: 1fr; } .corner-image { min-height: 250px; } .footer-grid { grid-template-columns: 1fr 1fr; } .news-navigation { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .header-top { flex-direction: column; gap: 10px; } .logo h1 { font-size: 1.8rem; } .main-nav a { padding: 12px 15px; font-size: 0.85rem; } .featured-article { height: 350px; } .featured-overlay h2 { font-size: 1.3rem; } .featured-sidebar { grid-template-columns: 1fr; } .news-grid { grid-template-columns: 1fr; } .news-detail-header h1 { font-size: 1.5rem; } .news-detail-header, .news-detail-image, .news-detail-content, .share-section, .news-navigation { padding-left: 20px; padding-right: 20px; } .news-detail-image { margin: 20px; } .comments-section { padding: 20px; } .comment-form .form-row { grid-template-columns: 1fr; } .comment-item { flex-direction: column; } .footer-grid { grid-template-columns: 1fr; } .corner-content { padding: 25px; } .corner-content h3 { font-size: 1.3rem; } .filter-bar .container { flex-direction: column; gap: 10px; text-align: center; } .clear-filter-btn { width: 100%; } .dropdown-menu { position: fixed; top: auto; left: 10px; right: 10px; min-width: auto; max-height: 60vh; overflow-y: auto; border-radius: 8px; } }
@media (max-width: 480px) { .breaking-news .container { flex-direction: column; gap: 8px; } .load-more-btn { padding: 14px 30px; font-size: 0.85rem; } .scroll-top-btn { bottom: 20px; right: 20px; width: 42px; height: 42px; } }
.news-card:nth-child(1) { animation-delay: 0.1s; } .news-card:nth-child(2) { animation-delay: 0.2s; } .news-card:nth-child(3) { animation-delay: 0.3s; } .news-card:nth-child(4) { animation-delay: 0.4s; } .news-card:nth-child(5) { animation-delay: 0.5s; }
input, textarea, .comment-form input, .comment-form textarea, .comment-form-wrapper input, .comment-form-wrapper textarea { -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; -webkit-touch-callout: default; }
@media print { body { display: none !important; } html::after { content: "⚠️ Bu sayfa yazdırılamaz! Tüm hakları saklıdır."; display: block; font-size: 24px; text-align: center; padding: 50px; color: #e30a17; font-weight: bold; } }