/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@media (prefers-color-scheme: dark) {
  meta[name="theme-color"] {
    content: #540000; /* Koyu modda tema rengi */
  }
}

/* Tarayıcıya zorunlu koyu mod bildirimi */
@media (prefers-color-scheme: dark) {
:root {
  color-scheme: dark;
}
}
::selection {
  background: rgba(255, 10, 10, 0.02);
  color: #fff;
  text-shadow:
0 0 2px #cc0000,
0 0 5px #cc1414,
0 0 10px #cc3d3d,
0 0 20px #cc0000,
0 0 10px #cc0000;

  font-weight: 800;
  letter-spacing: 0.04em;
}
:root {
    --primary-red: #c41e3a;
    --secondary-black: #0a0a0a;
    --accent-white: #f8f8f8;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --border-color: rgba(255, 255, 255, 0.15);
    --hover-red: #e02424;
    --dark-red: #8b1529;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

@font-face {
    font-family: 'Uni SansKalin';
    src: url('../gorsel/uni-sans-kalin.otf') format('opentype');
}

@font-face {
    font-family: 'mont';
    src: url('../gorsel/mont.ttf') format('truetype');
}

body {
    font-family: 'mont', 'Arial', sans-serif; 
    font-weight: 510;
    line-height: 1.8;
    color: var(--text-primary);
    background: linear-gradient(135deg, #750014 -25%, #1a0a0a 50%, #0a0a0a 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Fade Overlay */
.fade-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-black);
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Article Cover Image */
.article-cover-image {
    width: calc(100% + 160px);
    margin-left: -80px;
    margin-right: -80px;
    margin-top: 10px;
    margin-bottom: 32px;
    height: clamp(200px, 55vh, 700px);


    overflow: visible;
    position: relative;
}

.article-cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-top: 50px;
    filter: brightness(0.85) contrast(1.1);
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 80px,
        black calc(100% - 550px),
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 80px,
        black calc(100% - 550px),
        transparent 100%
    );
    -webkit-user-drag: none;
    pointer-events: none;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: linear-gradient(165deg, rgba(196, 30, 58, 0.15) 0%, rgba(10, 10, 10, 0.95) 50%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(20px);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.7);
    border-left: 2px solid rgba(133, 0, 22, 0.4);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(196, 30, 58, 0.2);
    border: 2px solid rgba(196, 30, 58, 0.4);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image Gallery */
.image-gallery {
    margin: 48px 0;
    position: relative;
}

.gallery-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    -webkit-user-drag: none;
    pointer-events: none;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 30, 58, 0.4);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}
a { color: #b30000; text-decoration: none; cursor: pointer; }
a:hover { color: #ff1a1a; text-decoration: underline; }
/* Correction Block */
.correction-block {
    margin: 48px 0;
    padding: 24px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.wrong-approach,
.right-approach {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wrong-approach {
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.right-approach {
    background: rgba(0, 196, 88, 0.1);
    border: 1px solid rgba(0, 196, 88, 0.3);
}

.cross-icon {
    color: #c41e3a;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon {
    color: #00c458;
    flex-shrink: 0;
    margin-top: 2px;
}

.wrong-approach p,
.right-approach p {
    font-family: 'mont', 'Arial', sans-serif;
    font-weight: 510;
    font-size: 18.5px;
    line-height: 1.8;
    margin: 0;
    color: white;
}

.strikethrough {
    text-decoration: line-through;
    text-decoration-color: #c41e3a;
    text-decoration-thickness: 2px;
    opacity: 0.7;
}

.arrow-divider {
    display: flex;
    justify-content: center;
    padding: 12px 0;
}

.arrow-divider svg {
    color: var(--primary-red);
    opacity: 0.6;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .correction-block {
        padding: 20px 16px !important;
        margin: 36px 0 !important;
    }

    .wrong-approach,
    .right-approach {
        padding: 14px !important;
        gap: 12px !important;
    }

    .cross-icon,
    .check-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .wrong-approach p,
    .right-approach p {
        font-size: 8px !important;
        line-height: 1.6 !important;
    }

    .arrow-divider {
        padding: 10px 0 !important;
    }

    .arrow-divider svg {
        width: 24px !important;
        height: 24px !important;
    }
}
.gallery-nav:hover {
    opacity: 1;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-color: var(--hover-red);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.5);
}

.gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-prev {
    left: 16px;
}

.gallery-next {
    right: 16px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.3);
    border: 1px solid rgba(196, 30, 58, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot:hover {
    background: rgba(196, 30, 58, 0.6);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: var(--primary-red);
    border-color: var(--hover-red);
    box-shadow: 0 0 8px rgba(196, 30, 58, 0.6);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .gallery-slide {
        min-height: 280px;
    }
    
    .gallery-slide img {
        max-height: 280px !important;
        min-height: 280px;
        object-fit: cover !important;
        width: 100%;
    }
    
    .gallery-nav {
        width: 36px !important;
        height: 36px !important;
        opacity: 0.8 !important;
    }
    
    .gallery-nav svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .gallery-prev {
        left: 8px !important;
    }
    
    .gallery-next {
        right: 8px !important;
    }
    
    .gallery-dot {
        width: 8px !important;
        height: 8px !important;
    }
    
    .gallery-dots {
        gap: 8px !important;
        margin-top: 16px !important;
    }
}

/* Tablet için orta ayar */
@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-slide img {
        max-height: 450px !important;
    }
}
/* Audio Player Block - Küçültülmüş */
.audio-player-block {
    margin: 40px 0;
    padding: 15px;
    background: linear-gradient(135deg, rgba(117, 0, 19, 0.401) 0%, rgba(47, 4, 4, 0.85) 100%);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.audio-player-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--hover-red));
}
/* CSS kodunu yazi.css dosyanıza ekleyin */

.audio-player-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 15px;
}

.audio-icon {
    color: var(--primary-red);
    flex-shrink: 0;
    width:  23px;
    height: 23px;
    padding-right: 7px;
    margin-top:22px;
}

.audio-player-header h3 {
    font-family: 'Uni SansKalin', 'Arial', sans-serif;
    font-size: 14px;
    color: var(--accent-white);
    line-height: 1.3; /* Bu satırı ekle */
}
h3 span {
    font-weight: light !important;
}
.audio-player-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Waveform Canvas */
.waveform-canvas {
    width: 100%;
    height: 70px;
    background: rgba(10, 10, 10, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(196, 30, 58, 0.2);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.waveform-canvas:hover {
    border-color: rgba(196, 30, 58, 0.5);
}

/* Audio Controls */
.audio-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.audio-btn {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border: 2px solid rgba(196, 30, 58, 0.4);
    border-radius: 50%;
    color: var(--accent-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.audio-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.5);
    border-color: var(--hover-red);
}

.audio-btn:active {
    transform: scale(0.95);
}

.audio-time-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'mont', 'Arial', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    flex-shrink: 0;
    min-width: 80px;
}

.time-separator {
    color: var(--primary-red);
    font-weight: 700;
}

.audio-progress-bar {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    overflow: visible;
}

.audio-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--hover-red));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.audio-progress-handle {
    width: 14px;
    height: 14px;
    background: var(--accent-white);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    cursor: grab;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audio-progress-bar:hover .audio-progress-handle {
    opacity: 1;
}

.audio-progress-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .audio-player-block {
        padding: 20px 16px !important;
        margin: 32px 0 !important;
    }

    .audio-player-header h3 {
        font-size: 11px !important;
    }

    .audio-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .waveform-canvas {
        height: 55px !important;
    }

    .audio-controls {
        flex-wrap: wrap;
        gap: 12px !important;
    }

    .audio-btn {
        width: 38px !important;
        height: 38px !important;
    }

    .audio-btn svg {
        width: 18px !important;
        height: 18px !important;
    }

    .audio-time-info {
        font-size: 9px !important;
        min-width: 70px !important;
    }

    .audio-progress-bar {
        width: 100%;
        order: 3;
    }

    .audio-progress-handle {
        width: 12px !important;
        height: 12px !important;
    }
}
/* Inline SVG Icon */
.inline-svg-icon {
    position: absolute;
    left: 0;
    top: 2px;
    width: 48px;
    height: auto;
       filter: drop-shadow(0 2px 4px rgba(196, 30, 58, 0.3));
    transition: all 0.3s ease;
}

.inline-svg-icon:hover {
    opacity: 1;
    transform: translateX(-2px);
}

/* Mobil için */
@media (max-width: 768px) {
    .inline-svg-icon {
        width: 36px !important;
        top: 0px !important;
    }
    
    p[style*="padding-left: 60px"] {
        padding-left: 45px !important;
    }
}

/* Video Player Block */
.video-player-block {
    margin: 48px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(117, 0, 19, 0.4) 0%, rgba(47, 4, 4, 0.85) 100%);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.video-player-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--hover-red));
}

.video-player-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-icon {
    color: var(--primary-red);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.video-player-header h3 {
    font-family: 'Uni SansKalin', 'Arial', sans-serif;
    font-size: 16px;
    color: var(--accent-white);
    line-height: 1.4;
    margin: 0;
}

.video-player-header h3 span {
    font-family: 'mont', 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
}

.video-player-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-overlay.hidden {
    opacity: 0;
}

.video-play-overlay {
    width: 80px;
    height: 80px;
    background: rgba(196, 30, 58, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    backdrop-filter: blur(5px);
}

.video-play-overlay:hover {
    transform: scale(1.1);
    background: rgba(224, 36, 36, 0.95);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.6);
}

.video-play-overlay svg {
    margin-left: 4px;
}

.video-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.video-btn {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border: 2px solid rgba(196, 30, 58, 0.4);
    border-radius: 6px;
    color: var(--accent-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.video-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.5);
    border-color: var(--hover-red);
}

.video-btn:active {
    transform: scale(0.95);
}

.video-time-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'mont', 'Arial', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    flex-shrink: 0;
    min-width: 90px;
}

.video-progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    overflow: visible;
}

.video-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--hover-red));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.video-progress-handle {
    width: 14px;
    height: 14px;
    background: var(--accent-white);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    cursor: grab;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-progress-bar:hover .video-progress-handle {
    opacity: 1;
}

.video-progress-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.2);
}

@media (max-width: 768px) {
    .video-player-block {
        padding: 12px !important;
        margin: 32px 0 !important;
    }

    .video-player-header {
        margin-bottom: 10px !important;
        padding-bottom: 8px !important;
    }

    .video-player-header h3 {
        font-size: 9px !important;
        line-height: 1.3 !important;
    }

    .video-player-header h3 span {
        font-size: 7px !important;
        margin-top: 2px !important;
    }

    .video-icon {
        width: 16px !important;
        height: 16px !important;
        margin-right: 8px !important;
    }

    .video-play-overlay {
        width: 50px !important;
        height: 50px !important;
        border-width: 2px !important;
    }

    .video-play-overlay svg {
        width: 38px !important;
        height: 38px !important;
    }

    .video-controls {
        gap: 6px !important;
        padding: 5px 6px !important;
        flex-wrap: wrap;
    }

    .video-btn {
        width: 28px !important;
        height: 28px !important;
        border-width: 1.5px !important;
    }

    .video-btn svg {
        width: 14px !important;
        height: 14px !important;
    }

    .video-time-info {
        font-size: 8px !important;
        min-width: 65px !important;
        gap: 4px !important;
    }

    .video-progress-bar {
        width: 100%;
        order: 3;
        height: 4px !important;
    }

    .video-progress-handle {
        width: 11px !important;
        height: 11px !important;
        border-width: 1.5px !important;
    }
}
.sidebar-close:hover {
    background: var(--primary-red);
    border-color: var(--hover-red);
    transform: rotate(90deg);
}

.sidebar-content {
    padding: 80px 32px 32px;
}

.sidebar-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-header h2 {
    font-family: 'Uni SansKalin', 'Arial', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu-item {
    margin-bottom: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'mont', 'Arial', sans-serif; 
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    background: rgba(196, 30, 58, 0.05);
    border: 1px solid rgba(196, 30, 58, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sidebar-link:hover {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.25) 0%, rgba(196, 30, 58, 0.15) 100%);
    border-color: rgba(196, 30, 58, 0.4);
    color: var(--accent-white);
    transform: translateX(-4px);
    box-shadow: 4px 0 12px rgba(196, 30, 58, 0.3);
}

.sidebar-icon {
    flex-shrink: 0;
    color: var(--primary-red);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-link:hover .sidebar-icon {
    transform: scale(1.1);
}

.sidebar-menu-item-external .sidebar-link {
    border-top: 2px solid rgba(196, 30, 58, 0.3);
    margin-top: 16px;
}

.external-icon {
    margin-left: auto;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.sidebar-link:hover .external-icon {
    opacity: 1;
    color: var(--primary-red);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header */
.header {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 100%);
    backdrop-filter: blur(10px);
    padding: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-red);
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* Menu Toggle Button */
.menu-toggle {
    width: 50px;
    height: 50px;
    background: rgba(196, 30, 58, 0.2);
    border: 2px solid rgba(196, 30, 58, 0.4);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.menu-toggle:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-color: var(--hover-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.menu-toggle-line {
    width: 24px;
    height: 2px;
    background-color: var(--accent-white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover .menu-toggle-line {
    width: 28px;
}

.menu-toggle.active .menu-toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Main Content */
.main-content {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}
.article-image-block .small-image {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}
/* Article Image Block */
.article-image-block {
    margin: 48px 0;
    position: relative;
}

.article-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(196, 30, 58, 0.3);
}


.image-caption {
    font-family: 'mont', 'Arial', sans-serif;
    font-weight: 510;
    font-size: 15px;
    color: var(--text-secondary);
    text-align: left;
    margin-top: 16px;
    font-style: italic;
    opacity: 0.85;
    padding-left: 20px;
}

/* Article Container */
.article-container {
    max-width: 1150px;
    margin: 0 auto;
    background: linear-gradient(165deg, rgba(196, 30, 58, 0.15) 0%, rgba(10, 10, 10, 0.85) 50%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 60px 80px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(196, 30, 58, 0.3);
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(118, 0, 0, 0.3);
}

.article-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #af0000, var(--dark-red));
    border-radius: 8px 0 0 8px;
}

/* Article Header */
.article-header {
    margin-bottom: 48px;
    padding-bottom: 22px;
    border-bottom: 2px solid var(--border-color);
}

.article-title {
    font-family: 'Uni SansKalin', 'Arial', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
/* Font Size Controls */
.font-size-controls {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.font-size-btn {
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.font-size-btn:hover {
    background: rgba(196, 30, 58, 0.9);
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.25);
}

.font-size-btn:active {
    transform: translateX(2px) scale(0.96);
}

.font-size-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobil için gizle */
@media (max-width: 768px) {
    .font-size-controls {
        display: none;
    }
        .article-image-block[style*="flex-direction: column"] img[src="kore-isci-partisi.png"] {
        max-width: 120px !important;
    }
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'mont', 'Arial', sans-serif; 
    font-weight: 510;
    font-size: 14px;
    color: var(--text-secondary);
}

.article-divider {
    color: var(--primary-red);
    font-weight: 700;
}

/* Article Content - DESKTOP VARSAYILAN AYARLAR */
.article-content {
    font-family: 'mont', 'Arial', sans-serif; 
    font-weight: 510;
    font-size: 18px;
    line-height: 1.9;
}

.lead-paragraph {
    font-family: 'mont', 'Arial', sans-serif; 
    font-weight: 510;
    font-size: 20px;
    line-height: 1.7;
    color: var(--accent-white);
    padding-left: 20px;
    border-left: 4px solid var(--primary-red);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
.lead-paragraph b {
    font-weight: 700;
    color: #be0000;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.article-content h2 {
    font-family: 'Uni SansKalin', 'Arial', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-white);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--hover-red));
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.5);
}

.article-content h3 {
    font-family: 'Uni SansKalin', 'Arial', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-white);
    margin-top: 32px;
    margin-bottom: 16px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.article-content h4 {
    font-family: 'Uni SansKalin', 'Arial', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-white);
    margin-top: 5px;
    margin-bottom: 16px;
    line-height: 1.35;
    position: relative;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.article-content h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 45px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--hover-red));
    box-shadow: 0 0 8px rgba(196, 30, 58, 0.4);
}

.article-content p {
    font-family: 'mont', 'Arial', sans-serif; 
    font-weight: 510;
    margin-bottom: 24px;
    text-align: justify;
    color: var(--text-secondary);
    font-size: 17px;
}
.article-content span{
    font-weight: lighter;
    font-size: 14px;
    font-style: italic;
    display: block;
    line-height: 1.1;
    margin-top: 4px;
}
.article-content strong {
    color: var(--accent-white);
    font-weight: 700;
}

/* Blockquote */
.article-quote {
    font-family: 'mont', 'Arial', sans-serif; 
    font-weight: 510;
    margin-bottom: 70px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.25) 0%, rgba(10, 10, 10, 0.6) 100%);
    backdrop-filter: blur(10px);
    border-left: 5px solid var(--primary-red);
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: var(--accent-white);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}

.article-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 8px;
    font-size: 80px;
    color: #ff0000;
    opacity: 0.25;
    font-family: 'mont', serif;
    line-height: 1;
}

.article-quote span{
    font-weight: lighter;
    font-size: 14px;
    font-style: italic;
    display: block;
    line-height: 1.1;
    margin-top: 4px;
}
.article-quote b {
    color: #b40000;
    font-weight: 700;
}

.article-quote b {
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Highlight Box */
.article-highlight {
    margin: 48px 0;
    padding: 32px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.3) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(15px);
    color: var(--accent-white);
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(196, 30, 58, 0.4);
    border: 1px solid rgba(196, 30, 58, 0.4);
    border-top: 3px solid var(--primary-red);
}

.article-highlight h3 {
    font-family: 'Uni SansKalin', 'Arial', sans-serif;
    color: var(--accent-white);
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 16px;
}

.article-highlight p {
    font-family: 'mont', 'Arial', sans-serif; 
    font-weight: 510;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Article Footer */
.article-footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
}

.share-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-label {
    font-family: 'mont', 'Arial', sans-serif; 
    font-weight: 510;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2) 0%, rgba(10, 10, 10, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(196, 30, 58, 0.4);
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.share-btn:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-color: var(--hover-red);
    color: var(--accent-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.5);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    color: var(--text-secondary);
    padding: 32px 0;
    border-top: 2px solid var(--primary-red);
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer p {
    font-family: 'mont', 'Arial', sans-serif; 
    font-weight: 510;
    font-size: 15px;
    margin: 0;
    font-weight: bold;
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-container {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrollbar Styling - Tüm Sayfa İçin */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-left: 1px solid rgba(196, 30, 58, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c41e3a 0%, #8b1529 100%);
    border-radius: 6px;
    border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e02444 0%, #c41e3a 100%);
    box-shadow: 0 0 8px rgba(196, 30, 58, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: #8b1529;
}

::-webkit-scrollbar-corner {
    background: #0a0a0a;
}

/* Firefox için */
* {
    scrollbar-width: thin;
    scrollbar-color: #c41e3a #0a0a0a;
}

/* ============================================
   MOBİL RESPONSIVE - 768px VE ALTI
   ============================================ */
@media (max-width: 768px) {
    /* Sidebar Ayarları */

    .header {
        padding: 10px 0 !important;
    }
    
    .container {
        padding: 0 16px !important;
    }
    
    .logo {
        height: 35px !important;
    }
    
    .menu-toggle {
        width: 40px !important;
        height: 40px !important;
        gap: 4px !important;
    }
    
    .menu-toggle-line {
        width: 15px !important;
        height: 1.5px !important;
    }
    
    .menu-toggle:hover .menu-toggle-line {
        width: 22px !important;
    }
    
    .sidebar {
        width: 300px;
        right: -300px;
    }

    .sidebar-content {
        padding: 70px 24px 24px;
    }
    
    .sidebar-header h2 {
        font-size: 26px !important;
    }
    
    .sidebar-link {
        font-size: 14px !important;
    }

    /* Article Container */
    .article-container {
        padding: 40px 32px !important;
        margin: 0 16px !important;
    }

    /* Cover Image */
    .article-cover-image {
        width: calc(100% + 64px) !important;
        margin-left: -32px !important;
        margin-right: -32px !important;
        margin-top: 40px !important;
        height: 280px !important;
    }
    
    .article-cover-image img {
        mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            black 60px,
            black calc(100% - 90px),
            transparent 100%
        ) !important;
        -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            black 60px,
            black calc(100% - 90px),
            transparent 100%
        ) !important;
    }

    /* Article Image */
    .article-image-block {
        margin: 36px 0 !important;
    }

    /* Başlıklar */
    .article-title {
        font-size: 21px !important;
    }

    .article-meta {
        font-size: 10px !important;
    }

    /* Ana İçerik Font Boyutları */
    .lead-paragraph {
        font-size: 9px !important;
        padding-left: 16px !important;
        margin-bottom: -110px !important;
    }

    .article-content {
        font-size: 8px !important;
    }

    .article-content h2 {
        font-size: 16px !important;
        margin-top: 36px !important;
    }

    .article-content h3 {
        font-size: 13px !important;
        margin-top: 28px !important;
    }

        .article-content h4 {
        font-size: 13px !important;
        margin-top: 28px !important;
    }

    .article-content p {
        font-size: 8px !important;
        margin-bottom: 20px !important;
    }
    
    .article-content span {
        font-size: 12px !important;
    }

    /* Quote */
    .article-quote {
        padding: 24px 28px !important;
        font-size: 9px !important;
        margin-bottom: 32px !important;
    }

    .article-quote::before {
        font-size: 55px !important;
    }
    
    .article-quote span {
        font-size: 8px !important;
    }

    /* Highlight Box */
    .article-highlight {
        padding: 24px !important;
        margin: 36px 0 !important;
    }

    .article-highlight h3 {
        font-size: 15px !important;
    }

    .article-highlight p {
        font-size: 8px !important;
    }

    /* Image Caption */
    .image-caption {
        font-size: 6px !important;
        margin-top: 12px !important;
        padding-left: 16px !important;
    }

    /* Share Section */
    .share-section {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }
    
    .share-label {
        font-size: 12px !important;
    }

    /* Main Content Padding */
    .main-content {
        padding: 40px 0 !important;
    }
    
    /* Footer */
    .footer p {
        font-size: 13px !important;
    }
}

/* Mobil Yatay (Landscape) - Kısa Ekranlar */
@media (max-width: 868px) and (max-height: 500px) {
    .header {
        padding: 6px 0 !important;
    }
    
    .logo {
        height: 28px !important;
    }
    
    .menu-toggle {
        width: 35px !important;
        height: 35px !important;
        gap: 3px !important;
    }
    
    .menu-toggle-line {
        width: 14px !important;
        height: 1.5px !important;
    }
}