/* ========== ROOT DƏYİŞƏNLƏR ========== */
:root {
    --primary: #00f2ff;
    --primary-dark: #00b8d4;
    --primary-glow: rgba(0, 242, 255, 0.3);
    --bg: #0a0e17;
    --surface: #121826;
    --surface-light: #1e2a3a;
    --text: #ffffff;
    --text-dim: #a0aec0;
    --text-bright: #f0f5ff;
    --border: rgba(0, 242, 255, 0.1);
    --border-hover: rgba(0, 242, 255, 0.3);
    --shadow: 0 10px 30px rgba(0,0,0,0.5);
    --shadow-hover: 0 20px 40px rgba(0,242,255,0.15);
    --transition-slow: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-fast: 0.3s ease;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
}

body.light-theme {
    --bg: #f4f7f6;
    --surface: #ffffff;
    --surface-light: #eef2f6;
    --text: #0b1e2e;
    --text-dim: #1e3a5f;
    --text-bright: #000000;
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 242, 255, 0.5);
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(0,242,255,0.1);
}

/* ========== GLOBAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, 
                border-color 0.3s ease, 
                color 0.2s ease,
                transform 0.3s ease,
                box-shadow 0.3s ease;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
    font-size: 16px;
}

#particles-js {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.8;
}

/* ========== TİPOQRAFİYA TƏKMİLLƏŞDİRMƏLƏRİ ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { font-size: clamp(1rem, 2vw, 1.1rem); }

/* ========== NAVİQASİYA ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    border-bottom: 1px solid var(--border);
}

body.light-theme nav {
    background: rgba(255, 255, 255, 0.85);
    border-bottom-color: var(--border);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links.desktop-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.controls {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

#theme-toggle {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#theme-toggle:hover {
    transform: rotate(45deg);
    border-color: var(--primary);
    background: var(--primary);
    color: #000;
}

.lang-switcher {
    display: flex;
    gap: 4px;
    background: var(--surface);
    padding: 4px;
    border-radius: 30px;
    border: 1px solid var(--border);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    padding: 6px 12px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
}

/* ========== MOBİL MENU ========== */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

body.light-theme .mobile-overlay {
    background: rgba(255, 255, 255, 0.98);
}

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

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
    border-color: var(--primary);
    background: var(--primary);
    color: #000;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(30px);
    animation: slideIn 0.5s forwards;
}

.mobile-overlay.active .mobile-nav-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-overlay.active .mobile-nav-links li:nth-child(2) { animation-delay: 0.2s; }
.mobile-overlay.active .mobile-nav-links li:nth-child(3) { animation-delay: 0.3s; }
.mobile-overlay.active .mobile-nav-links li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-links a {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover::before {
    width: 80%;
}

.mobile-nav-links a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 8% 0;
    position: relative;
}

.badge {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 1px solid var(--border);
    animation: fadeInUp 1s ease;
}

.hero h1 {
    animation: fadeInUp 1s ease 0.2s both;
}

.hero p {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-btns {
    animation: fadeInUp 1s ease 0.6s both;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .hero h1 {
    background: linear-gradient(135deg, #000, var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 650px;
    margin: 0 auto 3rem;
    color: var(--text-dim);
    font-size: 1.2rem;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    border: none;
    box-shadow: 0 5px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

/* ========== BÖLMƏLƏR ========== */
section {
    padding: 120px 8%;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 4rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* ========== GRID & CARDS ========== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 242, 255, 0.05));
    pointer-events: none;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.read-meta {
    color: var(--primary);
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    transition: opacity 0.3s ease;
}

.card:hover .read-meta {
    opacity: 1;
}

/* ========== OWNER CARD ========== */
.owner-card {
    background: var(--surface);
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    padding: 4rem;
    gap: 4rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.owner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,242,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.owner-info {
    position: relative;
    z-index: 1;
}

.owner-info h2 {
    text-align: left;
    margin: 0.5rem 0 1rem;
    font-size: 2.5rem;
    color: var(--text);
}

.owner-info p {
    color: var(--text-dim);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.socials a {
    color: var(--text);
    font-size: 2rem;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--surface-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.socials a:hover {
    color: var(--primary);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary);
    background: rgba(0, 242, 255, 0.1);
}

/* ========== FOOTER ========== */
footer {
    padding: 4rem 8% 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
}

.footer-bottom {
    opacity: 0.7;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.footer-bottom:hover {
    opacity: 1;
}

/* ========== MƏQALƏ SƏHİFƏSİ (ARTICLE) ========== */
.article-wrapper {
    max-width: 900px;
    margin: 140px auto 80px;
    padding: 0 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 60px;
}

.article-header h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    color: var(--text-dim);
    font-size: 1rem;
    flex-wrap: wrap;
    background: var(--surface);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    display: inline-flex;
    margin: 0 auto;
}

.article-meta i {
    margin-right: 8px;
    color: var(--primary);
}

.article-content {
    line-height: 1.9;
    font-size: 1.15rem;
}

.article-content h2 {
    font-size: 2.2rem;
    margin: 4rem 0 2rem;
    text-align: left;
    left: 0;
    transform: none;
    color: var(--primary);
}

.article-content h2::after {
    left: 0;
    transform: none;
    width: 100px;
    height: 4px;
}

.article-content h3 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    color: var(--text);
}

.article-content p {
    margin-bottom: 2rem;
    color: var(--text-dim);
}

.article-content ul,
.article-content ol {
    margin: 2rem 0 3rem 2.5rem;
    color: var(--text-dim);
}

.article-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.article-content li::marker {
    color: var(--primary);
}

.article-content strong {
    color: var(--primary);
    font-weight: 600;
}

.article-content .highlight-box {
    background: linear-gradient(145deg, var(--surface), var(--surface-light));
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--primary);
    margin: 3rem 0;
    box-shadow: var(--shadow);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 40px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 40px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    background: var(--surface);
}

.back-link:hover {
    border-color: var(--primary);
    background: rgba(0, 242, 255, 0.1);
    transform: translateX(-5px);
}

/* ========== PAYLAŞIM DÜYMƏLƏRİ ========== */
.share-section {
    text-align: center;
    margin: 6rem 0 4rem;
    padding: 3rem;
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.share-title {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modern-share-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.modern-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--surface-light);
    border: 2px solid var(--border);
    color: var(--text);
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.modern-share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: scale(0);
    transition: transform 0.4s ease;
    border-radius: 50%;
    z-index: -1;
}

.modern-share-btn:hover {
    color: #000;
    border-color: var(--primary);
    transform: translateY(-10px) scale(1.1);
}

.modern-share-btn:hover::before {
    transform: scale(1);
}

.modern-share-btn.linkedin:hover { color: #0077b5; }
.modern-share-btn.twitter:hover { color: #000000; }
.modern-share-btn.facebook:hover { color: #1877f2; }
.modern-share-btn.telegram:hover { color: #0088cc; }
.modern-share-btn.whatsapp:hover { color: #25D366; }
.modern-share-btn.email:hover { color: #EA4335; }

/* ========== RESPONSİV TƏKMİLLƏŞDİRMƏLƏR ========== */
@media (max-width: 1200px) {
    nav, section, .hero {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 992px) {
    .nav-links.desktop-menu {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    .owner-card {
        padding: 3rem;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        height: 70px;
    }
    .hero {
        padding-top: 100px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    .owner-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }
    .owner-info h2 {
        text-align: center;
    }
    .socials {
        justify-content: center;
    }
    section {
        padding: 80px 5%;
    }
    h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    .card {
        padding: 2rem;
    }
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        padding: 1.5rem;
    }
    .article-content {
        font-size: 1.1rem;
    }
    .article-content h2 {
        font-size: 2rem;
    }
    .article-content h3 {
        font-size: 1.5rem;
    }
    .modern-share-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
    .controls {
        gap: 0.8rem;
    }
    #theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .btn {
        padding: 14px 30px;
        width: 100%;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .article-wrapper {
        padding: 0 15px;
        margin: 120px auto 60px;
    }
    .article-header h1 {
        font-size: 2rem;
    }
    .article-content h2 {
        font-size: 1.7rem;
    }
    .article-content p {
        font-size: 1rem;
        line-height: 1.8;
    }
    .share-section {
        padding: 2rem;
    }
    .modern-share-buttons {
        gap: 1rem;
    }
    .modern-share-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* ========== DARK THEME GÜCLƏNDİRMƏ ========== */
body.dark-theme .card p,
body.dark-theme .article-content p {
    color: #e2e8f0;
}

body.dark-theme .article-meta {
    background: rgba(18, 24, 38, 0.8);
}

/* ========== UTILITY KLASSLAR ========== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow {
    box-shadow: 0 0 30px var(--primary-glow);
}

.animate-pulse {
    animation: pulse 2s infinite;
}

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

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========== SEÇİM RƏNGİ ========== */
::selection {
    background: var(--primary);
    color: #000;
}

::-moz-selection {
    background: var(--primary);
    color: #000;
}

/* ========== LIGHT MODA XÜSUSİ DÜZƏLİŞLƏR – OXUNAQLIQ ARTIRMA ========== */
body.light-theme {
    /* Əsas mətn rənglərini tündləşdir */
    --text: #0b1e2e;           /* tünd göy – əla kontrast */
    --text-dim: #1e3a5f;       /* tünd, aydın oxunan */
}

/* Bütün mətn elementləri üçün gücləndirilmiş rəng */
body.light-theme p,
body.light-theme .card p,
body.light-theme .article-content p,
body.light-theme .hero p,
body.light-theme .owner-info p,
body.light-theme .footer-bottom {
    color: #0b1e2e !important;        /* tünd göy – maksimum kontrast */
}

body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme .card h3,
body.light-theme .owner-info h3 {
    color: #0a1a2a !important;        /* daha tünd – başlıqlar üçün */
}

body.light-theme .badge {
    color: #005f8c;                    /* tünd mavi – badge üçün */
    background: rgba(0, 95, 140, 0.1);
}

body.light-theme .read-meta {
    color: #005f8c !important;         /* tarixlər üçün tünd mavi */
}

body.light-theme .btn-outline {
    color: #005f8c;                    /* outline düymə rəngi */
    border-color: #005f8c;
}

body.light-theme .btn-outline:hover {
    background: #005f8c;
    color: white;
}

body.light-theme .article-meta {
    color: #1e3a5f;                    /* meta məlumatlar (tarix, müəllif) */
}

body.light-theme .article-meta i {
    color: #005f8c;                    /* iconlar üçün */
}

body.light-theme .back-link {
    color: #005f8c;
    border-color: rgba(0, 95, 140, 0.3);
}

body.light-theme .back-link:hover {
    background: rgba(0, 95, 140, 0.1);
}

/* Xüsusi olaraq məqalə səhifəsi üçün */
body.light-theme .article-content p,
body.light-theme .article-content li {
    color: #0b1e2e !important;
}

body.light-theme .article-content h2 {
    color: #003f6f !important;         /* daha tünd mavi */
}

body.light-theme .article-content h2::after {
    background: #005f8c;                /* mavi xətt */
}

body.light-theme .highlight-box {
    background: #e6f0fa;                /* açıq mavi fon */
    border-left-color: #005f8c;
}

/* Sosial media ikonları üçün */
body.light-theme .socials a {
    color: #1e3a5f;
    border-color: rgba(0, 95, 140, 0.2);
}

body.light-theme .socials a:hover {
    color: #005f8c;
    border-color: #005f8c;
}

/* Paylaşım düymələri üçün */
body.light-theme .share-section {
    background: #ffffff;
    border-color: rgba(0, 95, 140, 0.2);
}

body.light-theme .share-title {
    color: #005f8c;
}

body.light-theme .modern-share-btn {
    background: #f0f5fa;
    border-color: rgba(0, 95, 140, 0.2);
    color: #1e3a5f;
}

body.light-theme .modern-share-btn:hover {
    color: white;
}

/* Mobil menyu üçün */
body.light-theme .mobile-nav-links a {
    color: #0b1e2e;
}

body.light-theme .mobile-nav-links a:hover {
    color: #005f8c;
}
