body {
    background: #0a1622;
    background-image: url('images/arkaplan.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Fira Mono', 'Consolas', 'monospace', 'Tahoma', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #b8c7ce;
}
pre, code {
    background: #101c2c;
    color: #6ec1e4;
    font-family: 'Fira Mono', 'Consolas', 'monospace';
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 15px;
    box-shadow: 0 1px 4px #0002;
}
.terminal-cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background: #6ec1e4;
    margin-left: 2px;
    animation: blink 1s steps(1) infinite;
    vertical-align: middle;
}
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
body::after {
    content: "";
    position: fixed;
    left: 0; top: 0; right: 0; bottom: 0;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, rgba(0,255,70,0.04) 0 1px, transparent 1px 3px);
    z-index: 1;
    mix-blend-mode: lighten;
}
.kali-terminal-frame {
    box-shadow: 0 8px 32px 0 #000a;
    overflow: hidden;
    background: rgba(10, 22, 34, 0.25);
    transition: all 0.3s ease-in-out;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    border-radius: 0;
    z-index: 9999;
}
.kali-terminal-frame.shrink {
    max-width: 1100px;
    margin: 60px auto 40px auto;
    border-radius: 10px;
    min-height: 462px;
    max-height: 90vh;
    width: auto;
    height: auto;
    position: relative;
    inset: auto;
    z-index: 1;
}
.kali-terminal-topbar {
    background: #232b36;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid #232b36;
}
.kali-terminal-title {
    color: #b8c7ce;
    font-family: 'Fira Mono', 'Consolas', 'monospace';
    font-size: 15px;
    opacity: 0.92;
    letter-spacing: 0.5px;
    text-align: center;
    flex: 1;
}
.kali-terminal-close {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #3daee9;
    border: 1.5px solid #1b6ca8;
    box-shadow: 0 0 4px #3daee9aa;
    cursor: pointer;
}
.kali-terminal-content {
    background: none;
    padding: 2.5em 2.5em 2em 2.5em;
    font-family: 'Fira Mono', 'Consolas', 'monospace';
    color: #b8c7ce;
    font-size: 18px;
    height: calc(100vh - 36px);
    box-sizing: border-box;
}
.kali-prompt { color: #6ec1e4; }
.kali-root { color: #ff5555; font-weight: bold; }
.kali-at { color: #b8c7ce; }
.kali-host { color: #3daee9; }
.kali-path { color: #b8c7ce; }
.kali-hash { color: #ff5555; font-weight: bold; }
.kali-cursor {
    display: inline-block;
    width: 16px;
    height: 22px;
    background: #fff;
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1s steps(1) infinite;
}
@media (max-width: 900px) {
    .kali-terminal-frame { max-width: 99vw; }
    .kali-terminal-content { padding: 1em 0.5em; font-size: 15px; }
}
.kali-blog-title { color: #3daee9; text-decoration: none; font-weight: bold; }
.kali-blog-desc { 
    color: #7a8fa6; 
    font-size: 15px; 
    margin-left: 2em; 
    white-space: pre-wrap; 
    word-wrap: break-word; 
    overflow-x: hidden;
}
body, * {
    cursor: url('images/my-cursor.cur'), auto !important;
}
h1 {
    color: #3daee9;
    text-align: center;
    margin-top: 40px;
}
a {
    color: #3daee9;
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}
html, body {
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
            width: 100%;
        }
        body {
            background: #070c12 url('images/arkaplan.png') no-repeat center center fixed;
            background-size: cover;
            cursor: url('images/my-cursor.cur'), auto;
            min-height: 100vh;
            width: 100vw;
            position: relative;
        }
        .kali-terminal-frame {
            box-shadow: 0 8px 32px 0 #000a;
            overflow: hidden;
            background: rgba(10, 22, 34, 0.25);
            transition: all 0.3s ease-in-out;
            position: fixed;
            inset: 0;
            width: 100vw;
            height: 100vh;
            margin: 0;
            border-radius: 0;
            z-index: 9999;
        }
        .kali-terminal-frame.shrink {
            max-width: 1100px;
            margin: 60px auto 40px auto;
            border-radius: 10px;
            min-height: 462px;
            max-height: 90vh;
            width: auto;
            height: auto;
            position: relative;
            inset: auto;
            z-index: 1;
        }
        .kali-terminal-menubar {
            background: #232b36;
            height: 28px;
            display: flex;
            align-items: center;
            padding-left: 18px;
            font-family: 'Fira Mono', 'Consolas', monospace;
            font-size: 15px;
            color: #b8c7ce;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            user-select: none;
        }
        .kali-terminal-topbar {
            background: #232b36;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-bottom: 1px solid #232b36;
        }
        .kali-terminal-title {
            color: #b8c7ce;
            font-family: 'Fira Mono', 'Consolas', monospace;
            font-size: 15px;
            opacity: 0.92;
            letter-spacing: 0.5px;
            text-align: center;
            flex: 1;
        }
        .kali-terminal-close {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px; height: 16px;
            border-radius: 50%;
            background: #3daee9;
            border: 1.5px solid #1b6ca8;
            box-shadow: 0 0 4px #3daee9aa;
            cursor: pointer;
        }
        .kali-terminal-content {
            background: none;
            padding: 2.5em 2.5em 2em 2.5em;
            font-family: 'Fira Mono', 'Consolas', 'monospace';
            color: #b8c7ce;
            font-size: 18px;
            height: calc(100vh - 36px);
            box-sizing: border-box;
        }
        .kali-prompt { color: #6ec1e4; }
        .kali-root { color: #ff5555; font-weight: bold; }
        .kali-at { color: #b8c7ce; }
        .kali-host { color: #3daee9; }
        .kali-path { color: #b8c7ce; }
        .kali-hash { color: #ff5555; font-weight: bold; }
        .kali-cursor {
            display: inline-block;
            width: 16px;
            height: 22px;
            background: #fff;
            margin-left: 2px;
            vertical-align: middle;
            animation: blink 1s steps(1) infinite;
        }
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        .kali-blog-title { color: #3daee9; text-decoration: none; font-weight: bold; }
        .kali-blog-desc { 
            color: #7a8fa6; 
            font-size: 15px; 
            margin-left: 2em; 
            white-space: pre-wrap; 
            word-wrap: break-word; 
            overflow-x: hidden;
        }
        .markdown-body {
            font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
            color: #e0e0e0;
            line-height: 1.6;
            font-size: 16px;
            text-shadow: none;
        }
        .markdown-body h1, .markdown-body h2, .markdown-body h3 {
            color: #ffffff;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            font-weight: bold;
            text-transform: none;
            letter-spacing: 0;
            text-shadow: none;
        }
        .markdown-body h1 { font-size: 1.8em; border-bottom: 2px solid #ffffff; padding-bottom: 0.3em; }
        .markdown-body h2 { font-size: 1.4em; border-bottom: 1px solid #888888; padding-bottom: 0.3em; color: #e0e0e0; }
        .markdown-body h3 { font-size: 1.2em; color: #cccccc; }
        .markdown-body a { color: #ffffff; text-decoration: underline; }
        .markdown-body a:hover { color: #000000; background: #ffffff; text-decoration: none; }
        .markdown-body img { max-width: 100%; border: 1px solid #ffffff; padding: 2px; background: #000000; margin: 1em 0; display: block; position:relative; z-index:2; filter: grayscale(100%); transition: all 0.3s; }
        .markdown-body img:hover { filter: grayscale(0%); }
        .markdown-body code { background: #222222; border: 1px solid #555555; padding: 0.1em 0.3em; color: #ffffff; font-family: inherit; }
        .markdown-body pre { background: #000000; padding: 1em; overflow-x: auto; border: 1px solid #ffffff; position:relative; z-index:2; }
        .markdown-body pre code { background: transparent; padding: 0; color: #ffffff; border: none; }
        .markdown-body blockquote { background: #111111; border: 1px solid #555555; border-left: 3px solid #ffffff; margin: 1em 0; padding: 1em; color: #cccccc; font-style: normal; }
        .markdown-body ul, .markdown-body ol { padding-left: 2em; }
        .markdown-body li::marker { color: #ffffff; }
        .markdown-body hr { border: none; border-bottom: 1px dashed #888888; margin: 2em 0; }
        @media (max-width: 900px) {
            .kali-terminal-frame { max-width: 99vw; }
            .kali-terminal-content { padding: 1em 0.5em; font-size: 15px; }
        }
        @keyframes epilepsy-bg {
            0% { 
                background: #000;
                filter: contrast(1.2) brightness(0.8);
            }
            5% { 
                background: #1a0f0f;
                filter: contrast(1.4) brightness(0.9) hue-rotate(5deg);
            }
            10% { 
                background: #0f1a0f;
                filter: contrast(1.6) brightness(1) hue-rotate(-5deg);
            }
            15% { 
                background: #0f0f1a;
                filter: contrast(1.8) brightness(1.1) hue-rotate(10deg);
            }
            20% { 
                background: #1a1a0f;
                filter: contrast(2) brightness(1.2) hue-rotate(-10deg);
            }
            25% { 
                background: #1a0f1a;
                filter: contrast(2.2) brightness(1.3) hue-rotate(15deg);
            }
            30% { 
                background: #0f1a1a;
                filter: contrast(2.4) brightness(1.4) hue-rotate(-15deg);
            }
            35% { 
                background: #1a1a1a;
                filter: contrast(2.6) brightness(1.5) hue-rotate(20deg);
            }
            40% { 
                background: #000;
                filter: contrast(2.8) brightness(1.6) hue-rotate(-20deg);
            }
            45% { 
                background: #1a0f0f;
                filter: contrast(3) brightness(1.7) hue-rotate(25deg);
            }
            50% { 
                background: #0f1a0f;
                filter: contrast(3.2) brightness(1.8) hue-rotate(-25deg);
            }
            55% { 
                background: #0f0f1a;
                filter: contrast(3.4) brightness(1.9) hue-rotate(30deg);
            }
            60% { 
                background: #1a1a0f;
                filter: contrast(3.6) brightness(2) hue-rotate(-30deg);
            }
            65% { 
                background: #1a0f1a;
                filter: contrast(3.8) brightness(2.1) hue-rotate(35deg);
            }
            70% { 
                background: #0f1a1a;
                filter: contrast(4) brightness(2.2) hue-rotate(-35deg);
            }
            75% { 
                background: #1a1a1a;
                filter: contrast(4.2) brightness(2.3) hue-rotate(40deg);
            }
            80% { 
                background: #000;
                filter: contrast(4.4) brightness(2.4) hue-rotate(-40deg);
            }
            85% { 
                background: #1a0f0f;
                filter: contrast(4.6) brightness(2.5) hue-rotate(45deg);
            }
            90% { 
                background: #0f1a0f;
                filter: contrast(4.8) brightness(2.6) hue-rotate(-45deg);
            }
            95% { 
                background: #0f0f1a;
                filter: contrast(5) brightness(2.7) hue-rotate(50deg);
            }
            100% { 
                background: #000;
                filter: contrast(5.2) brightness(2.8) hue-rotate(-50deg);
            }
        }
        @keyframes runRight {
            0% {
                left: 0%;
                top: 50%;
                transform: translateY(0) scaleX(1);
            }
            10% {
                transform: translateY(-12px) scaleX(1.08);
            }
            20% {
                left: 20%;
                transform: translateY(0) scaleX(1);
            }
            30% {
                transform: translateY(-16px) scaleX(1.12);
            }
            40% {
                left: 40%;
                transform: translateY(0) scaleX(1);
            }
            50% {
                transform: translateY(-12px) scaleX(1.08);
            }
            60% {
                left: 60%;
                transform: translateY(0) scaleX(1);
            }
            70% {
                transform: translateY(-8px) scaleX(1.04);
            }
            80% {
                left: 80%;
                transform: translateY(0) scaleX(1);
            }
            90% {
                transform: translateY(-4px) scaleX(1.02);
            }
            100% {
                left: 100%;
                top: 50%;
                transform: translateY(0) scaleX(1);
            }
        }
        #preloader {
            position: fixed;
            z-index: 10000;
            top: 0; left: 0;
            width: 100vw; height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: epilepsy-bg 0.4s steps(1) infinite;
            overflow: hidden;
            transition: all 0.5s ease-in-out;
            background: #000;
        }
        #preloader::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(
                    0deg,
                    rgba(0, 0, 0, 0.2),
                    rgba(0, 0, 0, 0.2) 1px,
                    transparent 1px,
                    transparent 2px
                ),
                repeating-linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.2),
                    rgba(0, 0, 0, 0.2) 1px,
                    transparent 1px,
                    transparent 2px
                );
            pointer-events: none;
            animation: scanline 0.1s linear infinite;
            mix-blend-mode: overlay;
        }
        #preloader::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(
                    circle at center,
                    transparent 0%,
                    rgba(0, 0, 0, 0.4) 100%
                ),
                repeating-conic-gradient(
                    from 0deg,
                    #000 0deg 10deg,
                    transparent 10deg 20deg
                );
            background-size: 100% 100%, 4px 4px;
            pointer-events: none;
            animation: noise 0.2s steps(4) infinite;
            mix-blend-mode: overlay;
            opacity: 0.7;
        }
        @keyframes noise {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(-1px, 1px) rotate(0.5deg); }
            50% { transform: translate(1px, -1px) rotate(-0.5deg); }
            75% { transform: translate(-1px, -1px) rotate(0.5deg); }
            100% { transform: translate(1px, 1px) rotate(-0.5deg); }
        }
        @keyframes scanline {
            0% { transform: translateY(-100%) skewX(0deg); }
            50% { transform: translateY(0%) skewX(1deg); }
            100% { transform: translateY(100%) skewX(0deg); }
        }
        #preloader.shrink {
            transform: none;
            opacity: 0;
            border-radius: 0;
            background: #000;
        }
        #preloader .wheel-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 420px;
            height: 420px;
            transform: translate(-50%, -50%);
            z-index: 0;
            opacity: 0.18;
        }
        #preloader img {
            width: 640px;
            height: 640px;
            object-fit: contain;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.75);
            animation: pikachuStaticFade 3s linear forwards;
            transition: all 0.5s ease-in-out;
            z-index: 2;
            will-change: opacity, filter;
        }
        #preloader.shrink img {
            transform: none;
            opacity: 0;
        }
        body, #preloader, #preloader * {
            cursor: url('images/my-cursor.cur'), auto !important;
        }
        @keyframes hamsterWheel {
            0% {
                transform: rotate(0deg) translateX(200px) rotate(0deg) scaleX(1) scaleY(1);
            }
            10% {
                transform: rotate(36deg) translateX(200px) rotate(-36deg) scaleX(1.08) scaleY(0.95);
            }
            20% {
                transform: rotate(72deg) translateX(200px) rotate(-72deg) scaleX(1.12) scaleY(0.92);
            }
            30% {
                transform: rotate(108deg) translateX(200px) rotate(-108deg) scaleX(1.08) scaleY(0.95);
            }
            40% {
                transform: rotate(144deg) translateX(200px) rotate(-144deg) scaleX(1) scaleY(1);
            }
            50% {
                transform: rotate(180deg) translateX(200px) rotate(-180deg) scaleX(0.95) scaleY(1.08);
            }
            60% {
                transform: rotate(216deg) translateX(200px) rotate(-216deg) scaleX(0.92) scaleY(1.12);
            }
            70% {
                transform: rotate(252deg) translateX(200px) rotate(-252deg) scaleX(0.95) scaleY(1.08);
            }
            80% {
                transform: rotate(288deg) translateX(200px) rotate(-288deg) scaleX(1) scaleY(1);
            }
            90% {
                transform: rotate(324deg) translateX(200px) rotate(-324deg) scaleX(1.08) scaleY(0.95);
            }
            100% {
                transform: rotate(360deg) translateX(200px) rotate(-360deg) scaleX(1) scaleY(1);
            }
        }
        @keyframes pikachuStaticFade {
            0% { opacity: 1; filter: none; transform: translate(-50%, -50%) scale(0.75); }
            6.7% { opacity: 1; filter: none; transform: translate(-50%, -50%) scale(0.75); }
            86.7% { opacity: 0.5; filter: grayscale(1) blur(2px); transform: translate(-50%, -50%) scale(0.75); }
            100% { opacity: 0; filter: grayscale(1) blur(6px); transform: translate(-50%, -50%) scale(0.75); }
        }
        #preloader .pixel-scatter {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
            opacity: 0;
            animation: pixelScatter 1s ease-out forwards;
            animation-delay: 3s;
        }
        @keyframes pixelScatter {
            0% {
                opacity: 0;
                transform: scale(1);
                filter: blur(0);
            }
            5% {
                opacity: 1;
                transform: scale(1.2);
                filter: blur(2px);
            }
            100% {
                opacity: 0;
                transform: scale(3);
                filter: blur(30px);
            }
        }
        #preloader .pixel-scatter::before,
        #preloader .pixel-scatter::after,
        #preloader .pixel-scatter .particle3,
        #preloader .pixel-scatter .particle4 {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background-image: inherit;
            background-size: 640px 640px;
            image-rendering: pixelated;
            animation: scatterPixels 1s ease-out forwards;
            animation-delay: 3s;
        }
        #preloader .pixel-scatter::before { animation-name: scatterPixels1; }
        #preloader .pixel-scatter::after { animation-name: scatterPixels2; }
        #preloader .pixel-scatter .particle3 { animation-name: scatterPixels3; }
        #preloader .pixel-scatter .particle4 { animation-name: scatterPixels4; }
        @keyframes scatterPixels1 {
            0% {
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
                filter: brightness(1) contrast(1) hue-rotate(0deg) saturate(1) blur(0);
                opacity: 0;
            }
            5% { opacity: 1; }
            100% {
                transform: translate(-200%, -200%) scale(0.3) rotate(1080deg) skew(60deg, 60deg);
                filter: brightness(3) contrast(3) hue-rotate(360deg) saturate(3) blur(15px) invert(1);
                opacity: 0;
            }
        }
        @keyframes scatterPixels2 {
            0% {
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
                filter: brightness(1) contrast(1) hue-rotate(0deg) saturate(1) blur(0);
                opacity: 0;
            }
            5% { opacity: 1; }
            100% {
                transform: translate(200%, 200%) scale(0.3) rotate(-1080deg) skew(-60deg, -60deg);
                filter: brightness(3) contrast(3) hue-rotate(-360deg) saturate(3) blur(15px) invert(1);
                opacity: 0;
            }
        }
        @keyframes scatterPixels3 {
            0% {
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
                filter: brightness(1) contrast(1) hue-rotate(0deg) saturate(1) blur(0);
                opacity: 0;
            }
            5% { opacity: 1; }
            100% {
                transform: translate(200%, -200%) scale(0.3) rotate(1080deg) skew(-60deg, 60deg);
                filter: brightness(3) contrast(3) hue-rotate(360deg) saturate(3) blur(15px) invert(1);
                opacity: 0;
            }
        }
        @keyframes scatterPixels4 {
            0% {
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
                filter: brightness(1) contrast(1) hue-rotate(0deg) saturate(1) blur(0);
                opacity: 0;
            }
            5% { opacity: 1; }
            100% {
                transform: translate(-200%, 200%) scale(0.3) rotate(-1080deg) skew(60deg, -60deg);
                filter: brightness(3) contrast(3) hue-rotate(-360deg) saturate(3) blur(15px) invert(1);
                opacity: 0;
            }
        }
        #preloader .glitch-overlay {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent 0%,
                rgba(255, 0, 0, 0.1) 0.5%,
                transparent 1%
            );
            animation: glitch 0.3s steps(2) infinite;
            pointer-events: none;
            mix-blend-mode: overlay;
        }
        @keyframes glitch {
            0% { transform: translateX(0); }
            25% { transform: translateX(-2px); }
            50% { transform: translateX(2px); }
            75% { transform: translateX(-1px); }
            100% { transform: translateX(1px); }
        }
        #preloader .static-noise {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 640px;
            height: 640px;
            transform: translate(-50%, -50%) scale(0.75);
            background: url('images/static.png') center center/cover no-repeat;
            opacity: 0;
            pointer-events: none;
            z-index: 3;
            animation: staticAppear 2.4s linear forwards;
            animation-delay: 0.2s;
        }
        @keyframes staticAppear {
            0% { opacity: 0; }
            80% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        @keyframes threat-glow {
            0% { box-shadow: 0 0 24px #000a, 0 0 8px #ff0000; color: #ff5555; }
            100% { box-shadow: 0 0 48px #ff0000, 0 0 16px #fff; color: #fff; }
        }
        .threat-wait-text {
            position: absolute;
            top: 82%;
            left: 50%;
            transform: translate(-50%, 0);
            color: #e0e0e0;
            font-family: 'IM Fell English SC', serif;
            font-size: 2.7em;
            text-shadow: 0 0 8px #000, 0 0 2px #a00, 0 2px 12px #000;
            letter-spacing: 0.18em;
            background: rgba(10,10,10,0.82);
            padding: 0.45em 1.2em 0.35em 1.2em;
            border-radius: 8px;
            z-index: 20;
            border: 1.5px solid #222;
            box-shadow: 0 0 24px #000a, 0 0 8px #0008;
            animation: horror-flicker 2.2s infinite alternate, horror-fade 4.2s infinite alternate;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.22em;
        }
        .threat-wait-text span {
            font-weight: 400;
            display: inline-block;
            filter: blur(0.2px);
            letter-spacing: 0.22em;
        }
        @keyframes horror-flicker {
            0% { opacity: 0.92; filter: blur(0.2px); }
            10% { opacity: 0.7; filter: blur(0.5px); }
            20% { opacity: 0.95; filter: blur(0.1px); }
            30% { opacity: 0.8; filter: blur(0.3px); }
            40% { opacity: 1; filter: blur(0.2px); }
            50% { opacity: 0.6; filter: blur(0.7px); }
            60% { opacity: 0.95; filter: blur(0.1px); }
            70% { opacity: 0.8; filter: blur(0.3px); }
            80% { opacity: 1; filter: blur(0.2px); }
            90% { opacity: 0.7; filter: blur(0.5px); }
            100% { opacity: 0.92; filter: blur(0.2px); }
        }
        @keyframes horror-fade {
            0% { color: #e0e0e0; }
            50% { color: #a00; }
            100% { color: #e0e0e0; }
        }

/* New Extracted Classes for CSP Compliance */



.kali-terminal-content {
    overflow-y: auto;
    overflow-x: hidden;
}

#blog-list-container {
    font-size: 18px !important;
    color: #b8c7ce !important;
    background: none !important;
    border: none !important;
}

#arda-komut {
    color: #b8c7ce;
}

#blog-modal {
    position: fixed;
    inset: 0;
    background-color: #000000;
    z-index: 99999;
    flex-direction: column;
    padding: 0;
}

.modal-bg-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.modal-bg-logo {
    max-width: 40%;
    max-height: 50%;
    opacity: 0.275;
    filter: grayscale(100%);
    pointer-events: none;
    user-select: none;
}

.modal-header {
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    background: #111111;
    padding: 10px 30px;
    border-bottom: 1px solid #ffffff;
    box-sizing: border-box;
    z-index: 2;
    position: relative;
}

#blog-modal-title {
    color: #ffffff;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 15px;
    font-weight: normal;
}

#blog-modal-close {
    color: #ffffff;
    cursor: pointer;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 15px;
    transition: all 0.2s;
}

#blog-modal-close:hover {
    background: #ffffff;
    color: #000000 !important;
}

#blog-content {
    width: 100%;
    flex: 1 1 auto;
    background: transparent;
    overflow-y: auto;
    padding: 40px 8%;
    box-sizing: border-box;
    z-index: 2;
    position: relative;
}

.blog-link-item {
    color: #3daee9;
    text-decoration: underline;
    cursor: pointer;
}

/* Utility Classes for JS */
.hidden { display: none !important; }
.flex-display { display: flex !important; }
.block-display { display: block !important; }


/* Footer Style */
.footer-text {
    position: fixed;
    bottom: 8px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #555555;
    font-size: 11px;
    z-index: 10;
    pointer-events: none;
    font-family: 'Fira Mono', 'Consolas', monospace;
    opacity: 0.6;
}

/* Mobile Responsive Overrides */
@media (max-width: 900px) {
    .kali-terminal-frame.shrink {
        position: absolute;
        top: 15px;
        bottom: 15px;
        left: 3vw;
        right: 3vw;
        width: auto;
        height: auto;
        max-width: none;
        max-height: none;
        margin: 0;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
    }
    .kali-terminal-content {
        padding: 1em 1em;
        font-size: 14.5px;
        font-weight: 500;
        -webkit-font-smoothing: antialiased;
        height: auto;
        flex: 1 1 auto;
        overflow-y: auto;
    }
    .markdown-body {
        font-size: 14.5px;
        font-weight: 500;
        -webkit-font-smoothing: antialiased;
        padding: 20px 5%;
    }
    .modal-bg-logo {
        max-width: 50vw;
        max-height: 25vh;
        object-fit: contain;
        opacity: 0.15;
    }
    .kali-terminal-title {
        font-size: 13px;
    }
    #blog-list-container {
        font-size: 14px !important;
        margin-left: 0.5em !important;
    }
    .kali-prompt {
        font-size: 14px;
    }
    .footer-text {
        font-size: 9px;
        bottom: 5px;
    }
    .markdown-body {
        font-size: 14px;
        padding: 20px 5%;
    }
    .markdown-body h1 {
        font-size: 1.5em;
    }
    .modal-header {
        padding: 10px 15px;
    }
}

@keyframes terminal-boot {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.kali-terminal-frame {
    opacity: 0;
    animation: terminal-boot 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.5s;
}
