:root {
    --bg: #0d0d0f;
    --panel: #15151a;
    --panel-2: #1d1d24;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --accent: #7c3aed;
    --accent-2: #22c55e;
    --danger: #ef4444;
    --card: #111118;
    --border: rgba(255,255,255,0.05);
    --shadow: 0 4px 16px rgba(0,0,0,0.2);
}

* { box-sizing: border-box; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    font-size: 14px;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.dark-theme body {
    background: radial-gradient(circle at 20% 20%, rgba(124,58,237,0.08), transparent 30%),
                radial-gradient(circle at 80% 0%, rgba(34,197,94,0.08), transparent 28%),
                var(--bg);
}
a { color: inherit; text-decoration: none; }

.shell {
    max-width: 1080px;
    margin: 0 auto;
    padding: 24px 20px 40px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.brand {
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 20px;
}
.pill {
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    transition: all 0.2s ease;
}
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-right: 8px;
}
.lang-btn {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.2s ease;
}
.lang-btn:hover {
    color: var(--text);
    background: rgba(255,255,255,0.06);
}
.lang-btn.active {
    background: rgba(124,58,237,0.25);
    color: #c4b5fd;
}
.lang-sep {
    color: var(--muted);
    font-size: 12px;
    user-select: none;
}
.pill:hover {
    background: rgba(255,255,255,0.08);
    color: var(--text);
}

.board {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.row-head, .topic {
    display: grid;
    grid-template-columns: 36px 1fr 120px 120px;
    gap: 12px;
    align-items: center;
}
.row-head {
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.topic {
    padding: 14px 18px;
    border-top: 1px solid var(--border);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.18s ease;
    position: relative;
}
.topic::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 0;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, rgba(124,58,237,0.9), rgba(34,197,94,0.8));
    opacity: 0;
    transition: opacity 0.18s ease, width 0.18s ease;
}
.topic:hover {
    background: rgba(124,58,237,0.04);
    transform: translateX(2px);
    box-shadow: 0 10px 22px rgba(15,23,42,0.7);
}
.topic:hover::before {
    opacity: 1;
    width: 4px;
}
.topic-title {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.topic-title-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.topic-title-head a { flex: 1; min-width: 0; }
.topic-title small { color: var(--muted); }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid var(--border);
}
.badge.no-game { background: rgba(255,255,255,0.05); color: var(--muted); }
.game-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 10px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.3);
    color: #c4b5fd;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.game-badge:hover {
    background: rgba(124,58,237,0.25);
    transform: translateY(-1px);
}
.game-badge-logo {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
}
.reading-time {
    color: var(--muted);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.reaction-stack {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.reaction {
    padding: 6px 9px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--muted);
    display: inline-flex;
    gap: 6px;
    align-items: center;
    font-weight: 600;
}

.card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    box-shadow: var(--shadow);
}
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.content-header h1 { margin: 0; font-size: 24px; font-weight: 700; }
.content-meta { color: var(--muted); display: flex; gap: 12px; align-items: center; }
.content-body {
    margin-top: 18px;
    line-height: 1.7;
    color: #f4f4f5;
}
.content-body img { max-width: 100%; border-radius: 10px; margin: 12px 0; }
.content-body blockquote { border-left: 3px solid var(--accent); padding-left: 12px; color: #c7c7d1; }
.content-body pre { background: #0b0b10; padding: 12px; border-radius: 10px; overflow-x: auto; }

.illegal-warning {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
}
.illegal-warning .box {
    background: #1a1a1f;
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 16px;
    max-width: 460px;
    color: var(--text);
    box-shadow: var(--shadow);
}
.btn {
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-primary { background: linear-gradient(120deg, #7c3aed, #9333ea); color: white; }
.btn-muted { background: rgba(255,255,255,0.04); color: var(--muted); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.reactions-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.reaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, rgba(124,58,237,0.3), transparent 55%), rgba(255,255,255,0.04);
    border: 1px solid rgba(124,58,237,0.25);
    color: var(--text);
    cursor: pointer;
    transition: transform 0.12s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}
.reaction-btn:hover {
    transform: translateY(-2px);
    background: radial-gradient(circle at 0 0, rgba(124,58,237,0.45), transparent 55%), rgba(255,255,255,0.06);
    box-shadow: 0 10px 24px rgba(15,23,42,0.6);
}
.reaction-btn.active {
    background: radial-gradient(circle at 0 0, rgba(234,88,12,0.6), transparent 55%), rgba(255,255,255,0.08);
    border-color: rgba(234,88,12,0.75);
    box-shadow: 0 0 0 1px rgba(234,88,12,0.4), 0 12px 30px rgba(15,23,42,0.7);
}
.reaction-btn.pulse { animation: pulse 0.3s ease; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

/* Tepki balonu (floating emoji) */
.reaction-float {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    pointer-events: none;
    animation: reaction-float 0.6s ease-out forwards;
    font-size: 18px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6));
}
@keyframes reaction-float {
    0% {
        opacity: 0;
        transform: translate(-50%, 8px) scale(0.7);
    }
    40% {
        opacity: 1;
        transform: translate(-50%, -8px) scale(1.05);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -26px) scale(0.95);
    }
}

.admin-wrap { max-width: 960px; margin: 0 auto; padding: 28px 20px 60px; }
.banner-box {
    margin: 16px 0;
    padding: 14px 16px;
    border: 1px dashed rgba(124,58,237,0.4);
    border-radius: 12px;
    background: rgba(124,58,237,0.08);
    color: #e5e7eb;
}
.footer {
    margin-top: 20px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    border-top: 1px solid var(--border);
    padding-top: 10px;
}

.footer-ad {
    margin-top: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px dashed var(--border);
    border-radius: 10px;
}

.search-bar {
    display: flex;
    gap: 10px;
    margin: 12px 0 16px;
}
.search-bar input, .search-bar select {
    background: #0f0f14;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 12px;
    border-radius: 10px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.search-bar input { flex: 1; }
.search-bar input:focus, .search-bar select:focus {
    outline: none;
    border-color: rgba(124,58,237,0.7);
    box-shadow: 0 0 0 1px rgba(124,58,237,0.6), 0 0 0 6px rgba(124,58,237,0.18);
    background: radial-gradient(circle at 0 0, rgba(124,58,237,0.18), transparent 55%), #020617;
}

.pagination {
    display: flex;
    gap: 8px;
    margin: 14px 0;
}
.pagination a {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    background: rgba(255,255,255,0.03);
}
.pagination a.active { background: rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.4); }

.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    background: linear-gradient(120deg, #7c3aed, #9333ea);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 10px 12px;
    cursor: pointer;
    box-shadow: var(--shadow);
    display: none;
    z-index: 800;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.back-to-top:hover { transform: scale(1.08); }

/* Topic list badges */
.topic-badges {
    display: inline-flex;
    gap: 6px;
    margin-right: 8px;
    flex-wrap: wrap;
}
.topic-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.topic-badge-new {
    background: linear-gradient(135deg, rgba(34,197,94,0.25), rgba(22,163,74,0.2));
    color: #86efac;
    border: 1px solid rgba(34,197,94,0.4);
}
.topic-badge-popular {
    background: linear-gradient(135deg, rgba(249,115,22,0.25), rgba(234,88,12,0.2));
    color: #fdba74;
    border: 1px solid rgba(249,115,22,0.4);
}
.pill-random {
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(139,92,246,0.15));
    border: 1px solid rgba(124,58,237,0.35);
}
.pill-random:hover {
    background: linear-gradient(135deg, rgba(124,58,237,0.35), rgba(139,92,246,0.25));
    border-color: rgba(124,58,237,0.5);
}
.sidebar-random-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(139,92,246,0.1));
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
    margin-bottom: 14px;
}
.sidebar-random-btn:hover {
    background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(139,92,246,0.2));
    border-color: rgba(124,58,237,0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124,58,237,0.2);
}

/* Toast */
.toast-wrap {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    z-index: 9999;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
}
.toast-wrap.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.toast-msg {
    padding: 12px 20px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.toast-msg::before { content: '✓'; color: #22c55e; font-weight: 800; }

/* Floating quick bar (content page) */
.quick-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    gap: 8px;
    padding: 8px 12px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 790;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.quick-bar.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.quick-bar a,
.quick-bar button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.06);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.quick-bar a:hover,
.quick-bar button:hover {
    background: rgba(124,58,237,0.25);
    transform: scale(1.08);
}

/* Smooth theme transition */
html {
    transition: background-color 0.35s ease, color 0.35s ease;
}
body, .card, .topbar, .shell, .topic, .game-card, .sidebar-widget, .footer, .content-body, .comment-card {
    transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 6px; color: var(--muted); font-weight: 600; }
.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field select,
.field textarea {
    width: 100%;
    background: #0f0f14;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 12px;
    border-radius: 10px;
}
.table-like {
    width: 100%;
    border-collapse: collapse;
}
.table-like th, .table-like td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.table-like th { color: var(--muted); font-weight: 600; }

/* Admin blok editör modal ve toolbar */
.block-menu-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.block-menu-content {
    background: #15151d;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    min-width: 360px;
    box-shadow: var(--shadow);
}
.block-menu-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
}
.block-menu-option {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.block-menu-option:hover { background: rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.4); }

.block-editor-container { background: #0f0f14; border: 1px dashed var(--border); padding: 10px; border-radius: 12px; }
.block-item { background: #14141b; border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 10px; }
.block-header label { color: var(--muted); }
.block-actions { margin-top: 8px; }
.block-handle { cursor: move; color: var(--muted); }

.simple-editor-wrapper { background: #0f0f14; border: 1px solid var(--border); border-radius: 10px; padding: 10px; display: flex; flex-direction: column; gap: 10px; }
.simple-editor-toolbar { display: grid; grid-template-columns: repeat(6, 42px); gap: 6px; align-self: flex-start; }
.toolbar-btn { width: 42px; height: 42px; }
.simple-editor-content { min-height: 180px; background: #0b0b10; border: 1px solid var(--border); border-radius: 10px; padding: 12px; color: #e5e7eb; line-height: 1.6; }
.simple-editor-content:focus { outline: 2px solid rgba(124,58,237,0.4); outline-offset: -2px; }
.simple-editor-content p { margin: 0 0 8px 0; }
.simple-editor-content img { max-width: 100%; border-radius: 8px; }

/* Oyun kartları */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.game-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}
.game-card:hover {
    background: rgba(124,58,237,0.1);
    border-color: rgba(124,58,237,0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(15,23,42,0.7);
}
.game-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(124,58,237,0.45), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.game-card:hover::after {
    opacity: 1;
}
.game-card.active {
    background: rgba(124,58,237,0.2);
    border-color: rgba(124,58,237,0.5);
}
.game-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}
.game-logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(120deg, #7c3aed, #9333ea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}
.game-name {
    font-weight: 600;
    font-size: 14px;
}
.selected-game-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 12px;
    margin-bottom: 16px;
}
.selected-game-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.selected-game-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}
.selected-game-info h2 {
    margin: 0;
    font-size: 20px;
}
.selected-game-info p {
    margin: 4px 0 0 0;
    color: var(--muted);
    font-size: 14px;
}

/* İçerik layout */
.content-layout {
    display: block;
    margin-top: 16px;
}
.content-layout.with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
}
.main-content {
    min-width: 0;
}
.sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}
.sidebar-ad {
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px dashed var(--border);
    border-radius: 12px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Yorum sistemi */
.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}
.comments-header h3 {
    margin: 0;
    font-size: 20px;
}
.comments-count {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.comment-card {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s ease;
}
.comment-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(124,58,237,0.3);
    transform: translateY(-1px);
}
.comment-replies {
    margin-top: 12px;
    margin-left: 48px;
    padding-left: 16px;
    border-left: 2px solid rgba(124,58,237,0.35);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.comment-card.comment-reply {
    padding: 12px 14px;
    background: rgba(0,0,0,0.15);
}
.comment-card.comment-reply .comment-avatar.comment-avatar-sm {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 14px;
}
@media (max-width: 640px) {
    .comment-replies {
        margin-left: 24px;
        padding-left: 12px;
    }
}
.comment-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
    box-shadow: 0 4px 12px rgba(124,58,237,0.3);
}
.comment-body {
    flex: 1;
    min-width: 0;
}
.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
}
.comment-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.comment-author {
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
}
.comment-badge {
    padding: 2px 8px;
    background: rgba(124,58,237,0.2);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 6px;
    font-size: 11px;
    color: #c4b5fd;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.comment-date {
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
}
.comment-content {
    color: var(--text);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 12px;
    word-wrap: break-word;
}
.comment-actions {
    display: flex;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.comment-action-btn {
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 13px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.comment-action-btn:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text);
}
.comment-action-btn.liked {
    background: rgba(34,197,94,0.15);
    border-color: rgba(34,197,94,0.3);
    color: #bbf7d0;
}
.comment-action-btn .like-count {
    font-size: 12px;
    opacity: 0.8;
}
.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
}
.no-comments-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}
.no-comments p {
    font-style: italic;
    font-size: 15px;
    margin: 0;
}
.comment-form-wrapper {
    padding-top: 24px;
    border-top: 2px solid var(--border);
}
.comment-form-title {
    margin: 0 0 20px 0;
    font-size: 18px;
}
.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.comment-form .field {
    margin-bottom: 16px;
}
.comment-form .field label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
}
.comment-form .field label .optional {
    color: var(--muted);
    font-weight: 400;
    font-size: 12px;
}
.comment-form .field input[type="text"],
.comment-form .field input[type="email"],
.comment-form .field textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
}
.comment-form .field input[type="text"]:focus,
.comment-form .field input[type="email"]:focus,
.comment-form .field textarea:focus {
    outline: none;
    border-color: rgba(124,58,237,0.5);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.comment-form .field textarea {
    resize: vertical;
    min-height: 100px;
}
.comment-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.comment-form-footer .btn {
    display: flex;
    align-items: center;
    gap: 8px;
}
.comment-note {
    color: var(--muted);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}
.comment-note .info-icon {
    font-size: 14px;
}
.char-counter {
    margin-top: 6px;
    text-align: right;
    font-size: 12px;
    color: var(--muted);
}
.char-counter.warning {
    color: #fbbf24;
}
.char-counter.danger {
    color: #ef4444;
}

@media (max-width: 720px) {
    .comment-form-row {
        grid-template-columns: 1fr;
    }
    .comment-form-footer {
        flex-direction: column;
        align-items: stretch;
    }
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .comment-card {
        flex-direction: column;
    }
    .comment-avatar {
        align-self: flex-start;
    }
}

/* İlgili içerikler */
.related-topics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.related-topic {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s ease;
}
.related-topic:hover {
    background: rgba(124,58,237,0.08);
    border-color: rgba(124,58,237,0.3);
    transform: translateX(4px);
}
.related-topic strong {
    font-size: 15px;
}
.related-topic small {
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb a:hover {
    color: var(--text);
}
.breadcrumb-sep {
    color: var(--muted);
}
.breadcrumb-current {
    color: var(--text);
    font-weight: 600;
}

/* Tema toggle */
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.theme-toggle {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 18px;
}
.theme-toggle:hover {
    background: rgba(255,255,255,0.1);
}

/* Light theme */
.light-theme {
    --bg: #ffffff;
    --panel: #f8f9fa;
    --panel-2: #f1f3f5;
    --text: #1a1a1a;
    --muted: #6c757d;
    --accent: #7c3aed;
    --accent-2: #22c55e;
    --danger: #dc3545;
    --card: #ffffff;
    --border: rgba(0,0,0,0.08);
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.light-theme body {
    background: #ffffff;
    color: var(--text);
}
.light-theme .topbar {
    border-bottom-color: var(--border);
}
.light-theme .dashboard-card {
    background: var(--card);
    border-color: var(--border);
}
.light-theme .dashboard-icon {
    background: rgba(124,58,237,0.1);
}
.light-theme .sidebar-widget {
    background: var(--card);
    border-color: var(--border);
}
.light-theme .popular-topic-item {
    background: rgba(0,0,0,0.02);
    border-color: var(--border);
}
.light-theme .popular-topic-item:hover {
    background: rgba(124,58,237,0.08);
}
.light-theme .favorite-item {
    background: var(--card);
    border-color: var(--border);
}
.light-theme .favorite-item:hover {
    background: rgba(124,58,237,0.05);
}
.light-theme .adsense-box {
    background: rgba(0,0,0,0.02);
    border-color: var(--border);
}
.light-theme .adsense-section {
    background: rgba(0,0,0,0.02);
    border-color: var(--border);
}
.light-theme .image-gallery {
    gap: 8px;
}
.light-theme .gallery-item {
    border-color: var(--border);
    background: rgba(0,0,0,0.02);
}
.light-theme .gallery-item:hover {
    border-color: rgba(124,58,237,0.4);
    box-shadow: 0 4px 12px rgba(124,58,237,0.15);
}
.light-theme .card {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.light-theme .board {
    background: rgba(0,0,0,0.02);
    border: 1px solid var(--border);
}
.light-theme .topic {
    border-top-color: var(--border);
}
.light-theme .topic:hover {
    background: rgba(124,58,237,0.05);
}
.light-theme .btn-primary {
    background: linear-gradient(120deg, #7c3aed, #9333ea);
    color: white;
}
.light-theme .btn-muted {
    background: rgba(0,0,0,0.05);
    color: var(--muted);
    border-color: var(--border);
}
.light-theme .pill {
    background: rgba(0,0,0,0.05);
    border-color: var(--border);
    color: var(--muted);
}
.light-theme .search-bar input,
.light-theme .search-bar select {
    background: #ffffff;
    border-color: var(--border);
    color: var(--text);
}
.light-theme .field input[type="text"],
.light-theme .field input[type="email"],
.light-theme .field input[type="password"],
.light-theme .field select,
.light-theme .field textarea {
    background: #ffffff;
    border-color: var(--border);
    color: var(--text);
}

/* Ana sayfa alt bilgi kartları */
.home-info-grid {
    margin-top: 32px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    row-gap: 26px;
    column-gap: 18px;
}
.home-info-grid .card {
    position: relative;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
    animation: info-fade-up 0.55s ease-out forwards;
    animation-delay: 0s;
}
.home-info-grid .card:nth-child(2) {
    animation-delay: 0.08s;
}
.home-info-grid .card:nth-child(3) {
    animation-delay: 0.16s;
}
.home-info-grid .card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width 0.35s ease;
}
.home-info-grid .card:hover::before {
    width: 100%;
}
.home-info-grid .card:hover {
    transform: translateY( -4px);
    box-shadow: 0 14px 32px rgba(15,23,42,0.55);
    border-color: rgba(124,58,237,0.55);
}

@keyframes info-fade-up {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Etiketler */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    align-items: center;
}
.tag-cloud-item {
    padding: 6px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.tag-cloud-item:hover {
    background: rgba(124,58,237,0.15);
    border-color: rgba(124,58,237,0.3);
    transform: translateY(-1px);
}
.tag-cloud-item.active {
    background: rgba(124,58,237,0.2);
    border-color: rgba(124,58,237,0.4);
    color: #c4b5fd;
}
.tag-count {
    font-size: 11px;
    color: var(--muted);
    background: rgba(0,0,0,0.2);
    padding: 2px 6px;
    border-radius: 10px;
}
.tag-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 12px;
    color: #c4b5fd;
    font-size: 12px;
    text-decoration: none;
    margin-right: 6px;
    transition: all 0.2s ease;
}
.tag-badge:hover {
    background: rgba(124,58,237,0.25);
    transform: translateY(-1px);
}

/* Favoriler */
.favorite-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}
.favorite-btn:hover {
    background: rgba(239,68,68,0.1);
    border-color: rgba(239,68,68,0.3);
}
.favorite-btn.active {
    background: rgba(239,68,68,0.15);
    border-color: rgba(239,68,68,0.4);
}
.favorite-btn .favorite-count {
    color: var(--muted);
    font-size: 12px;
}
.favorites-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}
.favorite-item {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}
.favorite-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    opacity: 0;
    transition: opacity 0.25s ease;
}
.favorite-item:hover {
    background: rgba(124,58,237,0.08);
    border-color: rgba(124,58,237,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124,58,237,0.15);
    text-decoration: none;
}
.favorite-item:hover::before {
    opacity: 1;
}
.favorite-item .favorite-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.favorite-item .favorite-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px 0;
    display: block;
    line-height: 1.4;
}
.favorite-item:hover .favorite-title {
    color: var(--accent);
}
.favorite-excerpt {
    color: var(--muted);
    font-size: 13px;
    margin: 0 0 10px 0;
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.favorite-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 11px;
    color: var(--muted);
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.game-badge-small {
    padding: 3px 8px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 6px;
    color: #c4b5fd;
    font-size: 10px;
    font-weight: 600;
}
.favorite-date {
    display: flex;
    align-items: center;
    gap: 3px;
}
.view-count-small {
    display: flex;
    align-items: center;
    gap: 3px;
}
.no-favorites {
    text-align: center;
    padding: 50px 20px;
}
.no-favorites-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
.no-favorites p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 16px;
}

/* Görüntülenme sayısı */
.view-count {
    color: var(--muted);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.view-count-small {
    color: var(--muted);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.dashboard-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}
.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124,58,237,0.15);
    border-color: rgba(124,58,237,0.3);
}
.dashboard-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124,58,237,0.1);
    border-radius: 10px;
    flex-shrink: 0;
}
.dashboard-content {
    flex: 1;
    min-width: 0;
}
.dashboard-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}
.dashboard-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dashboard-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 6px;
    font-size: 10px;
    color: #fecaca;
    font-weight: 600;
}

/* Popüler içerikler widget */
.sidebar-widget {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 14px;
    box-shadow: var(--shadow);
}
.sidebar-widget h4 {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: var(--text);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.popular-topics-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.popular-topic-item {
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.popular-topic-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    opacity: 0;
    transition: opacity 0.25s ease;
}
.popular-topic-item:hover {
    background: rgba(124,58,237,0.08);
    border-color: rgba(124,58,237,0.3);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(124,58,237,0.1);
}
.popular-topic-item:hover::before {
    opacity: 1;
}
.popular-topic-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.popular-topic-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: var(--muted);
    align-items: center;
}
.popular-topic-meta span {
    display: flex;
    align-items: center;
    gap: 3px;
}
.recent-views-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.recent-view-item {
    padding: 8px 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    font-size: 13px;
    transition: all 0.2s ease;
}
.recent-view-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(4px);
}

/* Okuma ilerleme çubuğu */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), #22c55e);
    z-index: 9999;
    transition: width 0.1s ease-out;
}
/* Paylaşım butonları */
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.share-label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    margin-right: 4px;
}
.share-btn {
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.share-btn:hover {
    background: rgba(124,58,237,0.2);
    border-color: rgba(124,58,237,0.4);
}
.share-btn.share-copy {
    font-family: inherit;
}

/* AdSense Box */
.adsense-box {
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px dashed var(--border);
    border-radius: 8px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.adsense-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124,58,237,0.1), transparent);
    transition: left 0.5s ease;
}
.adsense-box:hover::before {
    left: 100%;
}
.adsense-box:empty::before {
    content: 'AdSense reklam alanı';
    color: var(--muted);
    font-size: 12px;
    font-style: italic;
    position: static;
    background: none;
}
.adsense-box.adsense-lazy {
    min-height: 200px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.adsense-box.adsense-lazy.loaded {
    opacity: 1;
    transform: translateY(0);
}
.adsense-in-feed {
    justify-content: flex-start;
}
.adsense-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--panel);
    border-top: 1px solid var(--border);
    padding: 8px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    animation: slideUpAd 0.4s ease-out;
}
@keyframes slideUpAd {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.adsense-sticky-inner {
    max-width: 1080px;
    margin: 0 auto;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.has-sticky-ad {
    padding-bottom: 70px;
}
/* Responsive ad visibility */
@media (max-width: 768px) {
    .adsense-box[data-ad-visibility="desktop-only"] {
        display: none !important;
    }
}
@media (min-width: 769px) {
    .adsense-box[data-ad-visibility="mobile-only"] {
        display: none !important;
    }
}
/* Ad Block Detection */
.ad-fallback {
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px dashed var(--border);
    border-radius: 8px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
}
.adblock-detected .adsense-box {
    opacity: 0.5;
}

/* Görsel galeri */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
    margin-top: 12px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
}
.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: rgba(0,0,0,0.2);
    margin: 0;
}
.gallery-item:hover {
    transform: scale(1.05);
    border-color: rgba(124,58,237,0.5);
    box-shadow: 0 4px 12px rgba(124,58,237,0.2);
    z-index: 10;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 32px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}
.adsense-sections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}
.adsense-section {
    padding: 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
}
.adsense-section h6 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
}

/* Content actions */
.content-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 720px) {
    .row-head, .topic {
        grid-template-columns: 32px 1fr;
        grid-template-rows: repeat(2, auto);
    }
    .topic .reaction-stack, .topic .badge {
        grid-column: span 2;
    }
    .content-header { flex-direction: column; }
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    .selected-game-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .favorites-list {
        grid-template-columns: 1fr;
    }
    .popular-topic-item {
        padding: 12px;
    }
    .adsense-sections {
        grid-template-columns: 1fr;
    }
    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 6px;
    }
    .gallery-item {
        border-radius: 6px;
    }
}

/* Admin: SEO önizleme ve yardımcı */
.seo-preview-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    margin: 16px 0;
}
.seo-preview-title {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: var(--text);
    font-weight: 600;
}
.google-preview {
    font-family: Arial, sans-serif;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.google-preview-url {
    font-size: 14px;
    color: #1a0dab;
    margin-bottom: 2px;
}
.google-preview-link {
    font-size: 20px;
    color: #1a0dab;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 4px;
}
.google-preview-link:hover {
    text-decoration: underline;
}
.google-preview-desc {
    font-size: 13px;
    color: #4d5156;
    line-height: 1.4;
}
.seo-helper-box {
    margin-top: 14px;
}
.seo-helper-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    margin-bottom: 8px;
}
.seo-helper-row strong {
    min-width: 120px;
    color: var(--muted);
}
.seo-count-inline {
    color: var(--text);
}
.seo-status {
    margin-left: 8px;
    font-size: 12px;
    font-weight: 600;
}
.seo-status.ok { color: #22c55e; }
.seo-status.warn { color: #eab308; }
.seo-status.bad { color: #ef4444; }
.seo-helper {
    margin-top: 6px;
    font-size: 12px;
    color: var(--muted);
}
.seo-helper .seo-count { font-weight: 600; color: var(--text); }
.seo-tips {
    margin-top: 12px;
    font-size: 12px;
    color: var(--muted);
}
.seo-tips summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
}
.seo-tips ul {
    margin: 8px 0 0 18px;
    padding: 0;
}
.seo-tips li { margin-bottom: 4px; }
.light-theme .google-preview-url,
.light-theme .google-preview-link { color: #1a0dab; }
.light-theme .google-preview-desc { color: #4d5156; }

