/*
Theme Name: SohbeteGir
Theme URI: https://sohbetegir.com
Author: SohbeteGir Team
Author URI: https://sohbetegir.com
Description: Modern, karanlık ve premium bir sohbet topluluğu teması. Glassmorphism tasarım, neon gradientler ve gelişmiş admin paneli ile donatılmıştır.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sohbetegir
Tags: dark, modern, premium, blog, responsive, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ========================================
   CSS CUSTOM PROPERTIES (DEĞİŞKENLER)
   ======================================== */
:root {
    --bg-color: #0b0b13;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --primary-gradient: linear-gradient(135deg, #ff2a6d, #7832ff);
    --badge-gradient: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
    --glass-bg: rgba(11, 11, 19, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition-speed: 0.3s;
    --primary-color-start: #ff2a6d;
    --primary-color-end: #7832ff;
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    overflow-x: hidden;
    background-color: var(--bg-color);
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-y: auto;
}

/* Ortak Gradient Metin Sınıfı */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.main-header {
    width: 100%;
    padding: 16px 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    z-index: 1001;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(120, 50, 255, 0.4);
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-speed) ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-speed) ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ---- Dropdown Menü ---- */
.nav-item {
    position: relative;
    list-style: none;
}

.nav-item .dropdown-arrow {
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .dropdown-arrow,
.nav-item.has-dropdown:focus-within .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: rgba(11, 11, 19, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 8px;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 200;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.badge {
    background: var(--badge-gradient);
    color: #000;
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 6px;
    font-weight: 800;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-login {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-speed);
}

.btn-login:hover {
    color: #ff2a6d;
}

.btn-register {
    text-decoration: none;
    background: var(--primary-gradient);
    color: var(--text-main);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 42, 109, 0.4);
}

/* Mobil Hamburger Butonu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.mobile-toggle svg {
    width: 28px;
    height: 28px;
    color: var(--text-main);
    transition: transform 0.3s ease;
}

/* Mobil Menü Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   HERO SECTION
   ======================================== */
.premium-hero-section {
    background-image:
        radial-gradient(circle at 80% 20%, rgba(120, 50, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 42, 109, 0.1) 0%, transparent 40%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    animation: fadeIn 1s ease forwards;
    z-index: 5;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.main-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Hero Dalgalı Alt Kenar */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
}

@media (max-width: 768px) {
    .hero-wave svg { height: 50px; }
}

/* ========================================
   CONTENT LAYOUT
   ======================================== */
.page-wrapper {
    background-color: var(--bg-color);
    padding: 80px 5% 120px;
    position: relative;
    z-index: 10;
}

.content-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
}

.main-content {
    min-width: 0;
}

/* ========================================
   CARDS & WIDGETS
   ======================================== */
.widget,
.featured-article {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: 4px;
}

/* ========================================
   POST LIST (BENTO GRID)
   ======================================== */
.post-list {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.post-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.post-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(120, 50, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(120, 50, 255, 0.1);
    z-index: 2;
}

/* Dinamik Bento Grid Dağılımı */
.post-item:nth-child(1)  { grid-column: span 12; flex-direction: row; }
.post-item:nth-child(2)  { grid-column: span 8; }
.post-item:nth-child(3)  { grid-column: span 4; }
.post-item:nth-child(4)  { grid-column: span 4; }
.post-item:nth-child(5)  { grid-column: span 4; }
.post-item:nth-child(6)  { grid-column: span 4; }
.post-item:nth-child(7)  { grid-column: span 5; }
.post-item:nth-child(8)  { grid-column: span 7; }
.post-item:nth-child(9)  { grid-column: span 12; flex-direction: row; }
.post-item:nth-child(10) { grid-column: span 12; }

/* WordPress <a> sarmalayıcı — tüm kartlarda görsel linki */
.post-item > a {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

/* Yatay kartlarda <a> sarmalayıcı 55% genişlik alır (flex-direction: row) */
.post-item:nth-child(1) > a,
.post-item:nth-child(9) > a {
    width: 55%;
    align-self: stretch;
}

.post-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.post-item:hover .post-img {
    transform: scale(1.08);
}

/* Yatay kartlarda görsel tam yüksekliği doldurur */
.post-item:nth-child(1) > a .post-img,
.post-item:nth-child(9) > a .post-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
}

.post-item:nth-child(2) .post-img,
.post-item:nth-child(3) .post-img {
    height: 280px;
}

.post-item:nth-child(10) .post-img {
    height: 400px;
}

.post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    flex: 1;
}

.post-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s;
    margin-bottom: 10px;
    display: block;
}

.post-item:nth-child(1) .post-title,
.post-item:nth-child(9) .post-title,
.post-item:nth-child(10) .post-title {
    font-size: 1.8rem;
}

.post-title:hover {
    color: #ff2a6d;
}

.post-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

/* ========================================
   FEATURED ARTICLE
   ======================================== */
.featured-article {
    background: var(--glass-bg);
    border: 1px solid rgba(120, 50, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    position: relative;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(120, 50, 255, 0.15);
    border-color: rgba(255, 42, 109, 0.4);
}

.featured-img-wrap {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.featured-img-wrap::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(11, 11, 19, 0.4) 0%, transparent 100%);
    pointer-events: none;
}

.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.featured-article:hover .featured-img-wrap img {
    transform: scale(1.05);
}

.article-meta {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-gradient);
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 42, 109, 0.3);
}

.featured-article h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.3;
    background: linear-gradient(to right, #fff, #a0a0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.featured-text p {
    margin-bottom: 20px;
}

.featured-text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   AUTHOR PROFILE
   ======================================== */
.author-profile {
    text-align: center;
    transition: transform 0.4s ease;
}

.author-profile:hover {
    transform: translateY(-5px);
}

.author-img-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-gradient);
    padding: 4px;
    margin: 0 auto 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(120, 50, 255, 0.2);
}

.author-img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-color);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.author-profile:hover .author-img-wrap img {
    transform: rotate(10deg) scale(1.15);
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.author-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   WIDGET TITLE
   ======================================== */
.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
}

/* ========================================
   CATEGORIES
   ======================================== */
.cat-list {
    list-style: none;
}

.cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.cat-item:last-child { border-bottom: none; }

.cat-item:hover {
    color: #fff;
    background: rgba(120, 50, 255, 0.08);
    transform: translateX(6px);
    padding-left: 14px;
    box-shadow: inset 3px 0 0 #ff2a6d;
}

.cat-count {
    background: rgba(120, 50, 255, 0.15);
    color: #a6c1ee;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cat-item:hover .cat-count {
    background: var(--primary-gradient);
    color: #000;
    box-shadow: 0 4px 10px rgba(255, 42, 109, 0.3);
}

/* ========================================
   POPULAR POSTS
   ======================================== */
.pop-post {
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
    align-items: center;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pop-post:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.pop-post:last-child { margin-bottom: 0; }

.pop-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pop-post:hover .pop-img {
    transform: scale(1.1);
}

.pop-info { flex: 1; }

.pop-info h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.4;
}

.pop-info h4 a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

.pop-info h4 a:hover { color: #ff2a6d; }

.pop-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ========================================
   TESTIMONIALS SLIDER
   ======================================== */
.testimonials-section {
    margin-top: 50px;
}

.testimonials-section .section-title {
    margin-bottom: 30px;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 0 20px 0;
}

.slider-track::-webkit-scrollbar { display: none; }

.review-card {
    flex: 0 0 calc(100% - 10px);
    scroll-snap-align: center;
    background: var(--glass-bg);
    border: 1px solid rgba(120, 50, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, border-color 0.4s;
    position: relative;
}

@media (min-width: 768px) {
    .review-card { flex: 0 0 calc(50% - 10px); }
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 42, 109, 0.3);
}

.stars {
    color: #facc15;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.reviewer-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #7832ff;
}

.reviewer-details { display: flex; flex-direction: column; }

.reviewer-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.reviewer-badge {
    font-size: 0.75rem;
    color: #ff2a6d;
    font-weight: 600;
}

/* Slider Butonları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(255, 42, 109, 0.4);
}

.slider-btn.prev { left: -20px; }
.slider-btn.next { right: -20px; }

@media (max-width: 768px) {
    .slider-btn.prev { left: -10px; }
    .slider-btn.next { right: -10px; }
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-widget { padding-bottom: 10px; }

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 16px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    outline: none;
}

.faq-question:hover { color: #ff2a6d; }

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    line-height: 1;
}

.faq-item.active .faq-question { color: #7832ff; }

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #7832ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-answer p { padding-bottom: 16px; }

/* ========================================
   FOOTER
   ======================================== */
.main-footer {
    background: #07070d;
    padding: 80px 5% 30px;
    margin-top: 0;
    position: relative;
    z-index: 20;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 90px;
}

@media (max-width: 768px) {
    .footer-wave svg { height: 50px; }
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 20px 0;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(120, 50, 255, 0.3);
}

.footer-col h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 14px; }

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-muted);
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover { color: #fff; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 2fr 1fr; }
}

@media (max-width: 992px) {
    .content-grid { grid-template-columns: 1fr; }
    .page-wrapper { padding: 40px 5%; }

    .mobile-toggle { display: block; }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #0f0f1a;
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 80px 40px;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-container.active { right: 0; }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 24px;
    }

    .nav-link { font-size: 1.2rem; display: block; }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 20px;
    }

    .btn-login { font-size: 1.1rem; }
    .btn-register { text-align: center; width: 100%; }
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .post-item,
    .post-item:nth-child(1),
    .post-item:nth-child(9) { flex-direction: column; }

    .post-img,
    .post-item:nth-child(1) .post-img,
    .post-item:nth-child(9) .post-img,
    .post-item:nth-child(10) .post-img {
        width: 100%;
        height: 220px;
        min-height: 220px;
    }

    .featured-article h2 { font-size: 1.8rem; }
    .featured-article img { height: 250px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; }
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Widget içinde gelen her .widget sarmalayıcı zaten style'da var,
   ama dynamic_sidebar'ın çıktısı için ek destekler: */
.sidebar .widget {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Yazar profil widget */
.sidebar .author-profile {
    text-align: center;
    transition: transform 0.4s ease;
}

.sidebar .author-profile:hover {
    transform: translateY(-5px);
}

.sidebar .author-img-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-gradient);
    padding: 4px;
    margin: 0 auto 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(120, 50, 255, 0.2);
}

.sidebar .author-img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-color);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sidebar .author-profile:hover .author-img-wrap img {
    transform: rotate(10deg) scale(1.15);
}

.sidebar .author-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.sidebar .author-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   WORDPRESS SPECIFIC
   ======================================== */
.wp-caption,
.wp-caption-text,
.gallery-caption,
.sticky,
.bypostauthor {
    /* WordPress required classes */
}

img.alignleft  { float: left; margin: 0 1.5em 1.5em 0; }
img.alignright { float: right; margin: 0 0 1.5em 1.5em; }
img.aligncenter { display: block; margin: 0 auto 1.5em; }

.wp-caption {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 5px;
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 5px 10px;
    text-align: center;
}

/* Pagination */
.nav-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 40px 0;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 42, 109, 0.3);
}

/* Comments */
.comment-list { list-style: none; }
.comment-body {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.comment-author cite { font-style: normal; font-weight: 700; color: #fff; }
.comment-metadata a { color: var(--text-muted); font-size: 0.85rem; }
.comment-content { color: var(--text-muted); line-height: 1.6; margin-top: 10px; }

/* Comment Form */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
    margin-bottom: 16px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #7832ff;
}

.comment-form input[type="submit"] {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.comment-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 42, 109, 0.4);
}

/* Search Form */
.search-form {
    display: flex;
    gap: 10px;
}

.search-field {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 18px;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.search-field:focus { border-color: #7832ff; }

.search-submit {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: box-shadow 0.3s;
}

.search-submit:hover {
    box-shadow: 0 5px 15px rgba(255, 42, 109, 0.4);
}


/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: #fff;
}
.breadcrumb-sep {
    opacity: 0.4;
}
.breadcrumb-current {
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}

/* ========================================
   SINGLE POST
   ======================================== */
.single-post {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
}

.single-header {
    padding: 36px 40px 24px;
}
.single-header .cat-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    margin-right: 6px;
    text-decoration: none;
}
.single-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 18px;
    color: #fff;
}
.single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.single-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.single-meta-item a,
.single-author-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.single-meta-item a:hover,
.single-author-link:hover {
    color: #fff;
}

/* �ne ��kan G�rsel */
.single-thumbnail {
    position: relative;
    width: 100%;
    max-height: 520px;
    overflow: hidden;
}
.single-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.single-thumbnail-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    padding: 20px 20px 14px;
}

/* ��erik (Makale G�vdesi) */
.single-content {
    padding: 36px 40px;
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.88);
}
.single-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 2em 0 0.6em;
}
.single-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 1.6em 0 0.5em;
}
.single-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin: 1.4em 0 0.4em;
}
.single-content p {
    margin: 0 0 1.4em;
}
.single-content ul,
.single-content ol {
    padding-left: 1.6em;
    margin: 0 0 1.4em;
}
.single-content li {
    margin-bottom: 0.5em;
}
.single-content a {
    color: #ff2a6d;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.single-content a:hover {
    color: #7832ff;
}
.single-content blockquote {
    background: rgba(120, 50, 255, 0.12);
    border-left: 4px solid #7832ff;
    border-radius: 0 12px 12px 0;
    padding: 20px 28px;
    margin: 1.6em 0;
    font-style: italic;
    color: rgba(255,255,255,0.8);
}
.single-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--text-muted);
}
.single-content pre {
    background: #12121e;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px 24px;
    overflow-x: auto;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 1.6em 0;
}
.single-content code {
    background: rgba(120, 50, 255, 0.18);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.88em;
    color: #d0a8ff;
}
.single-content pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}
.single-content img {
    max-width: 100%;
    border-radius: 12px;
    height: auto;
}
.single-content hr {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 2em 0;
}
.single-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.6em 0;
    font-size: 0.9rem;
}
.single-content th,
.single-content td {
    padding: 12px 16px;
    border: 1px solid var(--glass-border);
    text-align: left;
}
.single-content th {
    background: rgba(120, 50, 255, 0.18);
    color: #fff;
    font-weight: 600;
}
.single-content td {
    color: rgba(255,255,255,0.8);
}

/* Sayfa Linkleri (�ok sayfal� yaz�lar) */
.page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 2em 0;
    padding-top: 1em;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-muted);
}
.page-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.page-links .page-numbers.current,
.page-links .page-numbers:hover {
    background: var(--primary-gradient);
    border-color: transparent;
}

/* Etiketler */
.single-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 24px 40px;
    border-top: 1px solid var(--glass-border);
}
.single-tags-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-right: 4px;
}
.tag-pill {
    display: inline-block;
    background: rgba(120, 50, 255, 0.14);
    border: 1px solid rgba(120, 50, 255, 0.3);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
}
.tag-pill:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
}
.tag-count {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    font-size: 0.7em;
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: 4px;
}

/* Sosyal Payla��m */
.single-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    border-top: 1px solid var(--glass-border);
}
.single-share-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-right: 4px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.25s;
}
.share-btn:hover {
    transform: translateY(-2px);
    border-color: transparent;
}
.share-twitter:hover  { background: #1da1f2; color: #fff; }
.share-facebook:hover { background: #1877f2; color: #fff; }
.share-linkedin:hover { background: #0a66c2; color: #fff; }
.share-whatsapp:hover { background: #25d366; color: #fff; }

/* �nceki / Sonraki Yaz� */
.post-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 28px 40px;
    border-top: 1px solid var(--glass-border);
}
.post-nav-link {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s;
}
.post-nav-link:hover {
    background: rgba(120, 50, 255, 0.12);
    border-color: rgba(120, 50, 255, 0.4);
    transform: translateY(-2px);
}
.post-nav-next {
    text-align: right;
}
.post-nav-dir {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.post-nav-next .post-nav-dir {
    justify-content: flex-end;
}
.post-nav-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Yorum Alan� */
.comments-area {
    padding: 32px 40px;
    border-top: 1px solid var(--glass-border);
}
.comments-area .comments-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}
.comments-area .comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.comments-area .comment {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
}
.comments-area .comment:last-child {
    border-bottom: none;
}
.comments-area .comment-author .avatar {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}
.comments-area .comment-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.comments-area .comment-meta .author {
    font-weight: 600;
    color: #fff;
}
.comments-area .comment-content p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin: 0;
}
.comments-area .comment-respond {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px;
}
.comments-area .comment-reply-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}
.comments-area .comment-form label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.comments-area .comment-form input[type="text"],
.comments-area .comment-form input[type="email"],
.comments-area .comment-form input[type="url"],
.comments-area .comment-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    padding: 12px 16px;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.comments-area .comment-form input:focus,
.comments-area .comment-form textarea:focus {
    border-color: #7832ff;
}
.comments-area .comment-form .form-submit input {
    background: var(--primary-gradient);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.comments-area .comment-form .form-submit input:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ========================================
   AR��V HEADER (kategori / etiket / ar�iv / arama)
   ======================================== */
.archive-header {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.archive-header::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,42,109,0.18), transparent 70%);
    pointer-events: none;
}
.archive-header--tag::before {
    background: radial-gradient(circle, rgba(120,50,255,0.22), transparent 70%);
}
.archive-header--search::before {
    background: radial-gradient(circle, rgba(0,180,255,0.18), transparent 70%);
}
.archive-header-inner {
    position: relative;
    z-index: 1;
}
.archive-header-label {
    display: inline-block;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.archive-header-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
}
.archive-header-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 8px 0 0;
    max-width: 600px;
    line-height: 1.6;
}
.archive-header-meta {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.tag-hash {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4em;
    vertical-align: middle;
}
.search-header-quote {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.archive-author-avatar {
    border-radius: 50%;
    border: 3px solid rgba(120, 50, 255, 0.4);
    margin-bottom: 16px;
    display: block;
}

/* ========================================
   AR��V GRID (3 kolon kart)
   ======================================== */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.archive-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    border-color: rgba(120, 50, 255, 0.35);
}

.archive-card-img-link {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.archive-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.archive-card-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
}
.archive-card-no-img svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.archive-card:hover .archive-card-img {
    transform: scale(1.06);
}
.archive-card-cat {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    pointer-events: none;
}

.archive-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.archive-card-body .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.archive-card-body .post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.post-author-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.post-author-link:hover {
    color: #fff;
}
.archive-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
}
.archive-card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.archive-card-title a:hover {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.post-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 auto;
    padding-bottom: 16px;
}
.archive-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ff2a6d;
    text-decoration: none;
    margin-top: 16px;
    transition: gap 0.2s, color 0.2s;
}
.archive-read-more:hover {
    gap: 10px;
    color: #7832ff;
}

/* Bo� durum */
.archive-empty {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 64px 40px;
    text-align: center;
}
.archive-empty-icon {
    color: var(--text-muted);
    opacity: 0.4;
    margin-bottom: 24px;
}
.archive-empty h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.archive-empty p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* ========================================
   AR��V SAYFALAMA
   ======================================== */
.archive-pagination {
    margin-top: 8px;
}
.archive-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.archive-pagination .page-numbers.current {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
    font-weight: 700;
}
.archive-pagination .page-numbers:hover:not(.current):not(.dots) {
    background: rgba(120, 50, 255, 0.2);
    border-color: rgba(120, 50, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}
.archive-pagination .page-numbers.dots {
    background: transparent;
    border-color: transparent;
    color: var(--text-muted);
    cursor: default;
}
.archive-pagination .prev,
.archive-pagination .next {
    border-radius: 21px;
    padding: 0 16px;
    gap: 6px;
    min-width: auto;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ========================================
   ARAMA FORMU (search.php + 404.php)
   ======================================== */
.search-refine {
    margin-bottom: 28px;
}
.search-form-bar {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    transition: border-color 0.2s;
}
.search-form-bar:focus-within {
    border-color: #7832ff;
    box-shadow: 0 0 0 3px rgba(120,50,255,0.2);
}
.search-field-bar {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    padding: 14px 20px;
}
.search-field-bar::placeholder {
    color: var(--text-muted);
}
.search-submit-bar {
    background: var(--primary-gradient);
    border: none;
    color: #fff;
    padding: 0 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}
.search-submit-bar:hover {
    opacity: 0.85;
}

/* ========================================
   404 SAYFASI
   ======================================== */
.not-found-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 5% 80px;
    text-align: center;
}

/* 404 Rakam */
.not-found-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
    line-height: 1;
}
.nf-digit {
    font-size: 10rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
}
.nf-0 {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
}
.nf-0 svg {
    width: 100%;
    height: 100%;
    animation: nfRotate 8s linear infinite;
}
@keyframes nfRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.not-found-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
}
.not-found-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.not-found-search {
    max-width: 500px;
    margin: 0 auto 40px;
}
.not-found-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}
.not-found-recent-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}
.not-found-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 460px;
}
.not-found-post-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}
.not-found-post-list a:hover {
    border-color: rgba(120, 50, 255, 0.4);
    background: rgba(120, 50, 255, 0.1);
}
.not-found-post-list img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.not-found-post-list span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    text-align: left;
    line-height: 1.4;
}
.not-found-cats-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

/* ========================================
   RESPONSIVE � Yeni �ablonlar
   ======================================== */
@media (max-width: 1100px) {
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .single-header,
    .single-content,
    .single-tags,
    .single-share,
    .post-navigation,
    .comments-area {
        padding-left: 22px;
        padding-right: 22px;
    }
    .single-title {
        font-size: 1.45rem;
    }
    .archive-grid {
        grid-template-columns: 1fr;
    }
    .archive-header {
        padding: 28px 24px;
    }
    .archive-header-title {
        font-size: 1.45rem;
    }
    .nf-digit {
        font-size: 6rem;
    }
    .nf-0 {
        width: 80px;
        height: 80px;
    }
    .not-found-title {
        font-size: 1.5rem;
    }
    .post-navigation {
        flex-direction: column;
    }
}


/* ========================================
   IS-INNER-PAGE — Kompakt Hero Bolumu
   ======================================== */
.premium-hero-section.is-inner-page {
    min-height: 0;
    padding: 0;
    display: block;
}

/* ========================================
   INNER-HERO — Alt Sayfa Hero Banneri
   ======================================== */
.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 108px 5% 90px; /* 80px navbar + 28px nefes alanı */
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 80% 20%, rgba(120, 50, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 42, 109, 0.08) 0%, transparent 50%);
}

/* Variant renkleri */
.inner-hero--single {
    background-image:
        radial-gradient(circle at 75% 25%, rgba(255, 42, 109, 0.14) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(120, 50, 255, 0.08) 0%, transparent 50%);
}
.inner-hero--tag {
    background-image:
        radial-gradient(circle at 70% 30%, rgba(120, 50, 255, 0.16) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(255, 42, 109, 0.06) 0%, transparent 50%);
}
.inner-hero--search {
    background-image:
        radial-gradient(circle at 60% 20%, rgba(255, 180, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(120, 50, 255, 0.10) 0%, transparent 50%);
}
.inner-hero--404 {
    padding-bottom: 100px;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(255, 42, 109, 0.16) 0%, transparent 55%),
        radial-gradient(circle at 15% 75%, rgba(120, 50, 255, 0.12) 0%, transparent 45%);
}

/* Parcaciklar */
.inner-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.inner-hero-particles span {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.18;
    animation: ih-float 8s ease-in-out infinite;
}
.inner-hero-particles span:nth-child(1) { width: 180px; height: 180px; background: #ff2a6d; top: 10%;  left: 5%;  animation-delay: 0s;   animation-duration: 9s; }
.inner-hero-particles span:nth-child(2) { width: 220px; height: 220px; background: #7832ff; top: 50%;  left: 60%; animation-delay: 1.5s; animation-duration: 11s; }
.inner-hero-particles span:nth-child(3) { width: 140px; height: 140px; background: #ff2a6d; top: 70%;  left: 20%; animation-delay: 3s;   animation-duration: 7s;  }
.inner-hero-particles span:nth-child(4) { width: 260px; height: 260px; background: #7832ff; top: -5%;  left: 75%; animation-delay: 0.8s; animation-duration: 13s; }
.inner-hero-particles span:nth-child(5) { width: 100px; height: 100px; background: #ff2a6d; top: 35%;  left: 85%; animation-delay: 2.2s; animation-duration: 6s;  }

@keyframes ih-float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50%       { transform: translateY(-20px) scale(1.06); }
}

/* Icerik kapsayici */
.inner-hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

/* Breadcrumb */
.inner-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.inner-hero-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.inner-hero-breadcrumb a:hover { color: #fff; }
.inner-hero-breadcrumb .current { color: rgba(255,255,255,0.7); }

/* Badge */
.inner-hero-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.inner-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--primary-gradient);
    color: #fff;
}
.inner-hero-badge--error {
    background: linear-gradient(135deg, #ff2a6d, #c0003a);
}

/* Baslik (H1) */
.inner-hero-title {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.inner-hero-hash {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 2px;
}
.inner-hero-quote {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Aciklama */
.inner-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 660px;
    margin: 0 0 24px;
}

/* Yazar avatari */
.inner-hero-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--glass-border);
    margin-bottom: 14px;
    display: block;
}

/* Istatistik grid */
.inner-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.inner-hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.2s, transform 0.2s;
}
.inner-hero-stat:hover {
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-1px);
}
.inner-hero-stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.inner-hero-stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.inner-hero-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.inner-hero-stat-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.inner-hero-stat-link {
    text-decoration: none;
    transition: color 0.2s;
}
.inner-hero-stat-link:hover {
    color: #ff2a6d;
}

/* Dalga */
.inner-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.inner-hero-wave svg {
    width: 100%;
    height: 50px;
    display: block;
}

/* Arama formu (hero icinde) */
.inner-hero-search-bar {
    margin-top: 28px;
    max-width: 560px;
}
.search-form-bar {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.2s;
}
.search-form-bar:focus-within {
    border-color: rgba(255,42,109,0.5);
}
.search-field-bar {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 0.93rem;
    color: #fff;
    font-family: inherit;
}
.search-field-bar::placeholder { color: var(--text-muted); }
.search-submit-bar {
    background: var(--primary-gradient);
    border: none;
    cursor: pointer;
    padding: 0 20px;
    display: flex;
    align-items: center;
    color: #fff;
    transition: opacity 0.2s;
}
.search-submit-bar:hover { opacity: 0.88; }

/* 404 - buyuk numara */
.nf-number {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}
.nf-digit {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
}
.nf-zero {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nf-zero svg { width: 100%; height: 100%; }

/* 404 — Merkezi düzen + arama + butonlar */
.nf-center {
    text-align: center;
    align-items: center;
}
.nf-desc {
    max-width: 560px;
    margin: 0 auto 8px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}
.nf-search-wrap {
    margin-top: 28px;
    max-width: 500px;
    width: 100%;
}
.nf-search-inner {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.2s;
}
.nf-search-inner:focus-within { border-color: rgba(255,42,109,0.5); }
.nf-search-field {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 0.93rem;
    color: #fff;
    font-family: inherit;
}
.nf-search-field::placeholder { color: var(--text-muted); }
.nf-search-btn {
    background: var(--primary-gradient);
    border: none;
    cursor: pointer;
    padding: 0 20px;
    display: flex;
    align-items: center;
    color: #fff;
    transition: opacity 0.2s;
}
.nf-search-btn:hover { opacity: 0.88; }
.nf-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 28px;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 8px 24px rgba(255,42,109,0.3);
}
.btn-hero-primary:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.8);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: border-color 0.2s, color 0.2s;
}
.btn-hero-ghost:hover { border-color: rgba(255,42,109,0.5); color: #fff; }


/* ========================================
   INNER-HERO — Responsive
   ======================================== */
@media (max-width: 768px) {
    .inner-hero { padding: 96px 5% 80px; }
    .inner-hero-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .inner-hero-stats { gap: 8px; }
    .inner-hero-stat { padding: 8px 12px; gap: 8px; }
    .inner-hero-stat-icon { width: 30px; height: 30px; border-radius: 7px; }
    .nf-digit { font-size: 5rem; }
    .nf-zero  { width: 70px; height: 70px; }
}
@media (max-width: 576px) {
    .inner-hero { padding: 88px 5% 70px; }
    .inner-hero-title { font-size: 1.55rem; }
    .inner-hero-stats { flex-direction: column; gap: 6px; }
    .inner-hero-stat  { width: 100%; }
    .inner-hero-search-bar { max-width: 100%; }
    .nf-digit { font-size: 4rem; }
    .nf-zero  { width: 58px; height: 58px; }
}


/* ========================================
   NAVBAR — Outline butonlar (İletişim, Yorum Yap)
   ======================================== */
.btn-nav-outline {
    display: inline-flex;
    align-items: center;
    padding: 7px 15px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-nav-outline:hover {
    border-color: rgba(255,42,109,0.45);
    color: #fff;
    background: rgba(255,42,109,0.07);
}
@media (max-width: 900px) { .btn-nav-outline { display: none; } }


/* ========================================
   FORM SAYFALARI (İletişim + Yorum Yap)
   ======================================== */
.form-page-section {
    padding: 60px 5% 100px;
}
.form-page-wrap {
    max-width: 700px;
    margin: 0 auto;
}
.form-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.form-group:last-child { margin-bottom: 0; }
.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.02em;
}
.form-label span { color: rgba(255,42,109,0.9); margin-left: 2px; }
.form-input,
.form-textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.93rem;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s;
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(120,50,255,0.5);
    background: rgba(255,255,255,0.07);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}
.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 32px;
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    margin-top: 8px;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 8px 24px rgba(255,42,109,0.25);
}
.form-submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* Durum mesajları */
.form-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.93rem;
    font-weight: 500;
    line-height: 1.5;
}
.form-status--success {
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.28);
    color: #4ade80;
}
.form-status--error {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.28);
    color: #f87171;
}
.form-status svg { flex-shrink: 0; }

/* Yıldız puanlama */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 2px;
    justify-content: flex-end;
    padding: 4px 0;
}
.star-rating-input input { display: none; }
.star-rating-input label {
    font-size: 2.2rem;
    cursor: pointer;
    color: rgba(255,255,255,0.15);
    transition: color 0.1s;
    line-height: 1;
}
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: #fbbf24;
}

@media (max-width: 640px) {
    .form-grid-2 { grid-template-columns: 1fr; }
    .form-card   { padding: 24px 20px; }
}


/* ========================================
   ADMIN PANELİ — Tablo + aksiyon butonları
   ======================================== */
.sg-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    color: #cccce0;
}
.sg-data-table thead tr {
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sg-data-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8888aa;
}
.sg-data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    vertical-align: middle;
}
.sg-data-table tbody tr:last-child td { border-bottom: none; }
.sg-data-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.sg-btn-approve {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: opacity 0.2s;
    margin-right: 6px;
}
.sg-btn-approve:hover { opacity: 0.85; color: #fff; }
.sg-btn-danger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    color: #f87171;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.sg-btn-danger:hover {
    background: rgba(239,68,68,0.25);
    color: #fff;
}
