/* Nefesol.net - Tan Keşif İlhamlı Tasarım */

@font-face {
    font-family: 'Texturina';
    src: url('../font/AlanSans-Black.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-orange: #FF5722;
    --primary-red: #F44336;
    --tech-blue: #2196F3;
    --health-green: #4CAF50;
    --history-purple: #9C27B0;
    --lifestyle-yellow: #FFC107;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
    --footer-dark: #1a1a2e;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
}

/* Dark Theme */
[data-theme="dark"] {
    --text-dark: #e0e0e0;
    --text-light: #b0b0b0;
    --bg-white: #1e1e1e;
    --bg-light: #121212;
    --border-color: #333333;
    --footer-dark: #0a0a0a;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
}

[data-theme="dark"] body {
    background: var(--bg-light);
    color: var(--text-dark);
}

[data-theme="dark"] .header {
    background: #333333;
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .footer {
    background: var(--footer-dark);
}

[data-theme="dark"] img {
    opacity: 0.9;
}

[data-theme="dark"] .dropdown-menu {
    background: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

[data-theme="dark"] .hero-featured-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
}

[data-theme="dark"] .mobile-menu-toggle span {
    background: var(--text-dark);
}

[data-theme="dark"] .mobile-search-btn,
[data-theme="dark"] .mobile-profile-btn,
[data-theme="dark"] .mobile-theme-toggle {
    color: var(--text-dark);
}

[data-theme="dark"] .mobile-search-btn:hover,
[data-theme="dark"] .mobile-profile-btn:hover,
[data-theme="dark"] .mobile-theme-toggle:hover {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-orange);
}

[data-theme="dark"] .widget {
    background: var(--bg-white);
}

[data-theme="dark"] .tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
}

[data-theme="dark"] .tag:hover {
    background: var(--primary-orange);
    color: white;
}

/* ==================== BETA RIBBON BANNER ==================== */
.beta-ribbon {
    position: fixed;
    top: 15px;
    left: -40px;
    width: 160px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    transform: rotate(-45deg);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 10001;
    overflow: hidden;
}

.beta-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: ribbonShine 3s infinite;
}

.beta-ribbon span {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes ribbonShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Dark mode */
[data-theme="dark"] .beta-ribbon {
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.6);
}

/* Hide on mobile */
@media (max-width: 768px) {
    .beta-ribbon {
        display: none;
    }
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: linear-gradient(
        90deg,
        #ff6b6b 0%,
        #ffd93d 15%,
        #6bcf7f 30%,
        #4d96ff 50%,
        #9333ea 70%,
        #ff6bcf 85%,
        #ff6b6b 100%
    );
    background-size: 200% 100%;
    animation: rainbowShift 15s ease infinite;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    font-size: 13px;
    position: relative;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.top-bar .container {
    position: relative;
    z-index: 1;
}

@keyframes rainbowShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.pages-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

.page-menu-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: #6c757d;
    transition: fill 0.3s ease;
}

.page-menu-link:hover {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

.page-menu-link:hover svg {
    fill: var(--primary-orange);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

.top-bar-divider {
    width: 1px;
    height: 20px;
    background: var(--border-color);
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--primary-orange);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 10000;
}

.subscribe-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.language-selector {
    position: relative;
    z-index: 10001;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.language-btn .dropdown-icon {
    transition: transform 0.3s ease;
}

.language-selector.active .language-btn .dropdown-icon {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10002;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown li {
    border-bottom: 1px solid var(--border-color);
}

.language-dropdown li:last-child {
    border-bottom: none;
}

.language-dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-orange);
}

/* Top Bar Dark Mode */
[data-theme="dark"] .top-bar {
    background: linear-gradient(
        90deg,
        #ff6b6b 0%,
        #ffd93d 15%,
        #6bcf7f 30%,
        #4d96ff 50%,
        #9333ea 70%,
        #ff6bcf 85%,
        #ff6b6b 100%
    );
    background-size: 200% 100%;
    animation: rainbowShift 15s ease infinite;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .top-bar::before {
    background: rgba(26, 26, 46, 0.92);
}

[data-theme="dark"] .page-menu-link {
    color: #e0e0e0;
}

[data-theme="dark"] .page-menu-link svg {
    fill: #b0b0b0;
}

[data-theme="dark"] .page-menu-link:hover {
    color: var(--primary-orange);
}

[data-theme="dark"] .page-menu-link:hover svg {
    fill: var(--primary-orange);
}

[data-theme="dark"] .language-dropdown {
    background: var(--bg-white);
}

/* Top Bar Responsive */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(147deg, rgba(255, 255, 255, 0.7) 0%, rgba(0,0,0,0.1) 74%);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 15px;
    position: relative;
    overflow-x: hidden;
}

/* Background Animated Items */
.item {
    position: fixed;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    background-color: silver;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

.first {
    background-color: #14213d;
    width: 500px;
    height: 500px;
    transform: translate3d(-500px, 0, 0) rotate(45deg);
    top: 10%;
    left: 0;
}

.second {
    background-color: #00a896;
    width: 100px;
    height: 100px;
    transform: translate3d(-100px, 0, 0) rotate(45deg);
    top: 30%;
    left: 0;
}

.third {
    background-color: #fca311;
    transform: translate3d(400px, -700px, 0) rotate(45deg);
    top: 50%;
    right: 0;
}

.fourth {
    background-color: #1b9aaa;
    width: 300px;
    height: 300px;
    transform: translate3d(200px, -200px, 0) rotate(45deg);
    top: 70%;
    right: 0;
}

.fifth {
    background-color: #ef233c;
    transform: translate3d(-300px, -400px, 0) rotate(45deg);
    bottom: 10%;
    left: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 28px;
}

.logo-icon.material-symbols-outlined {
    font-size: 40px;
}

/* Weather Widget Mini */
.weather-widget-mini {
    position: relative;
    z-index: 50;
}

.weather-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    color: var(--text-dark);
    border-radius: 8px;
}

.weather-icon {
    font-size: 1.2rem;
}

.weather-temp {
    font-weight: 600;
}

.weather-cities {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 0.5rem;
    min-width: 150px;
    display: none;
    z-index: 60;
}

.weather-city-item {
    padding: 0.6rem 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.city-temp {
    font-weight: 600;
}

/* Currency Widget */
.currency-widget {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    white-space: nowrap;
    color: var(--text-dark);
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    z-index: 50;
}

.currency-name {
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

/* Dropdown Menu */
.nav-menu .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    z-index: 1000;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-orange);
    padding-left: 25px;
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 50;
}

.search-trigger {
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-trigger:hover {
    background: var(--bg-light);
    color: var(--primary-orange);
}

.search-trigger svg {
    display: block;
}

/* Theme Toggle */
.theme-toggle {
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.theme-toggle:hover {
    background: var(--bg-light);
    color: var(--primary-orange);
}

.theme-toggle svg {
    display: block;
    position: absolute;
    transition: all 0.3s;
}

.theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

[data-theme="dark"] .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

[data-theme="dark"] .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Mobile Menu Toggle */
/* Mobile Icons */
.mobile-icons {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-search-btn,
.mobile-profile-btn,
.mobile-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    padding: 0;
}

.mobile-search-btn:hover,
.mobile-profile-btn:hover,
.mobile-theme-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
}

.mobile-theme-toggle .sun-icon {
    display: block;
}

.mobile-theme-toggle .moon-icon {
    display: none;
}

[data-theme="dark"] .mobile-theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .mobile-theme-toggle .moon-icon {
    display: block;
}

.mobile-search-btn:active,
.mobile-profile-btn:active {
    transform: scale(0.95);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-icons {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .search-trigger {
        display: none;
    }

    .theme-toggle {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: left 0.3s;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu > li > a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 16px;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        margin-top: 0;
        padding-left: 20px;
        background: var(--bg-light);
        border-radius: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-arrow {
        float: right;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

/* Hero Featured Section - New Layout */
.hero-featured-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
        box-shadow: 0 4px 20px rgba(233, 1, 1, 0.1);
}

.hero-featured-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.hero-featured-main {
    /* Takes full height of grid row */
}

.hero-featured-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-featured-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* Featured Post Card */
.hero-featured-main,
.hero-featured-small {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-featured-main:hover,
.hero-featured-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hero-featured-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.hero-featured-main .hero-featured-link {
    height: 500px;
}

.hero-featured-small .hero-featured-link {
    height: 240px;
}

.hero-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hero-featured-main:hover .hero-featured-img,
.hero-featured-small:hover .hero-featured-img {
    transform: scale(1.05);
}

/* Featured Slider Styles */
.featured-slider-main {
    width: 100%;
    height: 100%;
}

.featured-slider-main .swiper-slide {
    width: 100%;
    height: 100%;
}

.featured-slider-main .swiper-button-next,
.featured-slider-main .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.featured-slider-main .swiper-button-next:hover,
.featured-slider-main .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.featured-slider-main .swiper-button-next::after,
.featured-slider-main .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.featured-slider-main .swiper-pagination {
    bottom: 20px !important;
}

.featured-slider-main .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.featured-slider-main .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-orange);
    width: 24px;
    border-radius: 5px;
}

/* Overlay with gradient */
.hero-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    color: white;
    z-index: 2;
}

.hero-featured-small .hero-featured-overlay {
    padding: 16px;
}

.hero-featured-overlay .category-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.hero-featured-title {
    color: white;
    margin: 0 0 10px 0;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-featured-main .hero-featured-title {
    font-size: 24px;
    -webkit-line-clamp: 3;
}

.hero-featured-small .hero-featured-title {
    font-size: 14px;
    -webkit-line-clamp: 2;
}

.hero-featured-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    flex-wrap: wrap;
}

.hero-featured-small .hero-featured-meta {
    font-size: 11px;
    gap: 8px;
}

.hero-featured-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Hero Questions Card */
.hero-questions-card .questions-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.3) 100%) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.questions-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.questions-card-header h3 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.questions-card-header .view-all {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.question-item {
    display: block;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.question-item:last-child {
    border-bottom: none;
}

.question-title {
    font-size: 12px;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.question-meta {
    display: flex;
    gap: 12px;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
}

.question-meta .answer-count {
    font-weight: 600;
}

.question-meta .question-date {
    color: rgba(255,255,255,0.6);
}

.featured-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.featured-card-image-wrapper {
    position: relative;
}

.featured-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.featured-card-image-wrapper .category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.featured-card-content {
    padding: 20px;
}

.featured-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.featured-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.featured-card h3 a:hover {
    color: var(--primary-orange);
}

/* Category Badge */
.category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: white;
}

.category-badge.nefes { background: var(--tech-blue); }
.category-badge.farkindalik { background: var(--health-green); }
.category-badge.meditasyon { background: var(--history-purple); }
.category-badge.yasam { background: var(--lifestyle-yellow); color: var(--text-dark); }

/* Section Title */
.section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-orange);
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.tab-nav button {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-nav button:hover,
.tab-nav button.active {
    color: var(--primary-orange);
}

.tab-nav button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-orange);
}

/* Popular Section */
.popular-section {
    margin-bottom: 40px;
}

.section-header {
    margin-bottom: 20px;
}

/* Popular Posts Grid */
.popular-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.popular-post-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.popular-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.popular-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.popular-post-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.popular-post-card:hover .popular-post-image img {
    transform: scale(1.1);
}

.popular-post-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    color: white;
    z-index: 2;
}

.popular-post-overlay .category-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.popular-post-overlay h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    color: white;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-post-overlay .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.popular-post-overlay .post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.popular-post-content {
    padding: 20px;
    display: none;
}

.popular-post-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-post-content .post-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-light);
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* Posts Grid */
.posts-section {
    margin-bottom: 40px;
}

.posts-grid {
    display: grid;
    gap: 20px;
}

/* Post Card - Large */
.post-card-large {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    transition: box-shadow 0.3s;
}

.post-card-large:hover {
    box-shadow: var(--shadow-md);
}

.post-card-image-wrapper {
    position: relative;
}

.post-card-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-image-wrapper .category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.post-card-large-content {
    padding: 20px 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-card-large h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-card-large h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.post-card-large h3 a:hover {
    color: var(--primary-orange);
}

.post-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.post-meta {
    display: flex;
    gap: 15px;
    color: var(--text-light);
    font-size: 13px;
    align-items: center;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Small Post Card (Sidebar) */
.post-card-small {
    display: flex;
    gap: 15px;
    background: var(--bg-white);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: box-shadow 0.3s;
}

.post-card-small:hover {
    box-shadow: var(--shadow-sm);
}

.post-card-small img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.post-card-small-content {
    flex: 1;
}

.post-card-small h4 {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.post-card-small h4 a {
    color: var(--text-dark);
    text-decoration: none;
}

.post-card-small h4 a:hover {
    color: var(--primary-orange);
}

.post-card-small .post-meta {
    font-size: 12px;
    gap: 10px;
}

/* Interest Cards (İlgini Çekebilir) */
.interest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.interest-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.interest-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.interest-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
}

.interest-card-image-wrapper .category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.interest-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.interest-card-content {
    padding: 20px;
}

.interest-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.interest-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.interest-card h3 a:hover {
    color: var(--primary-orange);
}

.interest-card p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.read-more-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.3s;
}

.read-more-btn:hover {
    background: var(--primary-red);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.widget {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.widget-quote {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    color: white;
}

.widget-quote blockquote {
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
}

/* Most Liked Posts Widget */
.widget-popular {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.widget-popular h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.widget-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.widget-post-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s;
}

.widget-post-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.post-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.widget-post-item:nth-child(1) .post-rank {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.widget-post-item:nth-child(2) .post-rank {
    background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
}

.widget-post-item:nth-child(3) .post-rank {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
}

.widget-post-item:nth-child(4) .post-rank {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.widget-post-item:nth-child(5) .post-rank {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.widget-post-content {
    flex: 1;
}

.widget-post-content h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.widget-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.widget-post-content h4 a:hover {
    color: #4CAF50;
}

.widget-post-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-light);
}

.widget-post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Popular Posts Widget */
.popular-list {
    list-style: none;
}

.popular-list li {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.popular-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.popular-list a:hover {
    color: var(--primary-orange);
}

.popular-list .post-meta {
    font-size: 12px;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 14px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.tag:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

/* Footer */
.footer {
    background: var(--footer-dark);
    color: #a8a8a8;
    padding: 50px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a8a8a8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.subscribe-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #3a3a4e;
    background: #2a2a3e;
    color: white;
    border-radius: 6px;
    font-size: 14px;
}

.subscribe-form input::placeholder {
    color: #808080;
}

.subscribe-form button {
    padding: 12px 25px;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-form button:hover {
    background: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a3a4e;
    color: #808080;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-featured-top {
        grid-template-columns: 1fr;
    }

    .hero-featured-side {
        flex-direction: row;
    }

    .hero-featured-bottom {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-featured-main .hero-featured-link {
        height: 400px;
    }

    .popular-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 13px;
    }

    .featured-grid,
    .interest-grid {
        grid-template-columns: 1fr;
    }

    .post-card-large {
        grid-template-columns: 1fr;
    }

    .post-card-large img {
        height: 200px;
    }

    .hero-featured-top {
        grid-template-columns: 1fr;
    }

    .hero-featured-main .hero-featured-link {
        height: 300px;
    }

    .hero-featured-side {
        flex-direction: column;
    }

    .hero-featured-bottom {
        grid-template-columns: 1fr;
    }

    .hero-featured-small .hero-featured-link {
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .tab-nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab-nav button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.post-card-large,
.interest-card,
.featured-card {
    animation: fadeIn 0.5s ease-in-out;
}

/* Widget - En Çok Beğenilen Yazılar */
.widget-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.widget-post-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s;
    align-items: flex-start;
}

.widget-post-item:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transform: translateX(3px);
}

.post-rank {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
}

.widget-post-content {
    flex: 1;
    min-width: 0;
}

.widget-post-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.widget-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.widget-post-content h4 a:hover {
    color: var(--primary-orange);
}

.widget-post-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.widget-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Post detail grid fix */
.post-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}
.post-layout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-top: 2rem;
}
@media (max-width: 900px) {
    .post-layout-grid {
        grid-template-columns: 1fr;
    }
    .post-sidebar {
        margin-top: 2rem;
    }
}
.post-main-column {
    min-width: 0;
}
.post-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 0.8rem;
}

/* İlgili Yazılar */
.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post-item {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.related-post-item:hover {
    background: var(--bg-gray);
}

.related-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-post-info h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.related-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Popüler Yazılar */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.popular-post-item:hover {
    background: var(--bg-gray);
}

.popular-rank {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.popular-post-info h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0 0 0.3rem 0;
    line-height: 1.4;
}

.popular-views {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Sosyal Paylaşım */
.social-share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.twitter:hover {
    background: #0d8bd9;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.facebook:hover {
    background: #0d65d9;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.whatsapp:hover {
    background: #1fb855;
}
/* Post Header */
.post-breadcrumb {
    padding: 1rem 0;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-breadcrumb a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s;
}

.post-breadcrumb a:hover {
    color: var(--primary-red);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.post-header {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.post-featured-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}
.post-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-featured-image:hover {
    transform: scale(1.05);
}

.post-header-content {
    padding: 2.5rem;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.post-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem 0 0 0;
    border-top: 2px solid var(--border-color);
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.meta-icon {
    font-size: 1.1rem;
}

.meta-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.meta-link:hover {
    color: var(--primary-red);
}

/* Post Body */
.post-body {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}
.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    word-break: break-word;
    padding: 2rem;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.post-content h1 { font-size: 2rem; }
.post-content h2 { font-size: 1.75rem; }
.post-content h3 { font-size: 1.5rem; }
.post-content h4 { font-size: 1.25rem; }

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.post-content blockquote {
    border-left: 4px solid var(--primary-orange);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--bg-gray);
    border-radius: 4px;
    font-style: italic;
}

.post-content code {
    background: var(--bg-gray);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
}

.post-content pre {
    background: var(--bg-gray);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-content pre code {
    background: none;
    padding: 0;
}

.post-content a {
    color: var(--primary-orange);
    text-decoration: underline;
}

.post-content a:hover {
    color: var(--primary-red);
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.post-content table th,
.post-content table td {
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    text-align: left;
}

.post-content table th {
    background: var(--bg-gray);
    font-weight: 700;
}

/* Post Reactions */
.post-reactions-wrapper {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.reactions-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.reaction-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.reaction-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 600;
}

.reaction-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.reaction-btn.like-btn:hover {
    border-color: #4CAF50;
    background: #f1f8f4;
}

.reaction-btn.dislike-btn:hover {
    border-color: #f44336;
    background: #fef3f2;
}

.reaction-btn.active.like-btn {
    border-color: #4CAF50;
    background: #4CAF50;
    color: white;
}

.reaction-btn.active.dislike-btn {
    border-color: #f44336;
    background: #f44336;
    color: white;
}

.reaction-icon {
    font-size: 1.5rem;
}

.reaction-label {
    font-size: 1rem;
}

.reaction-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: var(--bg-gray);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0 0.5rem;
}

.reaction-btn.active .reaction-count {
    background: rgba(255,255,255,0.3);
    color: white;
}

/* Comments Section */
.comments-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.comments-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

/* Comment Form */
.comment-form-wrapper {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.comment-form-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-form .form-group {
    display: flex;
    flex-direction: column;
}

.comment-form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.comment-form input,
.comment-form textarea {
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-comment-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-comment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item {
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-author {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.comment-reactions {
    display: flex;
    gap: 1rem;
}

.comment-reaction-btn {
    background: white;
    border: 2px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
}

.comment-reaction-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.comment-reaction-btn:active {
    transform: scale(0.95);
}

.comment-reaction-btn.like-btn:hover {
    border-color: #4CAF50;
    background: #f1f8f4;
}

.comment-reaction-btn.dislike-btn:hover {
    border-color: #f44336;
    background: #fef3f2;
}

.comment-reaction-btn.like-btn.active {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-color: #4CAF50;
    color: white;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.comment-reaction-btn.dislike-btn.active {
    background: linear-gradient(135deg, #f44336, #e53935);
    border-color: #f44336;
    color: white;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.comment-reaction-btn .reaction-icon {
    font-size: 1.1rem;
}

.comment-reaction-btn .reaction-count {
    min-width: 20px;
    text-align: center;
    font-weight: 700;
}

.no-comments {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .comment-form .form-row {
        grid-template-columns: 1fr;
    }

    .comments-card {
        padding: 1.5rem;
    }

    .comment-form-wrapper {
        padding: 1.5rem;
    }
}


/* ==================== SEARCH MODAL ==================== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: 40px;
}

.search-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.search-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.search-modal-inner h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.search-modal-input-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.search-modal-input-wrapper svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.search-modal-input-wrapper input {
    width: 100%;
    padding: 20px 20px 20px 60px;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    outline: none;
    transition: all 0.3s;
}

.search-modal-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-modal-input-wrapper input:focus {
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.15);
}

/* Search Suggestions */
.search-suggestions {
    max-height: 400px;
    overflow-y: auto;
}

.suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.suggestion-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.suggestion-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.suggestion-content {
    flex: 1;
}

.suggestion-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.suggestion-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.no-suggestions {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .search-modal-content {
        padding: 20px;
    }

    .search-modal-inner h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .search-modal-input-wrapper input {
        padding: 15px 15px 15px 50px;
        font-size: 16px;
    }
}


/* ==================== SITE INFO BAR ==================== */
.site-info-bar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 24px;
    margin-bottom: 32px;
    align-items: stretch;
}

/* Info Slider */
.info-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.info-slider .swiper-wrapper {
    width: 100%;
    height: 400px;
}

.info-slider .swiper-slide {
    width: 100%;
    height: 400px;
}

.slide-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 400px;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.slide-card:hover {
    transform: scale(1.02);
}

.slide-image {
    position: relative;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slide-badge .badge-icon {
    font-size: 16px;
}

.slide-content {
    padding: 20px;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-title {
    font-size: 18px;
    font-weight: 700;
    color: #0d0925;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide-stats {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #7b7992;
}

.slide-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.info-slider .swiper-pagination {
    bottom: 10px;
}

.info-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.info-slider .swiper-pagination-bullet-active {
    background: #fff;
}

.info-slider .swiper-button-next,
.info-slider .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.info-slider .swiper-button-next:after,
.info-slider .swiper-button-prev:after {
    font-size: 18px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.stat-icon-modern {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    flex-shrink: 0;
}

.stat-icon-modern svg {
    width: 20px;
    height: 20px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    opacity: 0.9;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* DateTime Widget Modern */
.datetime-widget-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.clock-display {
    background: linear-gradient(135deg, hsl(209, 66%, 86%) 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 20px 16px 16px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    border-top: 3px solid #d0d0d0;
    position: relative;
    overflow: visible;
    margin-top: 16px;
}



/* Calendar Rings */
.calendar-rings {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.calendar-rings::before {
    content: '';
    position: absolute;
    top: 12px;
    left: -30px;
    right: -30px;
    height: 8px;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.08) 0%,
        transparent 100%
    );
    border-radius: 50% 50% 0 0;
    z-index: -1;
}

.ring {
    width: 12px;
    height: 28px;
    background: linear-gradient(180deg,
        #d0d0d0 0%,
        #a0a0a0 20%,
        #b8b8b8 50%,
        #d0d0d0 100%
    );
    border-radius: 50% / 15%;
    box-shadow:
        inset -1px 0 2px rgba(0, 0, 0, 0.25),
        inset 1px 0 2px rgba(255, 255, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.25),
        0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    background: radial-gradient(circle, rgba(60, 60, 60, 0.6) 0%, transparent 70%);
    border-radius: 50%;
}

.ring::after {
    content: '';
    position: absolute;
    top: 0;
    left: 2px;
    width: 1.5px;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.7) 0%,
        transparent 50%
    );
    border-radius: 50%;
}

/* Moon Phase */
.moon-phase {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-size: 48px;
    opacity: 0.15;
    z-index: 0;
    animation: moonRotate 20s linear infinite;
    filter: grayscale(0.3);
}

@keyframes moonRotate {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

.time-display-large {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.time-display-large .time {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    line-height: 1;
}

.time-period {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
}

.date-info-modern {
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.date-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px;
    background: rgba(255, 87, 34, 0.05);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.date-item svg {
    color: var(--primary-orange);
    flex-shrink: 0;
}

.motivation-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.motivation-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.motivation-content {
    flex: 1;
}

.motivation-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.motivation-quote {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 8px;
}

.motivation-author {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

/* Comments Ticker */
.comments-ticker {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.ticker-label {
    font-weight: 600;
    color: var(--primary-orange);
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    will-change: transform;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.ticker-item strong {
    color: var(--primary-orange);
}

.ticker-link {
    color: var(--tech-blue);
    text-decoration: none;
    font-weight: 500;
    margin-left: 5px;
    transition: color 0.3s;
}

.ticker-link:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .site-info-bar {
        grid-template-columns: 1fr;
    }

    .datetime-widget {
        font-family: 'Texturina', serif;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Top Bar Mobile */
    .top-bar {
        display: none;
    }

    /* Header Mobile */
    .header {
        padding: 10px 0;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon.material-symbols-outlined {
        font-size: 32px;
    }

    .nefesolbackground {
        font-size: 1.1em;
    }

    /* Nav Actions Mobile */
    .nav-actions {
        gap: 8px;
    }

    .weather-widget-mini,
    .currency-widget {
        display: none;
    }

    /* Site Info Bar Mobile */
    .site-info-bar {
        display: none;
    }

    /* Comments Ticker Mobile */
    .comments-ticker {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ticker-label {
        font-size: 14px;
    }

    .ticker-item {
        font-size: 13px;
    }

    /* Other Mobile Adjustments */
    .site-description h1 {
        font-size: 22px;
    }

    .site-description p {
        font-size: 14px;
    }

    .date-display .time {
        font-family: 'Texturina', serif;
        font-size: 28px;
    }

    .time-display .motivation-quote {
        font-family: 'Texturina', serif;
        font-size: 13px;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon.material-symbols-outlined {
        font-size: 28px;
    }

    .nefesolbackground {
        font-size: 1em;
    }

    .nav-actions {
        gap: 5px;
    }

    .theme-toggle,
    .search-trigger {
        padding: 0.4rem;
    }

    .blog-slider {
        padding: 10px;
        min-height: 350px;
    }

    .blog-slider__img {
        height: 150px;
    }

    .blog-slider__title {
        font-size: 18px;
    }

    .blog-slider__text {
        font-size: 13px;
    }

    .blog-slider__button {
        padding: 12px 28px;
        font-size: 14px;
    }

    .time-display-large .time {
        font-size: 42px;
    }

    .motivation-quote {
        font-size: 12px;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
}


/* ==================== WEATHER PAGE STYLES ==================== */

.weather-page {
    padding: 40px 0;
    min-height: calc(100vh - 400px);
}

.weather-header {
    text-align: center;
    margin-bottom: 40px;
}

.weather-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.weather-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.weather-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.location-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.location-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.location-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.location-btn .material-symbols-outlined {
    font-size: 20px;
}

.city-select {
    padding: 12px 20px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    min-width: 200px;
}

.city-select:hover {
    border-color: var(--primary-orange);
}

.city-select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.loading {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.weather-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.weather-icon-large img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.weather-info h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.temperature-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 10px;
}

.condition-text {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 500;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    transition: all 0.3s;
}

.detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.detail-icon {
    font-size: 36px;
    line-height: 1;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.detail-value {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
}

.weather-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-icon {
    font-size: 18px;
    line-height: 1;
}

.location-btn .icon {
    font-size: 18px;
    line-height: 1;
}

/* Weather Page Mobile Responsive */
@media (max-width: 768px) {
    .weather-page {
        padding: 20px 0;
    }

    .weather-header h1 {
        font-size: 1.8rem;
    }

    .weather-header p {
        font-size: 1rem;
    }

    .weather-controls {
        flex-direction: column;
        width: 100%;
        padding: 0 15px;
    }

    .location-btn,
    .city-select {
        width: 100%;
    }

    .weather-card {
        padding: 20px;
        border-radius: 15px;
    }

    .weather-main {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .weather-icon-large img {
        width: 100px;
        height: 100px;
    }

    .weather-info h2 {
        font-size: 1.5rem;
    }

    .temperature-large {
        font-size: 3rem;
    }

    .condition-text {
        font-size: 1.1rem;
    }

    .weather-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .detail-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .weather-header h1 {
        font-size: 1.5rem;
    }

    .temperature-large {
        font-size: 2.5rem;
    }

    .detail-icon {
        font-size: 30px;
    }

    .detail-value {
        font-size: 1.1rem;
    }
}

/* ==================== FUEL PRICES PAGE STYLES ==================== */

.fuel-prices-page {
    padding: 40px 0;
    min-height: calc(100vh - 400px);
}

.fuel-header {
    text-align: center;
    margin-bottom: 40px;
}

.fuel-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.fuel-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.fuel-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.city-select-fuel {
    padding: 12px 20px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    min-width: 250px;
}

.city-select-fuel:hover {
    border-color: var(--primary-orange);
}

.city-select-fuel:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.fuel-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.fuel-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.fuel-header-info h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 0;
}

.last-update {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.update-icon {
    font-size: 16px;
}

.fuel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.fuel-item {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.fuel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.fuel-item.benzin:hover {
    border-color: #4CAF50;
}

.fuel-item.motorin:hover {
    border-color: #FF9800;
}

.fuel-item.lpg:hover {
    border-color: #2196F3;
}

.fuel-icon {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1;
}

.fuel-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.fuel-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.fuel-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.fuel-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.fuel-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.fuel-info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #fff8e1, #ffffff);
    border-radius: 12px;
    border-left: 4px solid #FFC107;
}

.info-icon {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.fuel-info-box p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Fuel Prices Page Mobile Responsive */
@media (max-width: 768px) {
    .fuel-prices-page {
        padding: 20px 0;
    }

    .fuel-header h1 {
        font-size: 1.8rem;
    }

    .fuel-header p {
        font-size: 1rem;
    }

    .fuel-controls {
        padding: 0 15px;
    }

    .city-select-fuel {
        width: 100%;
    }

    .fuel-card {
        padding: 20px;
        border-radius: 15px;
    }

    .fuel-header-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .fuel-header-info h2 {
        font-size: 1.5rem;
    }

    .fuel-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .fuel-item {
        padding: 20px;
    }

    .fuel-icon {
        font-size: 40px;
    }

    .fuel-price .price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .fuel-header h1 {
        font-size: 1.5rem;
    }

    .fuel-price .price {
        font-size: 1.8rem;
    }

    .fuel-info h3 {
        font-size: 1.1rem;
    }

    .fuel-icon {
        font-size: 36px;
    }
}

/* ==================== EVENTS PAGE STYLES ==================== */

.events-page {
    padding: 40px 0;
    min-height: calc(100vh - 400px);
}

.events-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.events-page-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.events-page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.date-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.date-input {
    padding: 12px 20px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    min-width: 200px;
}

.date-input:hover {
    border-color: var(--primary-orange);
}

.date-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.today-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.today-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.today-btn .icon {
    font-size: 18px;
    line-height: 1;
}

.events-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.events-date-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 15px;
}

.events-date-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 0;
}

.holiday-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
}

.holiday-badge.official {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
}

.holiday-badge.religious {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
}

.badge-icon {
    font-size: 18px;
    line-height: 1;
}

.events-list-container {
    position: relative;
}

.events-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.stats-icon {
    font-size: 18px;
}

.events-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s;
}

.event-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.event-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    height: 35px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.event-text {
    flex: 1;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
}

.no-events-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.no-events-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-events-message p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

/* Events Page Mobile Responsive */
@media (max-width: 768px) {
    .events-page {
        padding: 20px 0;
    }

    .events-page-header h1 {
        font-size: 1.8rem;
    }

    .events-page-header p {
        font-size: 1rem;
    }

    .date-controls {
        flex-direction: column;
        width: 100%;
        padding: 0 15px;
    }

    .date-input,
    .today-btn {
        width: 100%;
    }

    .events-container {
        padding: 20px;
        border-radius: 15px;
    }

    .events-date-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .events-date-header h2 {
        font-size: 1.5rem;
    }

    .holiday-badge {
        width: 100%;
        justify-content: center;
    }

    .event-item {
        padding: 15px;
        gap: 12px;
    }

    .event-number {
        min-width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .event-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .events-page-header h1 {
        font-size: 1.5rem;
    }

    .events-date-header h2 {
        font-size: 1.3rem;
    }

    .event-item {
        padding: 12px;
    }

    .no-events-icon {
        font-size: 48px;
    }
}

/* ==================== LEFT SIDEBAR TOOLBOX ==================== */

.left-toolbox {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 8px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.toolbox-item {
    position: relative;
}

.toolbox-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 8px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.toolbox-item a:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(147, 51, 234, 0.1));
    transform: scale(1.05);
}

.toolbox-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    transition: all 0.3s;
}

.toolbox-icon svg {
    color: var(--text-dark);
    transition: all 0.3s;
    width: 22px;
    height: 22px;
}

.toolbox-item a:hover .toolbox-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    transform: scale(1.1);
}

.toolbox-item a:hover .toolbox-icon svg {
    color: white;
}

.toolbox-label {
    font-size: 8px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    max-width: 60px;
    word-wrap: break-word;
    color: var(--text-muted);
}

.toolbox-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 5px 0;
}

.toolbox-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 6px 0;
}

.toolbox-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-orange);
    opacity: 0.4;
    transition: all 0.3s;
}

.toolbox-dots span:nth-child(1) {
    animation: dotPulse 1.5s ease-in-out infinite;
}

.toolbox-dots span:nth-child(2) {
    animation: dotPulse 1.5s ease-in-out 0.3s infinite;
}

.toolbox-dots span:nth-child(3) {
    animation: dotPulse 1.5s ease-in-out 0.6s infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Hide on tablet and mobile */
@media (max-width: 1024px) {
    .left-toolbox {
        display: none;
    }
}

/* Dark mode */
[data-theme="dark"] .left-toolbox {
    background: var(--dark-card-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .toolbox-item a {
    color: var(--dark-text);
}

[data-theme="dark"] .toolbox-icon {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .toolbox-icon svg {
    color: var(--dark-text);
}

[data-theme="dark"] .toolbox-item a:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(147, 51, 234, 0.15));
}

[data-theme="dark"] .toolbox-item a:hover .toolbox-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
}

[data-theme="dark"] .toolbox-item a:hover .toolbox-icon svg {
    color: white;
}

[data-theme="dark"] .toolbox-label {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .toolbox-divider {
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* ==================== SCROLL TO TOP BUTTON ==================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1024px) {
    .scroll-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 75px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* Bottom Mobile Navigation */
.bottom-mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    justify-content: space-around;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    border-top: 1px solid var(--border-color);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 8px;
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.3s;
    border: none;
    background: none;
    cursor: pointer;
    flex: 1;
    min-width: 0;
}

.mobile-nav-item.active {
    color: var(--primary-orange);
}

.mobile-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-nav-item.active .mobile-nav-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    transform: scale(1.1);
}

.mobile-nav-item.active .mobile-nav-icon svg {
    color: white;
    stroke: white;
}

.mobile-nav-icon svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s;
}

.mobile-nav-label {
    font-size: 0.6rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.mobile-nav-item:active {
    transform: scale(0.95);
}

/* Show only on mobile/tablet */
@media (max-width: 1024px) {
    .bottom-mobile-nav {
        display: flex;
    }

    /* Add bottom padding to body to prevent content from being hidden */
    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .mobile-nav-icon {
        width: 26px;
        height: 26px;
    }

    .mobile-nav-icon svg {
        width: 18px;
        height: 18px;
    }

    .mobile-nav-label {
        font-size: 0.55rem;
    }

    .mobile-nav-item {
        padding: 5px 6px;
        gap: 2px;
    }
}

/* Dark mode support */
[data-theme="dark"] .bottom-mobile-nav {
    background: var(--dark-card-bg);
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .mobile-nav-item {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .mobile-nav-item.active {
    color: var(--primary-orange);
}

/* Mobile More Menu Overlay */
.mobile-more-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-more-menu.active {
    display: flex;
    opacity: 1;
}

.more-menu-content {
    background: white;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.mobile-more-menu.active .more-menu-content {
    transform: translateY(0);
}

.more-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.more-menu-header h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
}

.more-menu-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s;
    border-radius: 8px;
}

.more-menu-close:hover {
    background: #f0f0f0;
    transform: rotate(90deg);
}

.more-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.more-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 10px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.more-menu-item:hover,
.more-menu-item:active {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.more-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    color: white;
    transition: all 0.3s;
}

.more-menu-item:hover .more-menu-icon {
    transform: scale(1.1);
}

.more-menu-icon svg {
    stroke: white;
}

.more-menu-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 480px) {
    .more-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .more-menu-item {
        padding: 15px 8px;
    }

    .more-menu-icon {
        width: 45px;
        height: 45px;
    }

    .more-menu-label {
        font-size: 0.7rem;
    }
}

/* Dark mode support for more menu */
[data-theme="dark"] .more-menu-content {
    background: var(--dark-card-bg);
}

[data-theme="dark"] .more-menu-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .more-menu-header h3 {
    color: var(--dark-text);
}

[data-theme="dark"] .more-menu-close {
    color: var(--dark-text);
}

[data-theme="dark"] .more-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .more-menu-item {
    background: rgba(255, 255, 255, 0.05);
    color: var(--dark-text);
}

/* User Login/Profile Buttons */
.login-btn,
.user-profile-btn,
.logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s;
    font-size: 14px;
}

.login-btn:hover,
.user-profile-btn:hover {
    background: var(--primary-orange);
    color: white;
}

.logout-btn {
    padding: 8px;
}

.logout-btn:hover {
    background: #f44336;
    color: white;
}

.user-profile-btn span {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Top Bar Login Button */
.top-login-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--primary-orange);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.top-login-btn:hover {
    background: #e64a19;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.top-login-btn svg {
    width: 14px;
    height: 14px;
}

/* Top Bar User Profile */
.top-user-profile {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.top-user-profile:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.top-user-profile svg {
    width: 14px;
    height: 14px;
}

.top-user-profile span {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-logout-btn {
    display: flex;
    align-items: center;
    padding: 5px 8px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.top-logout-btn:hover {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.top-logout-btn svg {
    width: 14px;
    height: 14px;
}

/* Logged In User Info */
.logged-in-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid #3b82f6;
}

.logged-in-user-info svg {
    color: #3b82f6;
    flex-shrink: 0;
}

.logged-in-user-info span {
    color: var(--text-dark);
    font-size: 14px;
}

.logged-in-user-info strong {
    color: #3b82f6;
    font-weight: 600;
}

/* Logged In Comment Info */
.logged-in-comment-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid #3b82f6;
}

.logged-in-comment-info svg {
    color: #3b82f6;
    flex-shrink: 0;
}

.logged-in-comment-info span {
    color: var(--text-dark);
    font-size: 14px;
}

.logged-in-comment-info strong {
    color: #3b82f6;
    font-weight: 600;
}

/* Q&A Ticker Badge */
.ticker-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--primary-orange);
    color: white;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 5px;
}

.ticker-meta {
    color: #999;
    font-size: 13px;
    margin-left: 5px;
}
        .blog-slider {
            width: 95%;
            position: relative;
            max-width: 800px;
            margin: auto;
            background: #fff;
            box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
            padding: 25px;
            border-radius: 25px;
            height: 400px;
            transition: all 0.3s;
        }

        @media screen and (max-width: 992px) {
            .blog-slider {
                max-width: 680px;
                height: 400px;
            }
        }

        @media screen and (max-width: 768px) {
            .blog-slider {
                min-height: 500px;
                height: auto;
                margin: 180px auto;
            }
        }

        @media screen and (max-height: 500px) and (min-width: 992px) {
            .blog-slider {
                height: 350px;
            }
        }

        .blog-slider__item {
            display: flex;
            align-items: center;
        }

        @media screen and (max-width: 768px) {
            .blog-slider__item {
                flex-direction: column;
            }
        }

        .blog-slider__item.swiper-slide-active .blog-slider__img img {
            opacity: 1;
            transition-delay: 0.3s;
        }

        .blog-slider__item.swiper-slide-active .blog-slider__content > * {
            opacity: 1;
            transform: none;
        }

        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
            transition-delay: 0.3s;
        }

        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
            transition-delay: 0.4s;
        }

        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
            transition-delay: 0.5s;
        }

        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
            transition-delay: 0.6s;
        }

        .blog-slider__img {
            width: 300px;
            flex-shrink: 0;
            height: 300px;
            background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
            box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
            border-radius: 20px;
            transform: translateX(-80px);
            overflow: hidden;
        }

        .blog-slider__img:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
            border-radius: 20px;
            opacity: 0.8;
        }

        .blog-slider__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0;
            border-radius: 20px;
            transition: all 0.3s;
        }

        @media screen and (max-width: 768px) {
            .blog-slider__img {
                transform: translateY(-50%);
                width: 90%;
            }
        }

        @media screen and (max-width: 576px) {
            .blog-slider__img {
                width: 95%;
            }
        }

        @media screen and (max-height: 500px) and (min-width: 992px) {
            .blog-slider__img {
                height: 270px;
            }
        }

        .blog-slider__content {
            padding-right: 25px;
        }

        @media screen and (max-width: 768px) {
            .blog-slider__content {
                margin-top: -80px;
                text-align: center;
                padding: 0 30px;
            }
        }

        @media screen and (max-width: 576px) {
            .blog-slider__content {
                padding: 0;
            }
        }

        .blog-slider__content > * {
            opacity: 0;
            transform: translateY(25px);
            transition: all 0.4s;
        }

        .blog-slider__code {
            color: #7b7992;
            margin-bottom: 15px;
            display: block;
            font-weight: 500;
        }

        .blog-slider__title {
            font-size: 24px;
            font-weight: 700;
            color: #0d0925;
            margin-bottom: 20px;
        }

        .blog-slider__text {
            color: #4e4a67;
            margin-bottom: 30px;
            line-height: 1.5em;
        }

        .blog-slider__button {
            display: inline-flex;
            background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
            padding: 15px 35px;
            border-radius: 50px;
            color: #fff;
            box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
            text-decoration: none;
            font-weight: 500;
            justify-content: center;
            text-align: center;
            letter-spacing: 1px;
        }

        @media screen and (max-width: 576px) {
            .blog-slider__button {
                width: 100%;
            }
        }

        .blog-slider .swiper-container-horizontal > .swiper-pagination-bullets,
        .blog-slider .swiper-pagination-custom,
        .blog-slider .swiper-pagination-fraction {
            bottom: 10px;
            left: 0;
            width: 100%;
        }

        .blog-slider__pagination {
            position: absolute;
            z-index: 21;
            right: 20px;
            width: 11px !important;
            text-align: center;
            left: auto !important;
            top: 50%;
            bottom: auto !important;
            transform: translateY(-50%);
        }

        @media screen and (max-width: 768px) {
            .blog-slider__pagination {
                transform: translateX(-50%);
                left: 50% !important;
                top: 205px;
                width: 100% !important;
                display: flex;
                justify-content: center;
                align-items: center;
            }
        }

        .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
            margin: 8px 0;
        }

        @media screen and (max-width: 768px) {
            .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
                margin: 0 5px;
            }
        }

        .blog-slider__pagination .swiper-pagination-bullet {
            width: 11px;
            height: 11px;
            display: block;
            border-radius: 10px;
            background: #062744;
            opacity: 0.2;
            transition: all 0.3s;
        }

        .blog-slider__pagination .swiper-pagination-bullet-active {
            opacity: 1;
            background: #fd3838;
            height: 30px;
            box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
        }

        @media screen and (max-width: 768px) {
            .blog-slider__pagination .swiper-pagination-bullet-active {
                height: 11px;
                width: 30px;
            }
        }

        .item{
  width: 800px;
  height: 600px;
  border-radius: 10px;
  background-color: rgba(243, 255, 243, 0.973);
  margin: 100 auto;
  margin-bottom: 100px;
}

.first{
  background-color: #2c60cf;
  width: 500px;
  height: 500px;
  transform: translate3d(-500px, 0, 0) rotate(45deg)
}

.second{
  background-color: #24d4c3;
  width: 100px;
  height: 100px;
  transform: translate3d(-100px, 0, 0) rotate(45deg)
}

.third{
  background-color: #ac751d;
  transform: translate3d(400px, -700px, 0) rotate(45deg)
}

.fourth{
  background-color: #57c7d6;
  width: 300px;
  height: 300px;
  transform: translate3d(200px, -200px, 0) rotate(45deg)
}

.fifth{
  background-color: #23ef60;
  transform: translate3d(-300px, -400px, 0) rotate(45deg)
}
.nefesolbackground {
  font-family: 'Texturina', serif;
  color: rgba(255, 255, 255, .1);
  background: linear-gradient(
    to right,
    rgb(76, 217, 105),
    rgb(52, 170, 220),
    rgb(88, 86, 217),
    rgb(255, 45, 83),
    rgb(255, 45, 83),
    rgb(88, 86, 217),
    rgb(52, 170, 220),
    rgb(76, 217, 105)
  );
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
  font-size: 1.3em;
  animation: sTransition 10s linear infinite;
}
@keyframes sTransition {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
/* ==================== DARK MODE - ADDITIONAL PAGES ==================== */

/* Questions Page Dark Mode */
[data-theme="dark"] .questions-header h1,
[data-theme="dark"] .questions-header p {
    color: var(--dark-text);
}

[data-theme="dark"] .question-card {
    background: var(--dark-card-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .question-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

[data-theme="dark"] .question-content h3 a {
    color: var(--dark-text);
}

[data-theme="dark"] .question-content p {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .question-stats {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .question-meta span {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .category-tag {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-orange);
}

[data-theme="dark"] .filter-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--dark-text);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .filter-btn.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    color: white;
}

/* Question Detail & Answer Form Dark Mode */
[data-theme="dark"] .answer-form-section {
    background: var(--dark-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .answer-form-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .answer-form-header h2 {
    color: var(--dark-text);
}

[data-theme="dark"] .answer-form-header p {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .logged-in-user-info {
    background: rgba(59, 130, 246, 0.15);
    border-left-color: #3b82f6;
}

[data-theme="dark"] .logged-in-user-info svg {
    color: #60a5fa;
}

[data-theme="dark"] .logged-in-user-info span {
    color: var(--dark-text);
}

[data-theme="dark"] .logged-in-user-info strong {
    color: #60a5fa;
}

[data-theme="dark"] .answer-form .form-group label {
    color: var(--dark-text);
}

[data-theme="dark"] .answer-form .form-group label svg {
    color: var(--primary-orange);
}

[data-theme="dark"] .answer-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--dark-text);
}

[data-theme="dark"] .answer-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .answer-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-orange);
}

[data-theme="dark"] .form-info {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .form-info svg {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .answer-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .answer-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .answer-author {
    color: var(--dark-text);
}

[data-theme="dark"] .answer-meta {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .answer-body {
    color: var(--dark-text);
}

[data-theme="dark"] .no-answers {
    color: var(--dark-text-muted);
}

/* Dreams Page Dark Mode */
[data-theme="dark"] .dreams-header h1,
[data-theme="dark"] .dreams-header p {
    color: var(--dark-text);
}

[data-theme="dark"] .category-filter {
    background: transparent;
}

[data-theme="dark"] .filter-tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--dark-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .filter-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--dark-text);
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .filter-tag.active {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

[data-theme="dark"] .dream-card {
    background: var(--dark-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .dream-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-orange);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

[data-theme="dark"] .dream-header h2 {
    color: var(--dark-text);
}

[data-theme="dark"] .dream-title {
    color: var(--dark-text);
}

[data-theme="dark"] .featured-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

[data-theme="dark"] .dream-description {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .dream-content {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .dream-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .dream-category {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-orange);
}

[data-theme="dark"] .dream-views {
    color: rgba(255, 255, 255, 0.6);
}

/* Dream Detail Page Dark Mode */
[data-theme="dark"] .dream-detail-container {
    color: var(--dark-text);
}

[data-theme="dark"] .breadcrumb {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .breadcrumb a {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .breadcrumb a:hover {
    color: var(--primary-orange);
}

[data-theme="dark"] .dream-detail-header {
    background: var(--dark-card-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .dream-detail-header h1 {
    color: var(--dark-text);
}

[data-theme="dark"] .dream-description-box {
    background: rgba(255, 107, 53, 0.15) !important;
    border-left-color: var(--primary-orange);
}

[data-theme="dark"] .dream-description-box p {
    color: var(--dark-text) !important;
}

[data-theme="dark"] .dream-interpretation {
    background: var(--dark-card-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .dream-interpretation h2 {
    color: var(--dark-text) !important;
    border-bottom-color: var(--primary-orange);
}

[data-theme="dark"] .dream-interpretation div {
    color: var(--dark-text) !important;
}

[data-theme="dark"] .dream-keywords {
    background: var(--dark-card-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .dream-keywords h3 {
    color: var(--dark-text) !important;
}

[data-theme="dark"] .dream-keywords span {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--dark-text) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .similar-dreams {
    background: var(--dark-card-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .similar-dreams h3 {
    color: var(--dark-text) !important;
}

[data-theme="dark"] .similar-dreams a {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--dark-text) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .similar-dreams a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

[data-theme="dark"] .similar-dreams a h4 {
    color: var(--dark-text) !important;
}

[data-theme="dark"] .comments-section {
    background: var(--dark-card-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .comments-section h3,
[data-theme="dark"] .comments-section h4 {
    color: var(--dark-text) !important;
}

[data-theme="dark"] .comment-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .comment-item strong {
    color: var(--dark-text) !important;
}

[data-theme="dark"] .comment-item p {
    color: var(--dark-text-muted) !important;
}

[data-theme="dark"] .comment-form-container input,
[data-theme="dark"] .comment-form-container textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--dark-text);
}

[data-theme="dark"] .comment-form-container input::placeholder,
[data-theme="dark"] .comment-form-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .comment-form-container input:focus,
[data-theme="dark"] .comment-form-container textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-orange);
    outline: none;
}

[data-theme="dark"] .comment-form-container button {
    background: var(--primary-orange) !important;
}

[data-theme="dark"] .comment-form-container button:hover {
    background: #e55a2b !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Gallery Page Dark Mode */
[data-theme="dark"] .gallery-header h1,
[data-theme="dark"] .gallery-header p {
    color: var(--dark-text);
}

[data-theme="dark"] .gallery-grid .gallery-item {
    background: var(--dark-card-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .gallery-item:hover {
    border-color: var(--primary-orange);
}

[data-theme="dark"] .gallery-item-title {
    color: var(--dark-text);
}

[data-theme="dark"] .gallery-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--dark-text);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    color: white;
}

/* Weather Page Dark Mode */
[data-theme="dark"] .weather-widget-mini {
    color: var(--dark-text);
}

[data-theme="dark"] .weather-display {
    color: var(--dark-text);
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .weather-display:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .weather-temp {
    color: var(--dark-text);
}

[data-theme="dark"] .weather-cities {
    background: #ff562b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .weather-city-item {
    color: var(--dark-text);
}

[data-theme="dark"] .weather-city-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .city-temp {
    color: var(--dark-text);
}

[data-theme="dark"] .weather-page h1,
[data-theme="dark"] .weather-page-header p {
    color: var(--dark-text);
}

[data-theme="dark"] .weather-header h1 {
    color: var(--dark-text);
}

[data-theme="dark"] .weather-header p {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .weather-card {
    background: var(--dark-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .weather-main {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .weather-info h2 {
    color: var(--dark-text);
}

[data-theme="dark"] .weather-footer {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .weather-info {
    color: var(--dark-text);
}

[data-theme="dark"] .weather-details {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .detail-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .detail-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.12));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .detail-label {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .detail-value {
    color: var(--dark-text);
}

[data-theme="dark"] .detail-icon {
    filter: brightness(1.2);
    opacity: 0.9;
}

/* Blog Slider Dark Mode */
[data-theme="dark"] .blog-slider {
    background: var(--dark-card-bg);
    box-shadow: 0px 14px 80px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .blog-slider__img {
    background-image: linear-gradient(147deg, #667eea 0%, #764ba2 74%);
    box-shadow: 4px 13px 30px 1px rgba(102, 126, 234, 0.3);
}

[data-theme="dark"] .blog-slider__img:after {
    background-image: linear-gradient(147deg, #667eea 0%, #764ba2 74%);
    opacity: 0.6;
}

[data-theme="dark"] .blog-slider__code {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .blog-slider__title {
    color: var(--dark-text);
}

[data-theme="dark"] .blog-slider__text {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .blog-slider__button {
    background-image: linear-gradient(147deg, var(--primary-orange) 0%, #e55a2b 74%);
    box-shadow: 0px 14px 80px rgba(255, 107, 53, 0.4);
}

[data-theme="dark"] .blog-slider__button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 17px 90px rgba(255, 107, 53, 0.5);
}

[data-theme="dark"] .blog-slider__pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .blog-slider__pagination .swiper-pagination-bullet-active {
    background: var(--primary-orange);
    box-shadow: 0px 0px 20px rgba(255, 107, 53, 0.5);
}

/* Events Page Dark Mode */
[data-theme="dark"] .events-page-header h1,
[data-theme="dark"] .events-page-header p {
    color: var(--dark-text);
}

[data-theme="dark"] .events-container {
    background: var(--dark-card-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .events-date-header h2 {
    color: var(--dark-text);
}

[data-theme="dark"] .event-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .event-text {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .holiday-badge {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-orange);
}

/* Fuel Prices Page Dark Mode */
[data-theme="dark"] .fuel-header h1,
[data-theme="dark"] .fuel-header p {
    color: var(--dark-text);
}

[data-theme="dark"] .fuel-card {
    background: var(--dark-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .fuel-header-info {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .fuel-header-info h2 {
    color: var(--dark-text);
}

[data-theme="dark"] .fuel-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.08));
    border: 2px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .fuel-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.12));
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .fuel-item.benzin:hover {
    border-color: #4CAF50;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

[data-theme="dark"] .fuel-item.motorin:hover {
    border-color: #FF9800;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

[data-theme="dark"] .fuel-item.lpg:hover {
    border-color: #2196F3;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

[data-theme="dark"] .fuel-icon {
    filter: brightness(1.2);
}

[data-theme="dark"] .fuel-info h3 {
    color: var(--dark-text);
}

[data-theme="dark"] .fuel-label {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .fuel-price .price {
    color: var(--dark-text);
}

[data-theme="dark"] .fuel-price .unit {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .fuel-info-box {
    background: rgba(255, 193, 7, 0.15);
    border-left-color: #FFC107;
}

[data-theme="dark"] .fuel-info-box p {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .fuel-footer {
    color: rgba(255, 255, 255, 0.5);
}

/* Common Widgets Dark Mode */
[data-theme="dark"] .qa-stat-item strong {
    color: var(--primary-orange);
}

[data-theme="dark"] .qa-stat-item span {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .popular-question-item {
    color: var(--dark-text);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .popular-question-item:hover {
    background: rgba(255, 107, 53, 0.1);
}

[data-theme="dark"] .pq-count {
    color: var(--dark-text-muted);
}

/* Loading and Empty States Dark Mode */
[data-theme="dark"] .loading,
[data-theme="dark"] .no-events-message,
[data-theme="dark"] .no-questions {
    color: var(--dark-text-muted);
}

/* Date Controls Dark Mode */
[data-theme="dark"] .date-input {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--dark-text);
}

[data-theme="dark"] .today-btn {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

[data-theme="dark"] .today-btn:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    color: white;
}

/* Stats and Counters Dark Mode */
[data-theme="dark"] .events-stats,
[data-theme="dark"] .stats-icon {
    color: var(--dark-text-muted);
}

[data-theme="dark"] #eventsCount {
    color: var(--primary-orange);
}

/* ==================== COOKIE CONSENT POPUP ==================== */
.cookie-consent {
    position: fixed;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: 90%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 99999;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid var(--border-color);
}

.cookie-consent.show {
    bottom: 20px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    font-size: 48px;
    flex-shrink: 0;
    animation: cookieRotate 3s ease-in-out infinite;
}

@keyframes cookieRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    color: #ff5722;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cookie-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.cookie-decline:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

/* Cookie Consent Dark Mode */
[data-theme="dark"] .cookie-consent {
    background: var(--dark-card-bg);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .cookie-text h4 {
    color: var(--dark-text);
}

[data-theme="dark"] .cookie-text p {
    color: var(--dark-text-muted);
}

[data-theme="dark"] .cookie-decline {
    color: var(--dark-text-muted);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .cookie-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--dark-text);
}

/* Cookie Consent Mobile */
@media (max-width: 768px) {
    .cookie-consent {
        max-width: 95%;
        padding: 20px;
        bottom: -400px;
    }

    .cookie-consent.show {
        bottom: 80px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-icon {
        font-size: 40px;
    }

    .cookie-text h4 {
        font-size: 1.1rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 16px;
    }

    .cookie-icon {
        font-size: 36px;
    }

    .cookie-text h4 {
        font-size: 1rem;
    }

    .cookie-text p {
        font-size: 0.8rem;
    }

    .cookie-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Post Reactions Mobile Responsive */
@media (max-width: 768px) {
    .post-reactions-wrapper {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .reactions-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .reaction-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .reaction-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .reaction-icon {
        font-size: 1.3rem;
    }

    .reaction-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .post-reactions-wrapper {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .reactions-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .reaction-buttons {
        gap: 0.8rem;
    }

    .reaction-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.6rem;
    }

    .reaction-icon {
        font-size: 1.2rem;
    }

    .reaction-label {
        font-size: 0.9rem;
    }

    .reaction-count {
        min-width: 24px;
        height: 24px;
        font-size: 0.85rem;
    }
}

/* Modern Section Header */
.section-header-modern {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    height: 40px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    border-bottom: 4px solid transparent;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        linear-gradient(90deg, #ff6b6b 0%, #ffd93d 15%, #6bcf7f 30%, #4d96ff 50%, #9333ea 70%, #ff6bcf 85%, #ff6b6b 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

@keyframes rainbowShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.section-header-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

.section-icon {
    font-size: 1.5rem;
    animation: fireAnimation 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@keyframes fireAnimation {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
    }
    50% {
        transform: scale(1.05) rotate(5deg);
    }
    75% {
        transform: scale(1.1) rotate(-5deg);
    }
}

.section-text {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-title-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: 0;
}

.section-subtitle {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}


/* Mobile Responsive for Modern Header */
@media (max-width: 768px) {
    .section-header-modern {
        height: auto;
        padding: 0.8rem 1.2rem;
    }

    .section-header-content {
        gap: 0.6rem;
    }

    .section-icon {
        font-size: 1.3rem;
    }

    .section-title-modern {
        font-size: 1rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .section-header-modern {
        padding: 0.6rem 1rem;
        border-radius: 15px;
    }

    .section-header-content {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }

    .section-text {
        flex-direction: column;
        gap: 0.2rem;
    }

    .section-icon {
        font-size: 1.2rem;
    }

    .section-title-modern {
        font-size: 0.95rem;
    }

    .section-subtitle {
        font-size: 0.7rem;
    }
}

        /* Favorite Button Styles */
        .favorite-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .favorite-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.25);
        }
        .favorite-btn .favorite-icon {
            width: 22px;
            height: 22px;
            stroke: #FF5722;
            fill: none;
            transition: all 0.3s ease;
        }
        .favorite-btn.favorited .favorite-icon {
            fill: #FF5722;
            stroke: #FF5722;
            animation: heartBeat 0.3s ease;
        }
        @keyframes heartBeat {
            0%, 100% { transform: scale(1); }
            25% { transform: scale(1.3); }
            50% { transform: scale(1.1); }
        }
