/* * ==============================================
 * INACTIVEART | Digital Architecture
 * ==============================================
 * Designed & Coded by: INACTIVEART
 * All Rights Reserved.
 * ==============================================
 */

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

html {
    font-size: 16px;
    scroll-behavior: auto;
    /* Lenis handles this */
}

/* GENEL FONT TANIMI */
/* GENEL VÜCUT VE FONT TANIMI */
body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    background-color: #000;
    /* Zemin Rengi */
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ACCESSIBILITY STYLES */
/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #3b82f6;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

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

/* Focus visible styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

/* HEADER KONUMU VE BÖLÜCÜ */
.site-header {
    /* Using .site-header to match existing HTML class used for JS animations, but applying user styles */
    background: transparent;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Silik bir ayırıcı */
    position: fixed;
    top: 0;
    z-index: 1000;
}

/* ---------------------------------------------------- */
/* ANIMASYON TANIMI (Orijinal Koddan Alındı) */
/* ---------------------------------------------------- */
@keyframes artFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ---------------------------------------------------- */
/* LOGO STİLLERİ (Görsel Odaklı Revizyon) */
/* ---------------------------------------------------- */
.site-logo {
    /* Görseldeki gibi Sons-Serif ve bitişik yapı */
    font-family: 'Manrope', sans-serif !important;
    font-size: 2rem;
    /* Biraz daha büyüttük */
    font-weight: 800;
    /* Extra Bold */
    letter-spacing: -0.04em;
    /* Harfleri birbirine yaklaştır */
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    /* Spans'ları yan yana boşluksuz dizmek için */
    align-items: center;
}

/* 1. KISIM: INACTIVE */
.inactive-prefix {
    color: #e5e5e5;
    /* Daha parlak beyaz/gri */
    font-weight: 800;
    /* Kalınlığı eşitle */
}

/* 2. KISIM: ART */
.art-suffix {
    background: linear-gradient(90deg,
            #5b86e5,
            /* Mavi */
            #a855f7,
            /* Mor */
            #ec4899
            /* Pembe/Magenta */
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    font-weight: 800;
    margin-left: 0;
    /* Boşluğu sıfırla */
    padding-left: 0;

    /* Akış Animasyonu */
    background-size: 200% auto;
    animation: artFlow 5s linear infinite;
}

/* NAVİGASYON LİNKLERİ */
nav a {
    /* Link Tasarımı: İnce, silik ve teknolojik */
    color: #555;
    /* Varsayılan silik renk */
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s, font-weight 0.3s;
}

/* Aktif Link/Hover Durumu */
/* Aktif Link/Hover Durumu */
nav a:hover,
nav a.active {
    color: #fff;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

:root {
    --bg: #0a0a0a;
    --text: #ededed;
    --text-dim: #888888;
    --spacing: 15vh;
}


/* Layout Fix: Intro section fills viewport to push Philosophy off-screen */
#intro {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Interactivity: Custom Cursor */
* {
    cursor: none !important;
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: white;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid white;
    transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

/* Hover State */
body.hovering .cursor-dot {
    background-color: #3b82f6;
    transform: translate(-50%, -50%) scale(1.5);
}

body.hovering .cursor-outline {
    width: 50px;
    height: 50px;
    border-color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
}

/* TYPOGRAPHY */
h1,
h2,
h3,
.display {
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-text {
    font-size: clamp(3rem, 8vw, 7rem);
    width: 90%;
    margin-left: 5%;
    margin-top: 30vh;
}

.section-title {
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 2rem;
    padding-left: 5%;
}

p {
    font-size: 1.125rem;
    color: var(--text-dim);
    max-width: 60ch;
}

/* LAYOUT */
section {
    padding-top: var(--spacing);
    padding-bottom: var(--spacing);
    position: relative;
    width: 100%;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    z-index: 100;
    mix-blend-mode: difference;
}

/* Ana Logo Metni (INACTIVE kısmı) */
.logo {
    font-size: 2rem;
    color: #555555;
    /* Siyah zeminde okunabilen "Sönük/Pasif" Gri */
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 2px;
    /* Adjusted spacing */
    display: inline-flex;
    align-items: center;
}

.text-inactive {
    color: inherit;
    /* Inherit form .logo */
}

/* Vurgulu Kısım (ART kısmı) */
.text-art {
    /* Hareketli Renk Geçişi */
    background: linear-gradient(45deg,
            #ff00cc,
            /* Magenta */
            #3333ff,
            /* Lacivert */
            #00ccff,
            /* Açık Mavi */
            #ff00cc);
    background-size: 300% 300%;

    /* Yazının içini boya */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* Akış Animasyonu */
    animation: artFlow 8s ease infinite;

    /* Hafif Parlama */
    filter: drop-shadow(0 0 5px rgba(0, 204, 255, 0.4));
    padding-left: 2px;
}

/* Animasyon Tanımı */
@keyframes artFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.motto {
    font-weight: 300;
    font-size: 0.9rem;
    color: #aaaaaa;
    letter-spacing: 0.05em;
    display: none;
}

@media(min-width: 768px) {
    .motto {
        display: block;
    }
}

/* WORKS / GALLERY */
#works {
    padding-top: 25vh;
    /* Extra separation from Philosophy section */
}

/* Kategori Satırları */
.category-row {
    margin-bottom: 5rem;
    padding-left: 5%;
}

/* Başlık Grubu */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 5%;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.cat-titles h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    color: #ededed;
    font-weight: 300;
    margin: 0;
}

.tr-title {
    color: #555;
    font-size: 1.2rem;
    font-weight: 300;
    margin-left: 10px;
}

.cat-desc {
    font-family: 'Courier New', monospace;
    color: #3b82f6;
    font-size: 0.85rem;
}

/* Yatay Film Şeridi */
.portfolio-reel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.portfolio-reel::-webkit-scrollbar {
    display: none;
}

/* Kartlar - Sinematik 16:9 & Inactive Effects */
.work-item {
    flex: 0 0 35vw;
    min-width: 320px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    /* Resetting previous props */
    width: auto;
    opacity: 0;
    transform: translateY(20px);
}

.work-item figure {
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #111;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Varsayılan: Siyah Beyaz ve Sönük */
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover: Renkli ve Zoom */
.work-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.03);
}

.work-item h4 {
    color: #666;
    font-weight: 400;
    transition: color 0.3s;
    font-size: 1.2rem;
    margin-top: 0;
}

.work-item:hover h4 {
    color: #fff;
}

/* FOOTER */
.site-footer {
    padding: 5rem 5%;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* UTILITIES */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* CURSOR (Optional Premium Feel) */
/* Keeping it simple as requested, no custom cursor to avoid complexity bloat unless asked */
/* Contact Link */
.contact-link {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--text);
}

/* New Hero Styles */
.hero-content {
    width: 90%;
    margin-left: 5%;
    /* margin-top removed for vertical centering */
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ededed;
}

/* ---------------------------------------------------- */
/* TİPOGRAFİ RESTORASYONU (ONAYLI TASARIM) */
/* ---------------------------------------------------- */

/* 1. GENEL HACKER TEXT AYARI (Titremeyi azaltır ama fontu bozmaz) */
.hacker-text {
    /* Monospace ZORLAMASINI KALDIRDIK. Tasarım fontunu kullanacak. */
    font-family: 'Manrope', sans-serif;
    will-change: content;
    white-space: nowrap;
    /* Satır kaymasını önle */
}

/* 2. HERO ANA BAŞLIK (WE CREATE...) */
h1.hacker-text {
    font-family: 'Manrope', sans-serif;
    /* * ==============================================
 * INACTIVEART | Digital Architecture
 * ==============================================
 * Designed & Coded by: INACTIVEART
 * All Rights Reserved.
 * ==============================================
 */
    font-size: 4.5rem;
    /* ODAK NOKTASI: BÜYÜTÜLDÜ */
    letter-spacing: -2px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 10px;
    white-space: nowrap;
    /* Tek satır zorlaması */
}

/* 3. HERO ALT BAŞLIK (Subtitle) */
h2.hacker-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    /* İnce ve Zarif */
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 30px;
}

/* 4. SECTION BAŞLIKLARI (PHILOSOPHY / WORKS) */
.section-title.hacker-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    /* Light - Görseldeki gibi */
    font-size: 3rem;
    /* Görseldeki boyuta yakınlaştırma */
    letter-spacing: -1px;
    text-transform: none;
    /* Görseldeki Title Case yapısına uygun */
    color: #fff;
}

/* 5. LOGO (İSTİSNA: Sadece bu kod fontu kalmalı) */
.site-logo,
.site-logo span {
    font-family: 'Fira Code', 'Consolas', monospace !important;
}

/* MOBİL UYUMLULUK RESTORASYONU */
@media (max-width: 768px) {
    h1.hacker-text {
        font-size: 2rem;
        white-space: normal;
        /* Mobilde alt satıra geçebilir */
    }

    h2.hacker-text {
        font-size: 1.2rem;
    }

    .section-title.hacker-text {
        font-size: 1.8rem;
    }
}

/* Kod Görünümlü Alt Metin */
.code-subtitle {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    color: #888888;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    display: inline-block;
    border-radius: 4px;
    border-left: 2px solid #3b82f6;
}

/* Yanıp Sönen İmleç Efekti */
.cursor {
    animation: blink 1s infinite;
    color: #3b82f6;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}




/* Ana Kapsayıcı */
.code-scatter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #0a0a0a;
    pointer-events: none;
}

/* Genel Kod Stili */
.snippet {
    position: absolute;
    font-family: 'Fira Code', 'Courier New', monospace;
    color: rgba(255, 255, 255, 0.04);
    /* %4 - İdeal Hayalet Ayarı */
    white-space: nowrap;
    animation: fall linear infinite;
    z-index: -1;
}

/* Rastgele Konumlar ve Hızlar */
.pos-1 {
    left: 10%;
    animation-duration: 15s;
    font-size: 14px;
    top: -10%;
}

.pos-2 {
    left: 25%;
    animation-duration: 25s;
    font-size: 12px;
    top: -20%;
    opacity: 0.08;
}

.pos-3 {
    left: 50%;
    animation-duration: 18s;
    font-size: 16px;
    top: -30%;
}

.pos-4 {
    right: 15%;
    animation-duration: 22s;
    font-size: 13px;
    top: -15%;
}

.pos-5 {
    right: 35%;
    animation-duration: 30s;
    font-size: 18px;
    top: -40%;
    opacity: 0.05;
}

.pos-6 {
    left: 5%;
    animation-duration: 20s;
    font-size: 12px;
    top: -50%;
}

.pos-7 {
    left: 40%;
    animation-duration: 12s;
    font-size: 11px;
    top: -5%;
}

.pos-8 {
    right: 5%;
    animation-duration: 28s;
    font-size: 14px;
    top: -25%;
}

.pos-9 {
    left: 60%;
    animation-duration: 19s;
    font-size: 13px;
    top: -12%;
}

.pos-10 {
    right: 25%;
    animation-duration: 24s;
    font-size: 15px;
    top: -35%;
}

.pos-11 {
    left: 15%;
    animation-duration: 35s;
    font-size: 14px;
    top: -60%;
    opacity: 0.09;
}

.pos-12 {
    right: 10%;
    animation-duration: 32s;
    font-size: 14px;
    top: -45%;
}

.pos-13 {
    left: 70%;
    animation-duration: 16s;
    font-size: 12px;
    top: -8%;
}

.pos-14 {
    left: 20%;
    animation-duration: 21s;
    font-size: 16px;
    top: -18%;
}

.pos-15 {
    right: 30%;
    animation-duration: 26s;
    font-size: 13px;
    top: -22%;
}

.pos-16 {
    left: 80%;
    animation-duration: 14s;
    font-size: 11px;
    top: -14%;
}

.pos-17 {
    right: 45%;
    animation-duration: 29s;
    font-size: 15px;
    top: -33%;
}

.pos-18 {
    left: 55%;
    animation-duration: 23s;
    font-size: 14px;
    top: -28%;
}

.pos-19 {
    right: 20%;
    animation-duration: 17s;
    font-size: 13px;
    top: -10%;
}

.pos-20 {
    left: 5%;
    animation-duration: 33s;
    font-size: 20px;
    top: -55%;
    opacity: 0.04;
}

.pos-21 {
    right: 40%;
    animation-duration: 27s;
    font-size: 12px;
    top: -20%;
}

.pos-22 {
    left: 30%;
    animation-duration: 19s;
    font-size: 14px;
    top: -15%;
}

.pos-23 {
    right: 15%;
    animation-duration: 25s;
    font-size: 16px;
    top: -40%;
}

.pos-24 {
    left: 90%;
    animation-duration: 15s;
    font-size: 12px;
    top: -5%;
}

.pos-25 {
    right: 50%;
    animation-duration: 30s;
    font-size: 18px;
    top: -50%;
}


/* Varyasyonlar (Derinlik) */
.pos-2,
.pos-4,
.pos-6,
.pos-11 {
    opacity: 0.5;
    /* Uzaktaki kodlar */
    filter: blur(1px);
}

.pos-1,
.pos-5,
.pos-12 {
    color: rgba(255, 255, 255, 0.07);
    /* Yakındaki kodlar */
    font-weight: 500;
}

/* Akış Animasyonu */
@keyframes fall {
    0% {
        transform: translateY(-50vh);
    }

    100% {
        transform: translateY(120vh);
    }
}

/* ------------------------------------------------------------- */
/* PRELOADER STYLES (Terminal Aesthetic) */
/* ------------------------------------------------------------- */

/* PRELOADER TEMEL STİLİ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 99999;
    /* Her şeyin üzerinde kalmalı */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 1.5s ease-out, visibility 1.5s ease-out;
    /* Yumuşak geçiş */
}

/* PRELOADER TERMINAL İÇERİĞİ */
.terminal-content {
    font-family: 'Fira Code', 'Consolas', monospace;
    color: #fff;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

/* YANIP SÖNEN İMLEÇ */
@keyframes blink {
    50% {
        opacity: 0;
    }
}

.terminal-content .cursor {
    animation: blink 1s step-end infinite;
    color: #10b981;
    /* Terminal Yeşili */
    display: inline-block;
    margin-left: 2px;
}

/* PRELOADER'I GİZLEYEN SINIF */
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ------------------------------------------------------------- */
/* RESPONSIVE DESIGN (Media Queries) */
/* ------------------------------------------------------------- */

/* A. Tablet Görünümü (Maks. 1024px) */
@media screen and (max-width: 1024px) {

    /* Genel Doldurma (Padding) Ayarı */
    header,
    main,
    footer {
        padding-left: 3%;
        padding-right: 3%;
    }

    /* Logo ve Navigasyon Boyutu */
    .site-logo {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }

    nav a {
        margin-left: 15px;
    }

    /* Terminal Formu Boyutu */
    .terminal-box {
        max-width: 90%;
        padding: 20px;
    }

    /* PORTFOLYO (Yatay Kaydırma) */
    .portfolio-reel {
        /* Yatay kaydırmayı etkinleştir ve düzgün çalışmasını sağla */
        scroll-snap-type: x mandatory;
        overflow-x: scroll;
        /* Kaydırmayı zorla */
    }
}

/* B. Mobil Görünümü (Maks. 600px) */
@media screen and (max-width: 600px) {

    /* HEADER ve NAVİGASYON */
    header {
        flex-direction: column;
        align-items: center;
        /* [DÜZELTME] İçeriği ortala */
        padding-bottom: 15px;
    }

    nav {
        margin-top: 15px;
        width: 100%;
        display: flex;
        justify-content: space-around;
    }

    nav a {
        margin: 0 5px;
        font-size: 0.75rem;
    }

    .site-logo {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    /* PORTFOLYO */
    .category-header h3 {
        font-size: 1.2rem;
        letter-spacing: 1px;
        text-align: center;
    }

    /* Yatay Kaydırma Kartlarının Boyutu */
    .portfolio-reel {
        /* Kartların daha çok yer kaplamasını sağla */
        grid-template-columns: repeat(auto-fill, minmax(80vw, 1fr));
        /* Yeni genişlik hesaplaması */
        padding-bottom: 20px;
        /* Tekrar Yatay Kaydırmayı Güçlendir */
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }

    .work-item {
        width: 90vw;
        /* [DÜZELTME] Ekran genişliğine daha iyi oturt */
        scroll-snap-align: start;
        /* Her kartın başlangıçta durmasını sağla */
    }

    /* TERMİNAL FORMU */
    .terminal-box {
        padding: 15px;
        max-width: 100%;
        /* Tam genişliği kullan */
    }

    .cmd-line label {
        display: block;
        margin-bottom: 5px;
    }

    /* PRELOADER */
    #preloader .terminal-content {
        font-size: 0.9rem;
        /* Küçük ekranlarda metni küçült */
    }
}

/* ------------------------------------------------------------- */
/* CUSTOM CURSOR STYLES (Global) */
/* ------------------------------------------------------------- */
* {
    cursor: none !important;
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid white;
    transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

body.hovering .cursor-dot {
    background-color: #3b82f6;
    transform: translate(-50%, -50%) scale(1.5);
}

body.hovering .cursor-outline {
    width: 50px;
    height: 50px;
    border-color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
}

/* ------------------------------------------------------------- */
/* IDENTITY PAGE STYLING & ESTHETIC FIXES (User Requested) */
/* ------------------------------------------------------------- */

/* GENEL VÜCUT VE RENK TANIMI */
body {
    /* Arka planı koyu füme yap */
    background-color: #090909;
    color: #f2f2f2;
    /* Metin rengini parlak tut */
}

/* YENİ ANA VURGU RENKLERİ */
:root {
    --color-primary: #3b82f6;
    /* Elektrik Mavisi */
    --color-secondary: #7c3aed;
    /* Neon Mor */
}

/* IDENTITY RAPORU: YERLEŞİM VE FONT DÜZENLEMESİ */

/* Terminal Kapsayıcısının Arka Planı ve Kaydırma Kontrolü (KALDIRILDI - Çerçevesiz Tasarım) */


/* Başlık ve Sınırların Rengi (Mavi/Mor) */
.terminal-container h1 {
    color: var(--color-primary) !important;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2) !important;
    /* Mor sınır */
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
}

/* Rapor Girişlerini Düzenle: Metni Sığdırma ve Renklendirme */
.report-entry p,
.report-entry a {
    /* [YENİ]: Fontu Sığdıracak Kadar Küçültme */
    font-size: 0.9em !important;
    line-height: 1.7;
    /* Satır aralığını daralt */

    /* Metnin alt satıra inmesini sağla (Mobil/Web'de kaydırma yok) */
    /* white-space: normal !important;  <-- REMOVED to allow .report-nowrap to work */
    /* overflow: visible !important;    <-- REMOVED */

    font-family: 'Fira Code', monospace;
}

/* Komut/Yorum Vurgusu (Önceki Yeşildi, şimdi Mor) */
.report-entry p:first-child,
/* Tüm ilk satırları seçmek */
.report-entry p[style*="color:#10b981"] {
    /* Daha önceki yeşil rengi hedefle */
    color: var(--color-secondary) !important;
    /* Neon Mor */
    font-weight: 500;
}

/* Link Vurgusunu Mavi yap */
.report-entry a {
    color: var(--color-primary) !important;
}

/* Mobil Görünümde Ekstra Font Küçültme (max-width: 600px) */
@media screen and (max-width: 600px) {

    .report-entry p,
    .report-entry a {
        font-size: 0.8em !important;
        /* Mobil için daha da küçült */
        line-height: 1.6;
    }
}

/* HEADER EXTENSIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 40px;
    /* Menu ve Iconlar arasi mesafe */
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-link {
    color: #666;
    /* Pasif Renk */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.icon-link svg {
    width: 20px;
    height: 20px;
}

/* HOVER EFEKTLERİ (Logoya uygun Neon) */
.icon-link:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 5px currentColor);
}

/* ÖZEL RENKLER */
.x-icon:hover {
    color: #ffffff;
}

/* X Beyazı */
.ig-icon:hover {
    color: #ff00cc;
}

/* Instagram Magenta */
.git-icon:hover {
    color: #10b981;
}

/* GitHub Yeşili */

/* MOBİL AYARI */
@media (max-width: 768px) {
    .top-bar {
        justify-content: center;
        padding-bottom: 0;
    }

    .header-actions {
        gap: 20px;
    }

    .social-icons {
        gap: 10px;
    }

    /* Hide icons on very small screens if needed, or adjust size */
}

/* ------------------------------------------------------------- */
/* IDENTITY PAGE RESPONSIVE FIX (Mobile Text Wrap) */
/* ------------------------------------------------------------- */

/* Masaüstü: Satır kaymasını engelle (Orijinal İstek) */
.report-nowrap {
    white-space: nowrap;
}

/* Mobil: Satır kaymasına izin ver ve taşmayı önle */
@media screen and (max-width: 768px) {
    .report-nowrap {
        white-space: normal !important;
        /* Forces wrapping on mobile */
        word-wrap: break-word;
        /* Breaks long words if necessary */
    }
}

/* ------------------------------------------------------------- */
/* MOBILE HEADER VISUAL FIX (Scroll Overlap) */
/* ------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .site-header {
        /* Arka planı tamamen siyah ve opak yap */
        background: #000000 !important;
        /* Blend mode sorun yarattığı için kapat */
        mix-blend-mode: normal !important;
        /* Görsel ayrım için çizgi */
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
        /* Her şeyin (Cursor dahil) üzerinde kalmasını sağla */
        z-index: 20000 !important;
        /* GPU render tetikle */
        transform: translateZ(0);
        opacity: 1 !important;
    }

    /* Navigasyon elemanlarının görünürlüğünü garantiye al */
    .site-header nav a,
    .site-header .logo,
    .site-header span {
        z-index: 20001;
        position: relative;
    }
}