/* ============================================
   UMTHaber PRO - Main Stylesheet
   Tüm sayfaları destekler: Anasayfa, Duyurular,
   İlanlar, Vefat, Galeri, Kategoriler, Yazarlar,
   Künye, İletişim, Giriş, Kaydol, Haber Detay
   ============================================ */

/* ========== RESET & VARIABLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a2332;
    --secondary: #c0392b;
    --accent: #e74c3c;
    --bg-light: #f4f6f8;
    --bg-white: #ffffff;
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
    --border: #e1e4e8;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.12);
    --radius: 8px;
    --spacing: 20px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ========== HEADER ========== */
.top-bar {
    background: var(--primary);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.2s;
}

.top-bar a:hover {
    color: white;
}

.main-header {
    background: white;
    border-bottom: 3px solid var(--secondary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
    cursor: pointer;
}

.logo-icon {
    background: var(--secondary);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}

.logo-text span {
    color: var(--secondary);
}

.search-box {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 10px 45px 10px 15px;
    border: 2px solid var(--border);
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.search-box input:focus {
    border-color: var(--secondary);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary);
    color: white;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.search-box button:hover {
    background: var(--accent);
}

.header-datetime {
    text-align: right;
    font-size: 13px;
    color: var(--text-muted);
}

.header-datetime .time {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* ========== BREADCRUMB (Haber Detay) ========== */
.breadcrumb {
    background: white;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb-list a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

.breadcrumb-list i {
    font-size: 10px;
}

/* ========== MAIN LAYOUT ========== */
.main-wrapper {
    max-width: 1400px;
    margin: var(--spacing) auto;
    padding: 0 var(--spacing);
    display: grid;
    grid-template-columns: 240px 1fr 280px;
    gap: var(--spacing);
    align-items: start;
}

/* ========== LEFT SIDEBAR ========== */
.left-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: var(--spacing);
}

.nav-menu {
    background: var(--primary);
    color: white;
}

.nav-menu-header {
    padding: 15px 20px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-menu ul {
    list-style: none;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    cursor: pointer;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255,255,255,0.08);
    border-left-color: var(--accent);
    color: white;
}

.nav-menu a i {
    width: 20px;
    text-align: center;
    color: var(--accent);
}

.social-card,
.weather-card {
    padding: 20px;
    text-align: center;
}

.social-card h3 {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icons a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.weather-card i {
    font-size: 40px;
    color: #f39c12;
    margin-bottom: 8px;
}

.weather-temp {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.weather-city {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========== MAIN CONTENT ========== */
.main-content {
    min-width: 0;
}

/* ========== TICKER (Anasayfa) ========== */
.ticker {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: var(--spacing);
}

.ticker-header {
    background: var(--secondary);
    color: white;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.ticker-track {
    overflow: hidden;
    padding: 12px 0;
    background: #fafafa;
}

.ticker-scroll {
    display: flex;
    gap: 15px;
    animation: tickerScroll 40s linear infinite;
}

.ticker-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid var(--border);
    max-width: 280px;
}

.ticker-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.ticker-item span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-dark);
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== MAIN SLIDER (Anasayfa) ========== */
.main-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: var(--spacing);
    background: var(--primary);
    height: 420px;
}

.slides {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    color: white;
    z-index: 2;
}

.slide-content h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 80%;
}

.slide-content p {
    font-size: 15px;
    opacity: 0.95;
    margin-bottom: 12px;
    max-width: 70%;
    line-height: 1.5;
}

.slide-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    opacity: 0.9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 3;
    transition: all 0.2s;
}

.slider-btn:hover {
    background: var(--secondary);
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    right: 35px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

/* ========== CATEGORIES (Anasayfa - 2 Sütun) ========== */
.categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing);
}

.category-block {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.category-header {
    padding: 12px 18px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-block:nth-child(1) .category-header { background: var(--secondary); }
.category-block:nth-child(2) .category-header { background: #27ae60; }
.category-block:nth-child(3) .category-header { background: #2980b9; }
.category-block:nth-child(4) .category-header { background: #8e44ad; }
.category-block:nth-child(5) .category-header { background: #16a085; }
.category-block:nth-child(6) .category-header { background: #d35400; }

.category-body {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 15px;
    align-items: start;
}

.category-image {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 280px;
}

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

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

.category-image .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.category-image .overlay h3 {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.news-list {
    list-style: none;
}

.news-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

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

.news-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
    display: block;
    transition: all 0.2s;
    padding-left: 15px;
    position: relative;
}

.news-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}

.news-list a:hover {
    color: var(--secondary);
    padding-left: 18px;
}

/* ========== ARTICLE (Haber Detay) ========== */
.article-container {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.article-header {
    padding: 30px;
    border-bottom: 1px solid var(--border);
}

.article-category {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.article-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta-item i {
    color: var(--secondary);
}

.article-meta-item a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.article-featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.article-body {
    padding: 30px;
}

.article-summary {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    padding: 20px;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 25px;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.article-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 12px;
    color: var(--text-dark);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 20px 0;
}

.article-content ul,
.article-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--secondary);
    padding: 20px 25px;
    margin: 25px 0;
    font-style: italic;
    color: var(--text-dark);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-tags {
    padding: 20px 30px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.article-tags strong {
    color: var(--text-dark);
    font-size: 14px;
}

.tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.tag:hover {
    background: var(--secondary);
    color: white;
}

.article-share {
    padding: 20px 30px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.share-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
}

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

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.linkedin { background: #0077b5; }

.related-news {
    padding: 30px;
    border-top: 1px solid var(--border);
}

.related-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

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

.related-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.related-item-content {
    padding: 15px;
}

.related-item-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.related-item-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.related-item-title a:hover {
    color: var(--secondary);
}

.related-item-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========== RIGHT SIDEBAR WIDGETS ========== */
.right-sidebar {
    position: sticky;
    top: 90px;
}

.widget {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
    margin-bottom: var(--spacing);
}

.widget-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    padding-bottom: 10px;
    margin-bottom: 14px;
    border-bottom: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.editor-list,
.popular-list {
    list-style: none;
}

.editor-list li,
.popular-list li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
}

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

.editor-list a,
.popular-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    display: block;
    transition: color 0.2s;
}

.editor-list a:hover,
.popular-list a:hover {
    color: var(--secondary);
}

.editor-list .author {
    font-weight: 700;
    color: var(--secondary);
    font-size: 12px;
    margin-top: 2px;
}

.poll-question {
    font-size: 13px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.poll-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    cursor: pointer;
}

.poll-option input {
    cursor: pointer;
}

.poll-btn {
    width: 100%;
    padding: 9px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.poll-btn:hover {
    background: var(--accent);
}

.currency-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.currency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: var(--bg-light);
    border-radius: 5px;
    font-size: 13px;
}

.currency-item .label {
    font-weight: 600;
    color: var(--text-dark);
}

.currency-item .value {
    font-weight: 700;
    color: var(--secondary);
}

.popular-list {
    counter-reset: pop;
}

.popular-list li {
    counter-increment: pop;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.popular-list li::before {
    content: counter(pop);
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* ========== SPA PAGE SECTIONS ========== */
.page-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.page-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: var(--spacing);
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary);
    display: inline-block;
}

/* List Items (Duyurular, İlanlar) */
.list-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.list-item:hover {
    background: var(--bg-light);
    margin: 0 -30px;
    padding: 15px 30px;
}

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

.list-date {
    background: var(--primary);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    min-width: 60px;
    height: fit-content;
}

.list-date .day {
    font-size: 20px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.list-date .month {
    font-size: 11px;
    text-transform: uppercase;
}

.list-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.list-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.list-content h3 a:hover {
    color: var(--secondary);
}

.list-content p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Vefat İlanları */
.vefat-item {
    border: 2px solid #333;
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    background: #fafafa;
}

.vefat-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.vefat-item .vefat-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #333;
}

.vefat-item p {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.vefat-item .cenaze-info {
    background: #333;
    color: white;
    padding: 10px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 13px;
}

/* Galeri */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 200px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 15px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

/* Kategoriler & Yazarlar Grid */
.category-grid,
.author-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.category-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
}

.category-item:hover {
    border-color: var(--secondary);
    background: white;
    box-shadow: var(--shadow);
}

.category-item i {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.category-item h4 {
    font-size: 15px;
}

.category-item span {
    font-size: 12px;
    color: var(--text-muted);
}

.author-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.author-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid var(--secondary);
}

.author-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.author-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.author-item a {
    font-size: 13px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

/* Künye & İletişim */
.kunye-text {
    font-size: 15px;
    line-height: 1.8;
}

.kunye-text strong {
    color: var(--primary);
    display: inline-block;
    width: 180px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
}

.btn-primary {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--accent);
}

/* Auth Pages (Giriş/Kaydol) */
.auth-container {
    max-width: 400px;
    margin: 40px auto;
    text-align: center;
}

.auth-container h2 {
    margin-bottom: 20px;
    color: var(--primary);
}

.auth-container .form-group {
    text-align: left;
}

.auth-links {
    margin-top: 15px;
    font-size: 13px;
}

.auth-links a {
    color: var(--secondary);
    text-decoration: none;
    cursor: pointer;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    margin-top: 40px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px var(--spacing) 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-col a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 13px;
    line-height: 2;
    display: block;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px var(--spacing);
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .main-wrapper {
        grid-template-columns: 220px 1fr 260px;
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .main-wrapper {
        grid-template-columns: 1fr;
    }

    .left-sidebar,
    .right-sidebar {
        position: static;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

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

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

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

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

    .header-datetime {
        display: none;
    }
}

@media (max-width: 640px) {
    .top-bar,
    .search-box {
        display: none;
    }

    .logo-text {
        font-size: 18px;
    }

    .main-slider {
        height: 320px;
    }

    .slide-content h1 {
        font-size: 22px;
        max-width: 100%;
    }

    .slide-content p {
        display: none;
    }

    .category-body {
        grid-template-columns: 1fr;
    }

    .category-image {
        height: 220px;
        order: -1;
    }

    .article-title {
        font-size: 24px;
    }

    .article-featured-image {
        height: 300px;
    }

    .article-header,
    .article-body,
    .article-tags,
    .article-share,
    .related-news {
        padding: 20px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ticker-item {
        max-width: 240px;
    }
}

/* ========== spot ========== */
.floating-spot {
    position: fixed;
    top: 60%;
    transform: translateY(-50%);
    z-index: 999;
    width: 285px;
    padding: 0;
    background: transparent;
}

.floating-spot-left { left: -20px; }
.floating-spot-right { right: -20px; }

.floating-spot-close {
    position: absolute;
    top: -12px;
    /* ORTALAMAK İÇİN right yerine left ve transform kullan */
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    border: 2px solid #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-spot-close:hover {
    background: #b91c1c;
    transform: scale(1.1);
}

.floating-spot .spot-item {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.floating-spot .spot-item img {
    width: 300px;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

@media (max-width: 1400px) {
    .floating-spot { display: none !important; }
}

@media (max-width: 1200px) {
    .floating-spot { display: none !important; }
}

[data-theme="dark"] .floating-spot .spot-item img {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ============================================ */
/* 📌 CANLI TV BUTONU - HEADER */
/* ============================================ */
.live-tv-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 12px;
    background: linear-gradient(135deg, #e60023, #cc0000);
    color: #ffffff;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    margin-right: 8px;
    box-shadow: 0 2px 12px rgba(230, 0, 35, 0.3);
}

.live-tv-btn:hover {
    background: linear-gradient(135deg, #cc0000, #b30000);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(230, 0, 35, 0.4);
    color: #ffffff;
}

.live-tv-btn:active {
    transform: translateY(0);
}

/* CANLI NOKTA - YANIP SÖNEN */
.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    animation: live-pulse 1.2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.live-text {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* ============================================ */
/* 📌 CANLI TV - MOBIL SIDEBAR */
/* ============================================ */
.drawer-live-tv {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    background: linear-gradient(135deg, rgba(230, 0, 35, 0.12), rgba(204, 0, 0, 0.08)) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(230, 0, 35, 0.2) !important;
    margin: 4px 0 !important;
    font-weight: 700 !important;
    color: #e60023 !important;
    transition: all 0.3s ease !important;
}

.drawer-live-tv:hover {
    background: linear-gradient(135deg, rgba(230, 0, 35, 0.2), rgba(204, 0, 0, 0.15)) !important;
    border-color: #e60023 !important;
}

.drawer-live-tv .live-dot-mobile {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e60023;
    border-radius: 50%;
    animation: live-pulse 1.2s ease-in-out infinite;
    flex-shrink: 0;
}

.drawer-live-tv i {
    color: #e60023;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .header-actions .live-tv-btn {
        display: none !important;
    }
}
/* ============================================ */
/* 📌 ANİMASYON - YANIP SÖNEN NOKTA */
/* ============================================ */
@keyframes live-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(0.6);
    }
}

/* ============================================ */
/* 📌 RESPONSIVE */
/* ============================================ */
@media (max-width: 768px) {
    .live-tv-btn {
        padding: 4px 12px 4px 8px;
        font-size: 0.7rem;
        margin-right: 4px;
    }
    
    .live-dot {
        width: 8px;
        height: 8px;
    }
    
    .live-text {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .live-tv-btn .live-text {
        display: none;
    }
    
    .live-tv-btn {
        padding: 6px 10px;
        border-radius: 50%;
        min-width: 36px;
        min-height: 36px;
        justify-content: center;
    }
    
    .live-dot {
        width: 10px;
        height: 10px;
        margin: 0;
    }
}

/* DARK MODE */
[data-theme="dark"] .live-tv-btn {
    box-shadow: 0 2px 12px rgba(230, 0, 35, 0.4);
}

[data-theme="dark"] .live-tv-btn:hover {
    box-shadow: 0 4px 20px rgba(230, 0, 35, 0.5);
}

[data-theme="dark"] .drawer-live-tv {
    background: linear-gradient(135deg, rgba(230, 0, 35, 0.15), rgba(204, 0, 0, 0.1)) !important;
    border-color: rgba(230, 0, 35, 0.25) !important;
}

[data-theme="dark"] .drawer-live-tv:hover {
    background: linear-gradient(135deg, rgba(230, 0, 35, 0.25), rgba(204, 0, 0, 0.18)) !important;
}

/* Süper Lig Widget */
.super-lig-widget {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 20px;
    border-left: 3px solid #e60023;
}

.super-lig-widget .widget-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e60023;
}

.super-lig-widget .widget-title i {
    font-size: 14px;
}

/* Karanlık mod */
[data-theme="dark"] .super-lig-widget {
    background: #1e293b;
    border-left-color: #e60023;
}

[data-theme="dark"] .super-lig-widget table thead {
    background: #1e293b;
}

[data-theme="dark"] .super-lig-widget table thead th {
    color: #94a3b8;
}

[data-theme="dark"] .super-lig-widget table tbody td {
    color: #f1f5f9;
}

[data-theme="dark"] .super-lig-widget table tbody tr {
    border-bottom-color: #334155;
}

[data-theme="dark"] .super-lig-widget table tbody tr:hover {
    background: #334155 !important;
}

[data-theme="dark"] .super-lig-widget .widget-title {
    border-bottom-color: #e60023;
}

[data-theme="dark"] .super-lig-widget .widget-title small {
    color: #94a3b8;
}

[data-theme="dark"] .super-lig-widget .widget-title i {
    color: #e60023;
}
@media (max-width: 768px) {
    .super-lig-widget {
        padding: 14px;
        border-radius: 10px;
    }
    
    .super-lig-widget table {
        font-size: 10px !important;
    }
    
    .super-lig-widget table td,
    .super-lig-widget table th {
        padding: 3px 2px !important;
        font-size: 9px !important;
    }
    
    .super-lig-widget table td:first-child,
    .super-lig-widget table th:first-child {
        padding-left: 2px !important;
    }
    
    .super-lig-widget table td:last-child,
    .super-lig-widget table th:last-child {
        padding-right: 2px !important;
    }
}

@media (max-width: 480px) {
    .super-lig-widget {
        padding: 10px;
        border-radius: 8px;
    }
    
    .super-lig-widget table td,
    .super-lig-widget table th {
        font-size: 8px !important;
        padding: 2px 1px !important;
    }
    
    .super-lig-widget .widget-title {
        font-size: 12px;
    }
}

/* Piyasalar Widget */
.markets-widget {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.markets-widget .widget-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e60023;
}

.markets-widget .widget-title i {
    font-size: 14px;
}

.markets-widget .currency-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.markets-widget .currency-item:last-child {
    border-bottom: none;
}

.markets-widget .currency-item .label {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}

.markets-widget .currency-item .value {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    min-width: 70px;
    text-align: right;
}

.markets-widget .currency-item .change {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    min-width: 55px;
    text-align: center;
    margin-left: 8px;
}

.markets-widget .change.positive {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.markets-widget .change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.markets-widget .change.neutral {
    color: #94a3b8;
    background: rgba(148, 163, 184, 0.1);
}

/* Karanlık mod */
[data-theme="dark"] .markets-widget {
    background: #1e293b;
}

[data-theme="dark"] .markets-widget .widget-title {
    color: #f1f5f9;
    border-bottom-color: #e60023;
}

[data-theme="dark"] .markets-widget .currency-item {
    border-bottom-color: #334155;
}

[data-theme="dark"] .markets-widget .currency-item .label {
    color: #cbd5e1;
}

[data-theme="dark"] .markets-widget .currency-item .value {
    color: #f1f5f9;
}

[data-theme="dark"] #marketBtc {
    color: #f7931a !important;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .markets-widget {
        padding: 14px;
    }
    
    .markets-widget .currency-item {
        padding: 8px 0;
    }
    
    .markets-widget .currency-item .label {
        font-size: 12px;
    }
    
    .markets-widget .currency-item .value {
        font-size: 13px;
        min-width: 60px;
    }
    
    .markets-widget .currency-item .change {
        font-size: 10px;
        min-width: 48px;
        padding: 1px 6px;
    }
}

@media (max-width: 480px) {
    .markets-widget {
        padding: 10px;
    }
    
    .markets-widget .currency-item {
        padding: 6px 0;
        flex-wrap: wrap;
    }
    
    .markets-widget .currency-item .label {
        font-size: 11px;
        flex: 1 1 100%;
    }
    
    .markets-widget .currency-item .value {
        font-size: 12px;
        min-width: 50px;
        text-align: left;
    }
    
    .markets-widget .currency-item .change {
        font-size: 9px;
        min-width: 40px;
        padding: 1px 4px;
    }
}

/* ============================================
   EDITÖRÜN SEÇTİKLERİ - RESİMLİ
   ============================================ */
.widget .editor-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget .editor-list .editor-item {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.widget .editor-list .editor-item:last-child {
    border-bottom: none;
}

.widget .editor-list .editor-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.widget .editor-list .editor-link:hover .editor-title {
    color: #e60023;
}

.widget .editor-list .editor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #f1f5f9;
}

.widget .editor-list .editor-content {
    flex: 1;
    min-width: 0;
}

.widget .editor-list .editor-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.widget .editor-list .author-name {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Karanlık mod */
[data-theme="dark"] .widget .editor-list .editor-item {
    border-bottom-color: #334155;
}

[data-theme="dark"] .widget .editor-list .editor-title {
    color: #f1f5f9;
}

[data-theme="dark"] .widget .editor-list .editor-link:hover .editor-title {
    color: #e60023;
}

[data-theme="dark"] .widget .editor-list .author-name {
    color: #64748b;
}

[data-theme="dark"] .widget .editor-list .editor-avatar {
    border-color: #334155;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .widget .editor-list .editor-item {
        padding: 8px 0;
    }
    
    .widget .editor-list .editor-avatar {
        width: 34px;
        height: 34px;
    }
    
    .widget .editor-list .editor-title {
        font-size: 12px;
    }
    
    .widget .editor-list .author-name {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .widget .editor-list .editor-avatar {
        width: 30px;
        height: 30px;
    }
    
    .widget .editor-list .editor-title {
        font-size: 11px;
    }
}

/* ============================================ */
/* 📌 FOOTER - YENİ TASARIM */
/* ============================================ */

.footer {
    background: #0f172a;
    color: rgba(255,255,255,0.85);
    margin-top: 40px;
    border-top: 3px solid #e60023;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 30px 30px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e60023;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

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

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.8;
    display: block;
    transition: all 0.2s ease;
    padding: 2px 0;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-inner a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-inner a:hover {
    color: #ffffff;
}

/* ============================================ */
/* 📌 MOBİL - 4 SÜTUN TEK SIRA, EŞİT BOŞLUK */
/* ============================================ */

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        padding: 30px 16px 20px;
    }
    
    .footer-col h4 {
        font-size: 12px;
        margin-bottom: 10px;
        padding-bottom: 6px;
        letter-spacing: 0.5px;
        border-bottom-width: 2px;
        display: block;
        text-align: center;
    }
    
    .footer-col ul li {
        margin-bottom: 4px;
    }
    
    .footer-col ul li a {
        font-size: 11px;
        line-height: 1.6;
        text-align: center;
        padding: 2px 0;
    }
    
    .footer-col ul li a:hover {
        padding-left: 0;
        color: #e60023;
    }
    
    .footer-bottom {
        padding: 14px 16px;
    }
    
    .footer-bottom-inner {
        font-size: 11px;
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        gap: 10px;
        padding: 20px 10px 16px;
    }
    
    .footer-col h4 {
        font-size: 10px;
        margin-bottom: 6px;
        padding-bottom: 4px;
        letter-spacing: 0.3px;
    }
    
    .footer-col ul li {
        margin-bottom: 2px;
    }
    
    .footer-col ul li a {
        font-size: 9px;
        line-height: 1.5;
        padding: 1px 0;
    }
    
    .footer-bottom {
        padding: 10px 10px;
    }
    
    .footer-bottom-inner {
        font-size: 9px;
        gap: 2px;
    }
}

/* ============================================ */
/* 📌 DARK MODE DESTEĞİ */
/* ============================================ */
[data-theme="dark"] .footer {
    background: #0a0a14;
    border-top-color: #e60023;
}

[data-theme="dark"] .footer-col h4 {
    border-bottom-color: #e60023;
}

[data-theme="dark"] .footer-col ul li a {
    color: rgba(255,255,255,0.6);
}

[data-theme="dark"] .footer-col ul li a:hover {
    color: #ffffff;
}

[data-theme="dark"] .footer-bottom {
    border-top-color: rgba(255,255,255,0.05);
}

[data-theme="dark"] .footer-bottom-inner {
    color: rgba(255,255,255,0.4);
}

[data-theme="dark"] .footer-bottom-inner a {
    color: rgba(255,255,255,0.5);
}

[data-theme="dark"] .footer-bottom-inner a:hover {
    color: #ffffff;
}

/* ============================================ */
/* 📌 MOBİLDE SIDEBAR SIRALAMASI */
/* ============================================ */

/* Mobil (768px ve altı) */
@media (max-width: 768px) {
    /* Main wrapper'ı flex container yap */
    .main-wrapper {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }
    
    /* Tüm elemanları tam genişlik yap */
    .main-wrapper > * {
        width: 100% !important;
        flex-shrink: 0 !important;
    }
    
    /* Sıralama: Header zaten en üstte, sonra main-content, sonra left-sidebar, sonra right-sidebar */
    /* main-content (ana içerik) - önce gelsin */
    .main-wrapper .main-content {
        order: 1 !important;
    }
    
    /* left-sidebar - ikinci sırada */
    .main-wrapper .left-sidebar {
        order: 2 !important;
        margin-top: 20px !important;
        padding: 0 10px !important;
    }
    
    /* right-sidebar - en sonda */
    .main-wrapper .right-sidebar {
        order: 3 !important;
        margin-top: 20px !important;
        padding: 0 10px !important;
    }
    
    /* Sidebar içindeki hava durumu zaten en altta (left-sidebar içinde order:9999) */
}

/* Küçük Mobil (480px altı) */
@media (max-width: 480px) {
    .main-wrapper .left-sidebar {
        margin-top: 15px !important;
        padding: 0 5px !important;
    }
    
    .main-wrapper .right-sidebar {
        margin-top: 15px !important;
        padding: 0 5px !important;
    }
}

/* ===== REAKSİYON EMOJİ STİLLERİ ===== */
.news-rating-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.news-rating-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reactions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.reaction-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    border: 2px solid transparent;
    min-width: 60px;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.reaction-item:hover {
    transform: translateY(-4px);
    background: #f1f5f9;
    border-color: #e9ecef;
}

.reaction-item:active {
    transform: scale(0.92);
}

.reaction-item.selected {
    border-color: #f59e0b;
    background: #fef3c7;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.reaction-item .reaction-emoji {
    font-size: 32px;
    line-height: 1.2;
    transition: transform 0.3s ease;
}

.reaction-item:hover .reaction-emoji {
    transform: scale(1.15);
}

.reaction-item.selected .reaction-emoji {
    transform: scale(1.2);
}

.reaction-item .reaction-label {
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.reaction-item.selected .reaction-label {
    color: #d97706;
}

.reaction-item .reaction-count {
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    min-height: 20px;
    line-height: 1.2;
}

.reaction-item .reaction-count.has-count {
    color: #1e293b;
}

.reaction-item.selected .reaction-count {
    color: #d97706;
}

.rating-text {
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
    margin: 12px 0 0 0;
}

.current-rating-display {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.current-rating-display .reaction-emoji {
    font-size: 24px;
}

.current-rating-display strong {
    color: #1e293b;
}

/* ===== DARK MODE ===== */
[data-theme="dark"] .news-rating-section {
    background: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .news-rating-section h4 {
    color: #f1f5f9;
}

[data-theme="dark"] .reaction-item {
    background: #0f172a;
}

[data-theme="dark"] .reaction-item:hover {
    background: #334155;
    border-color: #475569;
}

[data-theme="dark"] .reaction-item.selected {
    background: #451a03;
    border-color: #f59e0b;
}

[data-theme="dark"] .reaction-item .reaction-label {
    color: #94a3b8;
}

[data-theme="dark"] .reaction-item.selected .reaction-label {
    color: #fbbf24;
}

[data-theme="dark"] .reaction-item .reaction-count {
    color: #64748b;
}

[data-theme="dark"] .reaction-item .reaction-count.has-count {
    color: #e2e8f0;
}

[data-theme="dark"] .reaction-item.selected .reaction-count {
    color: #fbbf24;
}

[data-theme="dark"] .rating-text {
    color: #64748b;
}

[data-theme="dark"] .current-rating-display {
    color: #94a3b8;
}

[data-theme="dark"] .current-rating-display strong {
    color: #f1f5f9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .news-rating-section {
        padding: 16px;
        margin: 16px 0;
    }
    
    .reactions {
        gap: 8px;
    }
    
    .reaction-item {
        padding: 10px 12px;
        min-width: 50px;
    }
    
    .reaction-item .reaction-emoji {
        font-size: 26px;
    }
    
    .reaction-item .reaction-label {
        font-size: 9px;
    }
    
    .reaction-item .reaction-count {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .news-rating-section {
        padding: 12px;
        margin: 12px 0;
        border-radius: 8px;
    }
    
    .news-rating-section h4 {
        font-size: 14px;
    }
    
    .reactions {
        gap: 6px;
    }
    
    .reaction-item {
        padding: 8px 10px;
        min-width: 44px;
        border-radius: 8px;
    }
    
    .reaction-item .reaction-emoji {
        font-size: 22px;
    }
    
    .reaction-item .reaction-label {
        font-size: 7px;
    }
    
    .reaction-item .reaction-count {
        font-size: 10px;
        min-height: 16px;
    }
    
    .current-rating-display {
        font-size: 12px;
    }
    
    .current-rating-display .reaction-emoji {
        font-size: 20px;
    }
}