:root {
    --background-renk: #fff;
    --yazi-renk: #08090a;
    --aciklama-renk: #737373;
    --cizgi-renk: #e5e7eb;
    --yetenek-yazi-renk: #171717;
    --yetenek-arkaplan-renk: #f5f5f5;
    --nav-arkaplan-renk: rgba(255, 255, 255, 0.9);
}

[tema="koyu"] {
    --background-renk: #000;
    --yazi-renk: #f8fafc;
    --aciklama-renk: #94a3b8;
    --cizgi-renk: #334155;
    --yetenek-yazi-renk: #f8fafc;
    --yetenek-arkaplan-renk: #000000;
    --nav-arkaplan-renk: rgba(0, 0, 0, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background-renk);
    color: var(--yazi-renk);
    padding: 6rem 1.5rem 20px 1.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 50rem;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Mobilde büyütme hareketini engelle */
html {
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Linkler ve butonlar için metin seçimini engelle */
a, button, input, textarea, select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

body.loaded {
    opacity: 1;
}

    body.projeler-sayfa {
        max-width: none;
        padding: 6rem 2rem 120px 2rem;
    }
    
@media (max-width: 768px) {
    body {
        max-width: 100%;
        padding: 4rem 1rem 0 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 5rem 0.8rem 0 0.8rem;
    }
}

    .content-wrapper {
        position: relative;
        padding-bottom: 120px;
    }

gradyan-ust {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 6rem;
    background: linear-gradient(to bottom, var(--background-renk), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 10;
}

gradyan-alt {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6rem;
    background: linear-gradient(to top, var(--background-renk), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 10;
}

main {
    min-height: calc(100vh - 120px);
    min-height: calc(100dvh - 120px);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 80px;
    overflow-x: hidden;
    overflow-y: hidden;
}

article {
    max-width: 768px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

header {
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yazi-renk);
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yazi-renk);
    margin: 2rem 0 1rem;
}

.date {
    color: var(--aciklama-renk);
}

p {
    margin-bottom: 1.5rem;
}

ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
pre {
    background-color: var(--yazi-renk);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}

code {
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    article {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }
}

nav {
    position: fixed !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    background-color: var(--nav-arkaplan-renk);
    backdrop-filter: blur(10px);
    padding: .2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999 !important;
    border-radius: 99px;
    border: 2px solid var(--cizgi-renk);
    max-width: 15rem;
    width: auto !important;
    margin: 0 auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    transform: translateX(-50%) translateZ(0) !important;
    backface-visibility: hidden !important;
    will-change: transform;
    overflow: visible !important;
    contain: layout style;
}

nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

nav ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    overflow: visible !important;
    transform: translateZ(0);
    backface-visibility: hidden;
}

nav ul li a {
    text-decoration: none;
    color: var(--yazi-renk);
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.7rem;
    gap: 0.3rem;
    transition: color 0.3s ease;
    overflow: visible !important;
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
}

nav ul li a:hover {
    color: var(--yazi-renk);
}

nav ul li a svg {
    width: .875rem;
    height: .875rem;
}

.nav-tooltip {
    position: fixed;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 0.35em 0.9em;
    border-radius: 0.7em;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 999999;
    overflow: visible !important;
    visibility: visible !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

nav ul li a:hover .nav-tooltip,
nav ul li a:focus .nav-tooltip {
    opacity: 1;
}

.tema-degistir {
    position: relative;
}

.tema-degistir svg {
    top: 50%;
    left: 50%;
}

[tema="koyu"] .koyu-mod-ikon {
    display: none;
}

[tema="acik"] .acik-mod-ikon {
    display: none;
}

.ayrac {
    height: 1px;
    background-color: var(--cizgi-renk);
    width: 100%;
    margin: 1rem 0;
    max-width: 50rem;
}

.anabilgi {
    height: 100%;
}

.kisim1 {
    width: 100%;
}

.isim {
    font-size: 3.8rem;
    font-weight: 650;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--yazi-renk);
}

.gelistirici {
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--aciklama-renk);
    font-weight: 450;
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
}

.aciklama {
    color: var(--aciklama-renk);
    font-size: 1rem;
}

.istatistikler {
    display: flex;
    gap: 1.5rem;
    color: var(--yazi-renk);
    font-size: 1rem;
    font-weight: 475;
}

.istatistikler span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.istatistikler span:hover {
    text-decoration: underline;
    cursor: pointer;
    transform: scale(1.05);
    color: var(--aciklama-renk);
}

.istatistikler span svg {
    vertical-align: bottom;
    margin-right: 0.3em;
    display: inline;
    color: var(--aciklama-renk);
}

.one-cikan {
    margin-bottom: 2.5rem;
}

.one-cikan h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.one-cikan-aciklama {
    color: var(--aciklama-renk);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.one-cikan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.tumunu-gor-btn {
    color: var(--yetenek-yazi-renk);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.tumunu-gor-btn:hover {
    text-decoration: underline;
}

.oneCikanSvg {
    font-size: 2.4rem;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    min-height: 2rem;
    max-width: 2rem;
    max-height: 2rem;
}

.ok {
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 0.2rem;
}

.projeler {
    display: grid;
    grid-template-columns: 1fr;
    gap: .9rem;
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 769px) {
    .projeler {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .iletisim {
        padding: 3.5rem 2.5rem 3rem 2.5rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .iletisim h3 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .iletisim p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .iletisim-buton {
        font-size: 0.9rem;
        padding: 0.6em 1.5em;
        margin-bottom: 1.5rem;
    }
    
    .iletisim-ikonlar {
        margin-top: 2rem;
        margin-bottom: 2rem;
        gap: 1.5rem;
    }
    
    .iletisim-ikonlar a {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }
    
    .iletisim-ikonlar svg {
        width: 18px;
        height: 18px;
    }
    
    .iletisim-bilgiler {
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .iletisim-bilgiler div {
        font-size: 1rem;
        gap: 0.8rem;
        padding: 0.8rem 1.2rem;
    }
    
    .iletisim-bilgiler svg {
        width: 22px;
        height: 22px;
    }
}

.proje {
    background: var(--yetenek-arkaplan-renk);
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 100%;
    position: relative;
    border: 2px solid var(--cizgi-renk);
    display: flex;
    flex-direction: column;
    min-height: 135px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    animation: scaleIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.proje:hover {
    border: 2px solid rgb(30, 30, 30, 0.6);
    cursor: pointer;
}

.proje:hover .proje-yildiz {
    transform: translateY(10px);
    color: var(--yazi-renk);
    align-items: center;
}

.proje:hover .proje-yildiz svg {
    transform: rotateY(180deg);
    color: #FFD700;
}

.proje-ust {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.proje-ikon {
    font-size: 2.2rem;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
}

.proje-alt {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 1.2rem;
}

.proje-baslik {
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    max-width: 50rem;
    color: var(--yazi-renk);
}

.proje-aciklama {
    color: var(--aciklama-renk);
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

.proje-yildiz {
    color: var(--aciklama-renk);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.2em;
    transition: transform 0.3s ease;
}

.proje-yildiz svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
    vertical-align: bottom;
}

@keyframes ziyaret-et {
    0% {
        background-position: -200%;
        opacity: 0;
    }

    10% {
        opacity: .3;
    }

    90% {
        opacity: .3;
    }

    100% {
        background-position: 200%;
        opacity: 0;
    }
}

.ziyaret-et {
    position: absolute;
    top: .5rem;
    right: .5rem;
    color: var(--yazi-renk);
    font-weight: 475;
    font-size: .875rem;
    padding: 0.2em 0.9em;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.6s;
    z-index: 2;
}

.proje:hover .ziyaret-et {
    opacity: 1;
    transform: translateY(0);
}

.yetenekler h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

@media (max-width: 600px) {
    .yetenekler h3 {
        font-size: 1.3rem;
        margin-bottom: 0.9rem;
    }
}

@media (max-width: 480px) {
    .yetenekler h3 {
        font-size: 1.25rem;
        margin-bottom: 0.8rem;
    }
}

.yetenekler-listesi {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    row-gap: 1.3rem;
    color: #444;
    font-size: .8rem;
    justify-content: flex-start;
    align-items: flex-start;
}

@media (max-width: 600px) {
    .yetenekler-listesi {
        gap: 0.6rem;
        row-gap: 0.8rem;
        padding: 0.5rem 0;
    }
    
    .yetenek {
        font-size: 0.85rem;
        padding: 0.25rem 0.8rem;
        min-width: fit-content;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .yetenekler-listesi {
        gap: 0.5rem;
        row-gap: 1.1rem;
        padding: 0.4rem 0;
    }
    
    .yetenek {
        font-size: 0.8rem;
        padding: 0.2rem 0.7rem;
        min-width: fit-content;
        white-space: nowrap;
    }
}

.yetenekler-listesi a {
    text-decoration: none;
}

.yetenek:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    border-color: var(--yazi-renk);
}

.yetenek {
    background-color: var(--yetenek-arkaplan-renk);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    color: var(--yetenek-yazi-renk);
    font-weight: 600;
    border: 2px solid var(--cizgi-renk);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    cursor: pointer;
    animation: scaleIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.yetenek-kategori {
    margin-bottom: 2rem;
}

.yetenek-kategori:last-child {
    margin-bottom: 0;
}

.yetenek-kategori h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--yazi-renk);
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 3px solid var(--cizgi-renk);
    display: inline-block;
}

.yetenek-kategori .yetenekler-listesi {
    margin-bottom: 0;
}

.alt-ikonlar {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    margin-top: 3rem;
    font-size: 1.5rem;
    color: #888;
    padding-bottom: 2rem;
}

.hakkimda {
    height: 100%;
}

.hakkimda h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.hakkimda p {
    font-size: 1rem;
    color: var(--aciklama-renk);
}

.ozgecmis-deneyim {
    height: 100%;
}

.ozgecmis-deneyim h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.ozgecmis-deneyim p {
    font-size: 1rem;
    color: var(--aciklama-renk);
}

.ozgecmis-deneyim-listesi {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.ozgecmis-deneyim-kart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 0.2rem 0;
    border-radius: 0.7rem;
    color: var(--yazi-renk);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    padding: 0.5rem;
    border-radius: 1rem;
}

.ozgecmis-deneyim-logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    border: 2px solid var(--aciklama-renk);
    margin-right: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.ozgecmis-deneyim-icerik {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ozgecmis-deneyim-kart:hover {
    background: var(--yetenek-arkaplan-renk);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.ozgecmis-deneyim-kart:hover .ozgecmis-deneyim-logo img {
    transform: scale(1.1);
    border-color: var(--yazi-renk);
}

.ozgecmis-deneyim-baslik {
    font-weight: 600;
    font-size: .875rem;
    color: var(--yazi-renk);
}

.ozgecmis-deneyim-aciklama {
    font-size: .625rem;
    font-weight: 400;
    color: var(--yazi-renk);
}

.ozgecmis-deneyim-tarih {
    font-size: .571rem;
    color: var(--aciklama-renk);
    min-width: 90px;
    text-align: right;
}

.iletisim {
    color: var(--yazi-renk);
    border-radius: 1.2rem;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
}

.iletisim-buton {
    background: transparent;
    color: var(--yazi-renk);
    border: 1px solid var(--cizgi-renk);
    border-radius: calc(0.5rem - 2px);
    padding: 0.4em 1.2em;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.iletisim-buton:hover {
    background: var(--yazi-renk);
    color: var(--background-renk);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.iletisim h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0.2rem;
}

.iletisim p {
    color: var(--aciklama-renk);
    font-size: .875rem;
}

.iletisim-ikonlar {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.iletisim-ikonlar a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    color: var(--yazi-renk);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.5rem;
    border: 2px solid var(--cizgi-renk);
    transform: scale(1);
}

.iletisim-ikonlar a:hover {
    background: #18191a;
    color: #fff;
    border-color: #000;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.iletisim-ikonlar svg {
    width: 14px;
    height: 14px;
}

.iletisim-bilgiler {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 1.2rem;
}

.iletisim-bilgiler div {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.7rem;
    background: transparent;
    color: var(--yazi-renk);
    border: 1px solid var(--cizgi-renk);
    border-radius: 0.7rem;
    padding: 0.7em 1.2em;
    font-size: .571rem;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 0.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    cursor: pointer;
}

.iletisim-bilgiler svg {
    width: 18px;
    height: 18px;
    color: var(--yazi-renk);
}

.iletisim-secenek {
    cursor: pointer;
}

.iletisim-bilgiler div:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--yazi-renk);
    background: var(--yetenek-arkaplan-renk);
}

@media screen and (max-width: 600px) {
    .iletisim {
        padding: 1.5rem;
    }

    .iletisim-ikonlar {
        gap: 1.5rem;
    }

    .iletisim-bilgiler div {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .iletisim-bilgiler svg {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 480px) {
    .iletisim {
        padding: 1rem;
    }
    
    .iletisim h3 {
        font-size: 1.3rem;
    }
    
    .iletisim p {
        font-size: 0.9rem;
    }
    
    .iletisim-ikonlar {
        gap: 1.2rem;
    }
    
    .iletisim-bilgiler div {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .iletisim-buton {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

.blog {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 10px;
}

.kart {
    background-color: var(--arkaplan-renk);
    padding: 5px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform: translateY(0);
    border: 2px solid transparent;
}
.kart:hover {
    border: 2px solid var(--cizgi-renk);
    transform: translateY(-8px);
    background: var(--yetenek-arkaplan-renk);
}
.kart h3 {
    font-size: 18px;
    margin: 0 0 10px;
}
.kart .tarih {
    font-size: 14px;
    color: var(--aciklama-renk);
    margin-bottom: 10px;
}
.projeler {
    color: var(--yazi-renk);
    text-align: center;
}

.proje-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
}

.proje-kart {
    display: flex;
    background-color: var(--yetenek-arkaplan-renk);
    border: 1px solid var(--cizgi-renk);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 200px;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
    transform: translateY(0);
    cursor: pointer;
}

.proje-kart:hover {
    transform: translateY(-8px);
    border-color: var(--yazi-renk);
}

.proje-kart:hover img {
    transform: scale(1.1);
    border-color: var(--yazi-renk);
}

.proje-kart img {
    align-self: center;
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--cizgi-renk);
    margin-left: 1rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.proje-kart .proje-icerik {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.proje-kart .proje-icerik > div {
    flex: 1;
    text-align: start;
}

.proje-kart .proje-icerik .linkler {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
    align-items: center;
}

.proje-kart h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.proje-kart p {
    color: var(--aciklama-renk);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.proje-kart a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--yazi-renk);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--cizgi-renk);
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    height: 36px;
    cursor: pointer;
    transform: scale(1);
}

.proje-kart a:hover {
    background-color: var(--yazi-renk);
    color: var(--background-renk);
    transform: scale(1.05);
}


@media screen and (max-width: 768px) {
    .proje-grid {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }

    .proje-kart {
        flex-direction: column;
        height: auto;
    }

    .proje-kart img {
        margin: 1rem auto 0 auto;
        width: 80px;
        height: 80px;
    }

    .proje-kart .proje-icerik {
        padding: 1rem;
    }

    .proje-kart .proje-icerik .linkler {
        justify-content: center;
        margin-top: 0.5rem;
        gap: 0.5rem;
    }
}


@media screen and (max-width: 768px) {

    .isim {
        font-size: 2.5rem;
    }

    .gelistirici {
        font-size: 1.2rem;
    }

    .projeler {
        grid-template-columns: 1fr;
    }

    .blog {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    nav {
        padding: 1.2rem;
        backdrop-filter: blur(15px);
        box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.2);
        max-width: 20rem;
    }
    
    nav ul li a {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    nav ul li a svg {
        width: 1.2rem;
        height: 1.2rem;
    }
    
    .nav-tooltip {
        font-size: 0.75rem;
        padding: 0.3em 0.7em;
        bottom: 70px;
    }
    
    nav ul li a:hover .nav-tooltip,
    nav ul li a:focus .nav-tooltip {
        opacity: 1;
    }
}

@media screen and (max-width: 480px) {
    nav {
        padding: .6rem;
        max-width: 16rem;
    }
    
    nav ul li a {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    nav ul li a svg {
        width: 1rem;
        height: 1rem;
    }
    
    .nav-tooltip {
        font-size: 0.7rem;
        padding: 0.25em 0.6em;
        bottom: 60px;
    }
    
    nav ul li a:hover .nav-tooltip,
    nav ul li a:focus .nav-tooltip {
        opacity: 1;
    }
}

@media screen and (min-width: 769px) {
    nav {
        max-width: 18rem;
    }
    
    nav ul li a {
        font-size: 0.9rem;
    }
    
    nav ul li a svg {
        width: 1rem;
        height: 1rem;
    }
}

@media screen and (min-width: 769px) {
    .proje-grid {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 600px) {
    .isim {
        font-size: 2.2rem;
    }
    
    .gelistirici {
        font-size: 1.1rem;
    }
    
    .proje {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .proje-baslik {
        font-size: 1.1rem;
    }
    
    .proje-aciklama {
        font-size: 0.9rem;
        max-width: 50rem;
    }
}

@media screen and (max-width: 480px) {
    .isim {
        font-size: 2rem;
    }
    
    .gelistirici {
        font-size: 1rem;
    }
    
    .proje {
        padding: 0.8rem;
    }
    
    .proje-baslik {
        font-size: 1rem;
    }
    
    .proje-aciklama {
        font-size: 0.85rem;
    }
    
    .one-cikan h2 {
        font-size: 1.3rem;
    }
    
    .one-cikan-aciklama {
        font-size: 0.9rem;
    }
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--background-renk);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--yazi-renk), var(--aciklama-renk));
    border-radius: 6px;
    border: 2px solid var(--background-renk);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--aciklama-renk), var(--yazi-renk));
    transform: scale(1.1);
}

::-webkit-scrollbar-corner {
    background: var(--background-renk);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--yazi-renk) var(--background-renk);
}

.proje-grid {
    scrollbar-width: thin;
    scrollbar-color: var(--yazi-renk) var(--background-renk);
}

.proje-grid::-webkit-scrollbar {
    height: 8px;
}

.proje-grid::-webkit-scrollbar-track {
    background: var(--yetenek-arkaplan-renk);
    border-radius: 4px;
}

.proje-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--yazi-renk), var(--aciklama-renk));
    border-radius: 4px;
    border: 1px solid var(--yetenek-arkaplan-renk);
}

.proje-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, var(--aciklama-renk), var(--yazi-renk));
}

[tema="koyu"] ::-webkit-scrollbar-track {
    background: var(--background-renk);
}

[tema="koyu"] ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--cizgi-renk), var(--yazi-renk));
    border: 2px solid var(--background-renk);
}

[tema="koyu"] ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--yazi-renk), var(--cizgi-renk));
}

[tema="koyu"] * {
    scrollbar-color: var(--cizgi-renk) var(--background-renk);
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}



::-webkit-scrollbar-thumb {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    
    .proje-grid::-webkit-scrollbar {
        height: 6px;
    }
}

body:hover ::-webkit-scrollbar-thumb {
    opacity: 1;
}

::-webkit-scrollbar-thumb:focus {
    outline: 2px solid var(--yazi-renk);
    outline-offset: 2px;
}

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





@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.anabilgi {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hakkimda {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.ozgecmis-deneyim {
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.iletisim {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.proje-kart {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.proje-kart:nth-child(1) { animation-delay: 0.2s; }
.proje-kart:nth-child(2) { animation-delay: 0.4s; }
.proje-kart:nth-child(3) { animation-delay: 0.6s; }
.proje-kart:nth-child(4) { animation-delay: 0.8s; }
.proje-kart:nth-child(5) { animation-delay: 1.0s; }
.proje-kart:nth-child(6) { animation-delay: 1.2s; }
.proje-kart:nth-child(7) { animation-delay: 1.4s; }
.proje-kart:nth-child(8) { animation-delay: 1.6s; }
.proje-kart:nth-child(9) { animation-delay: 1.8s; }
.proje-kart:nth-child(10) { animation-delay: 2.0s; }

.proje:nth-child(1) { animation-delay: 0.2s; }
.proje:nth-child(2) { animation-delay: 0.4s; }
.proje:nth-child(3) { animation-delay: 0.6s; }
.proje:nth-child(4) { animation-delay: 0.8s; }
.proje:nth-child(5) { animation-delay: 1.0s; }
.proje:nth-child(6) { animation-delay: 1.2s; }
.proje:nth-child(7) { animation-delay: 1.4s; }
.proje:nth-child(8) { animation-delay: 1.6s; }
.proje:nth-child(9) { animation-delay: 1.8s; }
.proje:nth-child(10) { animation-delay: 2.0s; }

.yetenekler-listesi a:nth-child(1) .yetenek { animation-delay: 0.2s; }
.yetenekler-listesi a:nth-child(2) .yetenek { animation-delay: 0.4s; }
.yetenekler-listesi a:nth-child(3) .yetenek { animation-delay: 0.6s; }
.yetenekler-listesi a:nth-child(4) .yetenek { animation-delay: 0.8s; }
.yetenekler-listesi a:nth-child(5) .yetenek { animation-delay: 1.0s; }
.yetenekler-listesi a:nth-child(6) .yetenek { animation-delay: 1.2s; }
.yetenekler-listesi a:nth-child(7) .yetenek { animation-delay: 1.4s; }
.yetenekler-listesi a:nth-child(8) .yetenek { animation-delay: 1.6s; }
.yetenekler-listesi a:nth-child(9) .yetenek { animation-delay: 1.8s; }
.yetenekler-listesi a:nth-child(10) .yetenek { animation-delay: 2.0s; }
.yetenekler-listesi a:nth-child(11) .yetenek { animation-delay: 2.2s; }
.yetenekler-listesi a:nth-child(12) .yetenek { animation-delay: 2.4s; }
.yetenekler-listesi a:nth-child(13) .yetenek { animation-delay: 2.6s; }
.yetenekler-listesi a:nth-child(14) .yetenek { animation-delay: 2.8s; }
.yetenekler-listesi a:nth-child(15) .yetenek { animation-delay: 3.0s; }
.yetenekler-listesi a:nth-child(16) .yetenek { animation-delay: 3.2s; }
.yetenekler-listesi a:nth-child(17) .yetenek { animation-delay: 3.4s; }
.yetenekler-listesi a:nth-child(18) .yetenek { animation-delay: 3.6s; }
.yetenekler-listesi a:nth-child(19) .yetenek { animation-delay: 3.8s; }
.yetenekler-listesi a:nth-child(20) .yetenek { animation-delay: 4.0s; }

.kart {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.kart:nth-child(1) { animation-delay: 0.2s; }
.kart:nth-child(2) { animation-delay: 0.4s; }
.kart:nth-child(3) { animation-delay: 0.6s; }
.kart:nth-child(4) { animation-delay: 0.8s; }
.kart:nth-child(5) { animation-delay: 1.0s; }
.kart:nth-child(6) { animation-delay: 1.2s; }

html {
    scroll-behavior: smooth;
}

.istatistikler span,
.yetenek,
.ozgecmis-deneyim-kart,
.iletisim-buton,
.iletisim-ikonlar a,
.iletisim-bilgiler div,
.proje-kart,
.proje-kart img,
.proje-kart a,
nav ul li a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



.anabilgi, .hakkimda, .ozgecmis-deneyim, .iletisim {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

body.loaded .anabilgi,
body.loaded .hakkimda,
body.loaded .ozgecmis-deneyim,
body.loaded .iletisim {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .anabilgi, .hakkimda, .ozgecmis-deneyim, .iletisim {
        margin-bottom: 1.8rem;
    }
    
    .ayrac {
        margin: 1.8rem 0;
    }
    
    .yetenek-kategori {
        margin-bottom: 1.5rem;
    }
    
    .yetenek-kategori h4 {
        font-size: 1.05rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .anabilgi, .hakkimda, .ozgecmis-deneyim, .iletisim {
        margin-bottom: 1.5rem;
    }
    
    .ayrac {
        margin: 1.5rem 0;
    }
    
    .yetenek-kategori {
        margin-bottom: 1.2rem;
    }
    
    .yetenek-kategori h4 {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }
}

.proje-grid {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

body.loaded .proje-grid {
    opacity: 1;
    transform: translateY(0);
}

.blog {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

#blog-icerik {
    margin-bottom: 3rem;
}

body.loaded .blog {
    opacity: 1;
    transform: translateY(0);
}

.blog-detay {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

body.loaded .blog-detay {
    opacity: 1;
    transform: translateY(0);
}

.blog-detay h1 {
    position: sticky;
    top: 0;
    padding: 1rem 0;
    margin: 0;
    z-index: 100;
    border-bottom: 1px solid var(--cizgi-renk);
    font-size: 1.175rem;
}

main, section, div, p, h1, h2, h3, h4, h5, h6 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }
    
    main {
        overflow-x: hidden;
    }
    
    .projeler, .yetenekler-listesi {
        overflow-x: hidden;
    }
}

.yetenekler {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 600px) {
    .yetenekler {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .yetenekler-listesi {
        justify-content: flex-start;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .yetenekler {
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .yetenekler-listesi {
        justify-content: flex-start;
        align-items: flex-start;
    }
}

/* Mobilde büyütme hareketini engelle - ek stiller */
@media (max-width: 768px) {
    * {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        touch-action: manipulation;
    }
    
    /* Sadece input ve textarea için metin seçimine izin ver */
    input, textarea {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
    
    /* Mobilde pinch zoom'u engelle */
    html, body {
        touch-action: manipulation;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}