/*
Theme Name: TarafBet v3
Theme URI: https://tarafbet.com
Author: TarafBet
Author URI: https://tarafbet.com
Description: TarafBet - Bahis ve Casino platformu için özel tasarlanmış WordPress teması
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tarafbet
Tags: bahis, casino, gaming, dark-theme, responsive
*/

/* ============================
   CSS VARIABLES / RENK PALETİ
   ============================ */
:root {
    /* Ana Renkler */
    --primary-green: #10B981;
    --primary-green-hover: #059669;
    --primary-green-light: #34D399;
    
    /* Arka Plan Renkleri - Logo arkaplanıyla uyumlu */
    --bg-dark: #2D3642;
    --bg-card: #343A46;
    --bg-card-hover: #3D444F;
    --bg-header: #2D3642;
    --bg-sidebar: #343A46;
    --bg-input: #3D444F;
    
    /* Metin Renkleri */
    --text-white: #FFFFFF;
    --text-light: #F1F5F9;
    --text-gray: #94A3B8;
    --text-muted: #64748B;
    
    /* Kategori Badge Renkleri */
    --badge-bahis: #EC4899;
    --badge-haberler: #F97316;
    --badge-casino: #8B5CF6;
    --badge-para: #14B8A6;
    --badge-bonuslar: #22C55E;
    
    /* Diğer Renkler */
    --border-color: #334155;
    --shadow-color: rgba(0, 0, 0, 0.3);
    
    /* Font */
    --font-primary: 'Geologica', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --header-height: 120px;
    --sidebar-width: 300px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
}

/* ============================
   FONT FACE
   ============================ */
@font-face {
    font-family: 'Geologica';
    src: url('assets/fonts/Geologica_Auto-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geologica';
    src: url('assets/fonts/Geologica_Auto-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geologica';
    src: url('assets/fonts/Geologica_Auto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geologica';
    src: url('assets/fonts/Geologica_Auto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geologica';
    src: url('assets/fonts/Geologica_Auto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geologica';
    src: url('assets/fonts/Geologica_Auto-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geologica';
    src: url('assets/fonts/Geologica_Auto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geologica';
    src: url('assets/fonts/Geologica_Auto-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geologica';
    src: url('assets/fonts/Geologica_Auto-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-dark);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-green);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* ============================
   UTILITY CLASSES
   ============================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================
   HEADER
   ============================ */
.site-header {
    background-color: var(--bg-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo .logo-img {
    height: 45px;
    width: auto;
}

.site-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
}

.site-logo .logo-text span {
    color: var(--primary-green);
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: var(--bg-input);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.lang-selector:hover {
    background-color: var(--bg-card-hover);
}

.lang-selector .flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.lang-selector span {
    font-size: 14px;
    color: var(--text-white);
}

.lang-selector svg {
    width: 12px;
    height: 12px;
    fill: var(--text-gray);
}

/* Search Box */
.search-box {
    position: relative;
    width: 280px;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    background-color: var(--bg-input);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 14px;
}

.search-box input::placeholder {
    color: var(--text-gray);
}

.search-box .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--text-gray);
}

.search-box .search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--text-gray);
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.search-box input:not(:placeholder-shown) + .search-icon + .search-clear {
    opacity: 1;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.trust-badge:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-green);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--primary-green-hover);
    color: var(--text-white);
}

/* Main Navigation */
.main-nav {
    padding: 0;
}

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

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-menu li a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    background-color: var(--primary-green);
    color: var(--bg-dark);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    transition: all var(--transition-fast);
}

/* ============================
   MOBILE MENU
   ============================ */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-card);
    z-index: 1002;
    transition: right var(--transition-normal);
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-input);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 24px;
}

.mobile-search {
    margin-bottom: 20px;
}

.mobile-search input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    background-color: var(--bg-input);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 15px;
}

.mobile-menu-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.mobile-menu-buttons .btn {
    flex: 1;
}

.mobile-nav-section {
    margin-bottom: 25px;
}

.mobile-nav-section .section-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.mobile-nav-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text-white);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav-menu li a svg {
    width: 22px;
    height: 22px;
    padding: 4px;
    background-color: var(--bg-input);
    border-radius: var(--radius-sm);
    fill: var(--text-gray);
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li.current-menu-item a {
    background-color: var(--primary-green);
    color: var(--bg-dark);
}

.mobile-nav-menu li a:hover svg,
.mobile-nav-menu li.current-menu-item a svg {
    background-color: var(--bg-dark);
    fill: var(--primary-green);
}

.mobile-secondary-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.mobile-secondary-menu li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

.mobile-secondary-menu li a:hover {
    color: var(--primary-green);
}

/* ============================
   SLIDER / CAROUSEL
   ============================ */
.slider-section {
    padding: 30px 0;
    overflow: hidden;
}

.slider-container {
    position: relative;
}

.slider-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.slider-wrapper::-webkit-scrollbar {
    display: none;
}

.slide-item {
    flex: 0 0 calc(20% - 16px);
    min-width: 220px;
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.slide-item:hover {
    transform: translateY(-5px);
}

.slide-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.slide-category {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}

.slide-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

.slide-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-gray);
}

.slide-meta svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-nav-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    border-radius: 50%;
    color: var(--text-white);
    transition: all var(--transition-fast);
}

.slider-nav-btn:hover {
    background-color: var(--primary-green);
    color: var(--bg-dark);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-muted);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot.active,
.slider-dot:hover {
    background-color: var(--primary-green);
    transform: scale(1.2);
}

/* ============================
   MAIN CONTENT AREA
   ============================ */
.main-content-area {
    padding: 40px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 30px;
}

.main-content {
    min-width: 0;
}

/* ============================
   INTRO BOX
   ============================ */
.intro-box {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 40px;
}

.intro-box h1,
.intro-box h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.intro-box p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.intro-box .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
}

.intro-box .read-more svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ============================
   SECTION HEADERS
   ============================ */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.section-header svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-green);
}

.section-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

/* ============================
   BLOG CARDS (YATAY)
   ============================ */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.post-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.post-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Category Badges */
.category-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.category-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.category-badge:hover {
    transform: translateY(-2px);
}

/* Badge Colors */
.category-badge.cat-bahis,
.category-badge[data-category="bahis"] {
    background-color: var(--badge-bahis);
    color: var(--text-white);
}

.category-badge.cat-haberler,
.category-badge[data-category="haberler"] {
    background-color: var(--badge-haberler);
    color: var(--text-white);
}

.category-badge.cat-casino,
.category-badge[data-category="casino"] {
    background-color: var(--badge-casino);
    color: var(--text-white);
}

.category-badge.cat-para-yatirma,
.category-badge[data-category="para-yatirma-ve-cekme"] {
    background-color: var(--badge-para);
    color: var(--text-white);
}

.category-badge.cat-bonuslar,
.category-badge[data-category="bonuslar"] {
    background-color: var(--badge-bonuslar);
    color: var(--bg-dark);
}

.post-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-title a:hover {
    color: var(--primary-green);
}

.post-card-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.post-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-card-meta svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.post-card-meta .meta-author {
    color: var(--text-gray);
}

.post-card-meta .meta-comments {
    color: var(--primary-green);
}

.post-card-meta .meta-views {
    color: var(--primary-green);
}

/* ============================
   LOAD MORE / VIEW ALL
   ============================ */
.view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    margin-top: 30px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.view-all-btn:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--bg-dark);
}

.view-all-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================
   LICENSE SECTION
   ============================ */
.license-section {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 50px;
}

.license-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.license-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin: 25px 0 15px;
}

.license-section p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ============================
   SIDEBAR
   ============================ */
.sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: fit-content;
}

.sidebar-widget {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.widget-header {
    background-color: var(--primary-green);
    padding: 15px 20px;
}

.widget-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--bg-dark);
}

.widget-content {
    padding: 0;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    border-bottom: 1px solid var(--border-color);
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text-gray);
    transition: all var(--transition-fast);
}

.sidebar-menu li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.sidebar-menu li a:hover,
.sidebar-menu li.current-menu-item a {
    background-color: var(--bg-card-hover);
    color: var(--primary-green);
}

/* ============================
   PAGINATION
   ============================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    transition: all var(--transition-fast);
}

.pagination a:hover {
    background-color: var(--bg-card-hover);
    color: var(--text-white);
}

.pagination .current {
    background-color: var(--primary-green);
    color: var(--bg-dark);
}

.pagination .prev,
.pagination .next {
    padding: 0 16px;
}

.pagination .dots {
    background: transparent;
    color: var(--text-muted);
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
    background-color: var(--bg-card);
    margin-top: 60px;
    padding-top: 50px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
}

.footer-logo .logo-text span {
    color: var(--primary-green);
}

.footer-logo .copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background-color: var(--bg-input);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    padding: 14px 24px;
    background-color: var(--primary-green);
    border-radius: var(--radius-md);
    color: var(--bg-dark);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--primary-green-hover);
    color: var(--text-white);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
    transition: color var(--transition-fast);
}

.footer-menu li a::before {
    content: '›';
    color: var(--primary-green);
    font-size: 16px;
}

.footer-menu li a:hover {
    color: var(--primary-green);
}

.footer-menu li a.highlight {
    color: var(--primary-green);
    font-weight: 600;
}

/* Footer Recent Posts */
.footer-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-post-item {
    display: flex;
    gap: 12px;
}

.footer-post-thumb {
    width: 70px;
    height: 50px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.footer-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-post-content {
    flex: 1;
    min-width: 0;
}

.footer-post-content .category-badge {
    font-size: 9px;
    padding: 2px 6px;
    margin-bottom: 5px;
}

.footer-post-content h5 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

.footer-post-content h5 a:hover {
    color: var(--primary-green);
}

.footer-post-content .post-date {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-post-content .post-date svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-disclaimer p {
    margin-bottom: 15px;
}

/* ============================
   SINGLE POST
   ============================ */
.single-post-header {
    margin-bottom: 30px;
}

.single-post-header .category-badges {
    margin-bottom: 15px;
}

.single-post-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.single-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.single-post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.single-post-meta svg {
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
}

.single-post-featured {
    margin-bottom: 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.single-post-featured img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.single-post-content {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

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

.single-post-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.single-post-content ul,
.single-post-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.single-post-content ul li,
.single-post-content ol li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
}

.single-post-content ul li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

.single-post-content ol {
    counter-reset: item;
}

.single-post-content ol li {
    counter-increment: item;
    list-style: none;
}

.single-post-content ol li::before {
    content: counter(item) '.';
    position: absolute;
    left: -25px;
    color: var(--primary-green);
    font-weight: 600;
}

.single-post-content blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    background-color: var(--bg-dark);
    border-left: 4px solid var(--primary-green);
    border-radius: var(--radius-md);
}

.single-post-content blockquote p {
    font-style: italic;
    margin-bottom: 0;
}

.single-post-content a {
    color: var(--primary-green);
    text-decoration: underline;
}

.single-post-content a:hover {
    color: var(--primary-green-light);
}

.single-post-content table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    background-color: var(--bg-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.single-post-content table th,
.single-post-content table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.single-post-content table th {
    background-color: var(--bg-input);
    color: var(--text-white);
    font-weight: 600;
}

.single-post-content table td {
    color: var(--text-gray);
}

.single-post-content table tr:last-child td {
    border-bottom: none;
}

/* Info Box */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin: 25px 0;
    background-color: var(--bg-dark);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.info-box.success {
    border-color: var(--primary-green);
    background-color: rgba(16, 185, 129, 0.1);
}

.info-box.warning {
    border-color: var(--badge-haberler);
    background-color: rgba(249, 115, 22, 0.1);
}

.info-box svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-green);
    flex-shrink: 0;
}

.info-box.warning svg {
    fill: var(--badge-haberler);
}

.info-box p {
    margin: 0;
    font-size: 14px;
}

/* Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.post-tags a {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--bg-input);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-gray);
    transition: all var(--transition-fast);
}

.post-tags a:hover {
    background-color: var(--primary-green);
    color: var(--bg-dark);
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}

.share-buttons span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text-white);
    transition: all var(--transition-fast);
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

.share-btn.facebook {
    background-color: #4267B2;
}

.share-btn.linkedin {
    background-color: #0077B5;
}

.share-btn.whatsapp {
    background-color: #25D366;
}

.share-btn.telegram {
    background-color: #0088CC;
}

.share-btn.email {
    background-color: var(--bg-input);
}

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

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin: 40px 0;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-green);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.author-info .author-role {
    font-size: 13px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Related Posts */
.related-posts {
    margin: 50px 0;
}

.related-posts h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 25px;
}

.related-posts h3 svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-green);
}

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

.related-post-item {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.related-post-item:hover {
    transform: translateY(-5px);
}

.related-post-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.related-post-item:hover .related-post-image img {
    transform: scale(1.05);
}

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

.related-post-content .category-badge {
    font-size: 10px;
    margin-bottom: 8px;
}

.related-post-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.related-post-content h4 a:hover {
    color: var(--primary-green);
}

.related-post-content .post-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.related-post-content .post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.related-post-content .post-meta svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* ============================
   COMMENTS
   ============================ */
.comments-section {
    margin-top: 50px;
}

.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.comments-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
}

.comments-header h3 svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-green);
}

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

/* Comment Form */
.comment-form-wrapper {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 40px;
}

.comment-form-wrapper h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

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

.comment-form label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--bg-input);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 14px;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: var(--text-muted);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.comment-form .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-green);
}

.comment-form .checkbox-group label {
    margin-bottom: 0;
    font-size: 13px;
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comment-item {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.comment-item.reply {
    margin-left: 50px;
    background-color: var(--bg-card-hover);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-meta h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.comment-meta .comment-date {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.comment-meta .comment-date svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.comment-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.comment-reply-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 500;
}

.comment-reply-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ============================
   PAGE TEMPLATES
   ============================ */
.page-header {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.page-header .breadcrumb a {
    color: var(--text-gray);
}

.page-header .breadcrumb a:hover {
    color: var(--primary-green);
}

.page-header .breadcrumb svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
}

.page-content {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.page-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin: 30px 0 15px;
}

.page-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin: 25px 0 12px;
}

.page-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.page-content ul li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-form {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
}

.contact-form h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 25px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.contact-form label .required {
    color: var(--badge-bahis);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--bg-input);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%2394A3B8'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.contact-info-table {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.contact-info-table h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-table table {
    width: 100%;
}

.contact-info-table th,
.contact-info-table td {
    padding: 16px 25px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-table th {
    text-align: left;
    color: var(--text-muted);
    font-weight: 500;
    width: 200px;
}

.contact-info-table td {
    color: var(--text-white);
}

.contact-info-table tr:last-child th,
.contact-info-table tr:last-child td {
    border-bottom: none;
}

/* ============================
   FAQ PAGE
   ============================ */
.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

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

.faq-item {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--bg-card-hover);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--text-gray);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question {
    background-color: var(--primary-green);
    color: var(--bg-dark);
}

.faq-item.active .faq-question svg {
    fill: var(--bg-dark);
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 20px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer a {
    color: var(--primary-green);
}

/* ============================
   SEARCH RESULTS
   ============================ */
.search-results-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.search-results-header svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-green);
}

.search-results-header h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.search-results-header h1 span {
    color: var(--primary-green);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
}

.no-results svg {
    width: 60px;
    height: 60px;
    fill: var(--text-muted);
    margin-bottom: 20px;
}

.no-results h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.no-results p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* ============================
   404 PAGE
   ============================ */
.error-404 {
    text-align: center;
    padding: 80px 20px;
}

.error-404 h1 {
    font-size: 120px;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 20px;
}

.error-404 h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.error-404 p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.error-404 .btn {
    margin: 0 10px;
}

/* ============================
   VALUE BOXES (Hakkımızda)
   ============================ */
.value-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.value-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: var(--bg-dark);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-green);
}

.value-box svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
}

.value-box p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* Info Table */
.info-table {
    width: 100%;
    margin: 25px 0;
    background-color: var(--bg-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 16px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.info-table th {
    text-align: left;
    color: var(--text-muted);
    font-weight: 500;
    width: 200px;
}

.info-table td {
    color: var(--text-white);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

/* ============================
   RESPONSIVE - TABLET (1024px)
   ============================ */
@media (max-width: 1024px) {
    :root {
        --sidebar-width: 280px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .search-box {
        width: 220px;
    }
    
    .nav-menu li a {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .slide-item {
        flex: 0 0 calc(25% - 15px);
        min-width: 200px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr 260px;
        gap: 25px;
    }
    
    .post-card {
        grid-template-columns: 280px 1fr;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================
   RESPONSIVE - MOBILE (768px)
   ============================ */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .header-top {
        padding: 12px 0;
    }
    
    .header-left {
        gap: 15px;
    }
    
    .site-logo .logo-text {
        font-size: 20px;
    }
    
    .search-box,
    .trust-badge,
    .btn-outline,
    .lang-selector span {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .slider-section {
        padding: 20px 0;
    }
    
    .slide-item {
        flex: 0 0 calc(50% - 10px);
        min-width: 160px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        order: -1;
    }
    
    .intro-box {
        padding: 20px;
    }
    
    .intro-box h1,
    .intro-box h2 {
        font-size: 20px;
    }
    
    .post-card {
        grid-template-columns: 1fr;
    }
    
    .post-card-image {
        aspect-ratio: 16/9;
    }
    
    .post-card-content {
        padding: 20px;
    }
    
    .post-card-title {
        font-size: 16px;
    }
    
    .license-section {
        padding: 25px;
    }
    
    .license-section h2 {
        font-size: 18px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: none;
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-menu li a {
        justify-content: center;
    }
    
    .footer-posts {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .single-post-header h1 {
        font-size: 24px;
    }
    
    .single-post-content {
        padding: 25px;
    }
    
    .single-post-content h2 {
        font-size: 20px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .comment-item.reply {
        margin-left: 20px;
    }
    
    .comment-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .page-content {
        padding: 25px;
    }
    
    .error-404 h1 {
        font-size: 80px;
    }
    
    .error-404 h2 {
        font-size: 22px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

/* ============================
   RESPONSIVE - SMALL MOBILE (480px)
   ============================ */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .site-logo .logo-img {
        height: 36px;
    }
    
    .site-logo .logo-text {
        font-size: 18px;
    }
    
    .btn-primary {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .slide-item {
        flex: 0 0 calc(70% - 8px);
        min-width: 200px;
    }
    
    .section-header h2 {
        font-size: 18px;
    }
    
    .post-card-content {
        padding: 15px;
    }
    
    .post-card-title {
        font-size: 15px;
    }
    
    .post-card-excerpt {
        -webkit-line-clamp: 2;
    }
    
    .single-post-header h1 {
        font-size: 20px;
    }
    
    .single-post-content {
        padding: 20px;
    }
    
    .comment-item {
        padding: 20px;
    }
    
    .comment-avatar {
        width: 40px;
        height: 40px;
    }
}

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

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

/* ============================
   PRINT STYLES
   ============================ */
@media print {
    .site-header,
    .site-footer,
    .sidebar,
    .slider-section,
    .share-buttons,
    .related-posts,
    .comments-section {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .single-post-content {
        background: white;
        padding: 0;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}
