:root {
    --bg: #04050a;
    --card: #0b0f18;
    --neon-1: #ffffff;
    --neon-2: #f0f0f0;
    --accent: #00aa55;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-2: rgba(255, 255, 255, 0.02);
    --text: #e6f7ff;
    --muted: #9fb3c8;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: linear-gradient(135deg, #0a0e14 0%, #1a1f2e 50%, #0f1419 100%);
    min-height: 100vh;
    position: relative;
    background-attachment: fixed;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    display: block;
    padding: 96px 40px 40px 40px;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/resimler/sitearkaplan/gemiana.jpg') center/cover no-repeat;
    background-attachment: fixed;
    filter: blur(8px);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

/* Mobil cihazlarda background-attachment: fixed desteklenmediği için alternatif */
@media (max-width: 768px) {
    body::before {
        background-attachment: scroll;
        position: absolute;
        min-height: 100vh;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        /* Tarayıcı uyumluluğu için */
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
}

/* Çok küçük ekranlarda arkaplan görselini optimize et */
@media (max-width: 480px) {
    body::before {
        background-size: cover;
        background-position: center top;
        opacity: 0.25;
        /* Tarayıcı uyumluluğu için */
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
}

/* Mobilde zoom uyumluluğu için */
@media screen and (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="0.3" fill="rgba(255,255,255,0.01)"/><circle cx="50" cy="10" r="0.4" fill="rgba(255,255,255,0.015)"/><circle cx="10" cy="60" r="0.2" fill="rgba(255,255,255,0.01)"/><circle cx="90" cy="40" r="0.3" fill="rgba(255,255,255,0.012)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}


/* app bar */

.appbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    background: rgba(15, 20, 30, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.appbar:hover {
    background: rgba(15, 20, 30, 0.9);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.appbar-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 16px;
    gap: 40px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 800;
    font-size: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(230, 247, 255, 0.3);
    transition: all 0.3s ease;
}

.brand:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    border-color: rgba(0, 255, 225, 0.5);
    box-shadow: 0 8px 25px rgba(0, 255, 225, 0.3);
    transform: scale(1.1);
}

.brand .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--neon-1), var(--neon-2))
}

.nav {
    display: flex;
    gap: 10px
}

.nav a {
    text-decoration: none;
    color: var(--text);
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nav a.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #f0f0f0);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}


/* Arama kutusu */

.search-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-input {
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 14px;
    width: 250px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
    outline: none;
    border-color: rgba(0, 255, 225, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 25px rgba(0, 255, 225, 0.2);
    transform: translateY(-1px);
}

.search-input::placeholder {
    color: var(--muted);
}

.search-btn {
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

.search-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(0, 255, 225, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 225, 0.2);
}


/* subtle animated background particles */

.bg-blob {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    mix-blend-mode: screen;
    animation: drift 20s linear infinite;
}

.blob.a {
    width: 420px;
    height: 420px;
    left: -5%;
    top: 10%;
    background: linear-gradient(45deg, var(--neon-2), transparent)
}

.blob.b {
    width: 320px;
    height: 320px;
    right: -8%;
    bottom: 5%;
    background: linear-gradient(45deg, var(--neon-1), transparent);
    animation-duration: 28s
}

@keyframes drift {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(30px)
    }
    100% {
        transform: translateY(0)
    }
}


/* container */

.scene {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 28px;
    align-items: center;
    z-index: 2;
    margin: 0 auto
}


/* glass card */

.card {
    width: 100%;
    height: 620px;
    padding: 32px;
    border-radius: 24px;
    background: rgba(20, 24, 28, 0.85);
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    perspective: 1200px;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}


/* neon outline */

.card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(60deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    filter: blur(18px);
    opacity: .3;
    mix-blend-mode: screen;
    pointer-events: none;
    transform: translateZ(-60px) scale(1.02);
}

.card-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.logo-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 14px
}

.logo {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: transparent;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.6px
}

.subtitle {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
    line-height: 1.5
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px
}

.meta .chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    color: var(--muted)
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start
}

h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.02
}

p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6
}

.badges {
    display: flex;
    gap: 8px;
    margin-top: 14px
}

.badge {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.03)
}

.cta-row {
    display: flex;
    gap: 12px;
    margin-top: auto;
    align-items: center
}

.btn {
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.4)
}

.ghost {
    padding: 10px 14px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--muted);
    cursor: pointer
}


/* right panel - scroll content */

.panel {
    height: 620px;
    padding: 28px;
    border-radius: 18px;
    background: rgba(20, 24, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: auto;
    backdrop-filter: blur(10px);
}

.section {
    margin-bottom: 18px
}

.section h3 {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #ffffff;
}

.section .text {
    color: var(--muted);
    font-size: 14px
}


/* decorative glow behind card title */

.title-glow {
    position: absolute;
    left: 130px;
    top: 26px;
    width: 260px;
    height: 80px;
    border-radius: 16px;
    background: radial-gradient(120px 40px at 30% 50%, rgba(255, 255, 255, 0.08), transparent), radial-gradient(120px 40px at 70% 50%, rgba(255, 255, 255, 0.06), transparent);
    filter: blur(20px);
    opacity: .4;
    pointer-events: none;
    animation: floaty 8s ease-in-out infinite
}


/* tilt hover effect */

.card:hover {
    box-shadow: 0 16px 50px rgba(2, 6, 23, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.02)
}


/* small responsive */

@media (max-width:980px) {
    .scene {
        grid-template-columns: 1fr;
        max-width: 820px
    }
    .card {
        height: auto
    }
    .panel {
        height: auto;
        margin-top: 18px
    }
}


/* neon pulse */

@keyframes pulseNeon {
    0% {
        filter: drop-shadow(0 0 8px rgba(0, 255, 225, 0.12))
    }
    50% {
        filter: drop-shadow(0 0 22px rgba(106, 0, 255, 0.22))
    }
    100% {
        filter: drop-shadow(0 0 8px rgba(0, 255, 225, 0.12))
    }
}

.logo {
    animation: pulseNeon 3.8s ease-in-out infinite
}


/* subtle float for the card */

@keyframes floaty {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-8px)
    }
    100% {
        transform: translateY(0)
    }
}


/* scrollbar styling */

.panel::-webkit-scrollbar {
    width: 10px
}

.panel::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-1), var(--neon-2));
    border-radius: 10px;
    opacity: .45
}


/* page sections */

.section-wrap {
    width: 100%;
    margin-top: 32px;
    z-index: 2
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 18px
}

.glass-block {
    padding: 28px;
    border-radius: 18px;
    background: rgba(20, 24, 28, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(2, 6, 23, 0.3);
    backdrop-filter: blur(15px);
}

.section-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #ffffff;
}


/* iletişim grid */

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px
}

.map-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.map-wrapper iframe {
    transition: transform 0.3s ease;
}

.map-wrapper:hover iframe {
    transform: scale(1.02);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.person-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04)
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--neon-2), var(--neon-1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #02111a;
    font-weight: 800;
    position: relative;
}

.name {
    font-weight: 700;
}

.role {
    font-size: 12px;
    color: var(--muted)
}

.contact-line {
    font-size: 13px;
    color: var(--muted)
}

.socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px
}

.chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px
}

.member-desc {
    font-size: 13px;
    color: var(--muted)
}

@media (max-width:980px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
    .contact-cards {
        grid-template-columns: 1fr
    }
}


/* team cards */

.team-group-title {
    margin: 14px 0 8px 0;
    font-size: 16px;
    color: var(--neon-1)
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.team-card {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform .15s ease, box-shadow .15s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(2, 6, 23, .4)
}

.team-photo {
    width: 86px;
    height: 86px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(106, 0, 255, .25), rgba(0, 255, 225, .18))
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.team-name {
    font-weight: 700;
    color: #ffffff;
}

.team-role {
    font-size: 12px;
    color: var(--muted)
}

.team-desc {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px
}

@media (max-width:980px) {
    .team-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:640px) {
    .team-grid {
        grid-template-columns: 1fr
    }
}


/* Proje Dosyaları */

.files-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.file-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-decoration: none;
    color: var(--text);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    cursor: pointer;
}

.file-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(2, 6, 23, .4);
    background: rgba(255, 255, 255, 0.04);
}

.file-name {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.file-desc {
    font-size: 13px;
    color: var(--muted);
}

.file-download-icon span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .files-grid {
        grid-template-columns: 1fr;
    }
}


/* Social Media Links */

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--muted);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.15s ease;
}

.social-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-1px);
}

.social-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}


/* LinkedIn Kartları */

.linkedin-card {
    display: block;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.linkedin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.linkedin-card:hover::before {
    left: 100%;
}

.linkedin-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.linkedin-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.linkedin-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.linkedin-info {
    flex: 1;
}

.linkedin-name {
    font-weight: 700;
    color: var(--text);
    font-size: 16px;
    margin-bottom: 4px;
}

.linkedin-role {
    font-size: 14px;
    color: var(--muted);
    opacity: 0.8;
}

.linkedin-card:hover .linkedin-name {
    color: #ffffff;
}

.linkedin-card:hover .linkedin-role {
    color: var(--text);
    opacity: 1;
}


/* Contact Avatar Images */

.contact-cards .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* Works Section */

.works-section {
    background: linear-gradient(180deg, var(--glass), var(--glass-2));
    position: relative;
}

.works-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 5, 10, 0.3);
    border-radius: 18px;
    z-index: 1;
}

.works-section>* {
    position: relative;
    z-index: 2;
}


/* Team Section */

.team-section {
    background: linear-gradient(180deg, var(--glass), var(--glass-2));
    position: relative;
}

.team-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 5, 10, 0.25);
    border-radius: 18px;
    z-index: 1;
}

.team-section>* {
    position: relative;
    z-index: 2;
}


/* Competition Section */

.competition-section {
    background: linear-gradient(180deg, var(--glass), var(--glass-2));
    position: relative;
}

.competition-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 5, 10, 0.2);
    border-radius: 18px;
    z-index: 1;
}

.competition-section>* {
    position: relative;
    z-index: 2;
}


/* Files Section */

.files-section {
    background: linear-gradient(180deg, var(--glass), var(--glass-2));
    position: relative;
}

.files-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 5, 10, 0.25);
    border-radius: 18px;
    z-index: 1;
}

.files-section>* {
    position: relative;
    z-index: 2;
}


/* LinkedIn Section */

.linkedin-section {
    background: linear-gradient(180deg, var(--glass), var(--glass-2));
    position: relative;
}

.linkedin-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 5, 10, 0.25);
    border-radius: 18px;
    z-index: 1;
}

.linkedin-section>* {
    position: relative;
    z-index: 2;
}

/* Contact Section */

.contact-section {
    background: linear-gradient(180deg, var(--glass), var(--glass-2));
    position: relative;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 5, 10, 0.3);
    border-radius: 18px;
    z-index: 1;
}

.contact-section>* {
    position: relative;
    z-index: 2;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.work-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.work-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-1), var(--neon-2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(2, 6, 23, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.work-card:hover::before {
    opacity: 1;
}

.work-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.work-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.work-date {
    font-size: 12px;
    color: var(--muted);
}

.action-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.download-btn {
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    color: var(--text);
    font-weight: 600;
    transition: all 0.15s ease;
}

.download-btn-small {
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.work-link:hover .download-btn {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

.work-link:hover .download-btn-small {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

.work-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(106, 0, 255, 0.1), rgba(0, 255, 225, 0.1));
    margin-bottom: 20px;
    position: relative;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.05);
}

.work-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.work-desc {
    margin: 0 0 20px 0;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    opacity: 0.95;
    flex-grow: 1;
}


/* İletişim formu */

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
}

.submit-btn {
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}


/* Animasyonlar */

.glass-block,
.team-card,
.work-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.glass-block.animate-in,
.team-card.animate-in,
.work-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}


/* Loading animasyonu - sadece ana sayfada aktif */

body:not(.loaded):not(.member-page):not(.detail-page) {
    overflow: hidden;
}

body:not(.loaded):not(.member-page):not(.detail-page)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e14 0%, #1a1f2e 50%, #0f1419 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

body:not(.loaded):not(.member-page):not(.detail-page)::after {
    content: 'ÇAKÜ BARBAROS';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text);
    font-size: 24px;
    font-weight: 700;
    z-index: 10000;
    animation: pulse 2s infinite;
}

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


/* Sponsorluk modülü stilleri */


/* Sponsorluk paketleri - Sade başlık */


/* Sponsor hakları tablosu */

.benefits-table-container {
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    margin-bottom: 30px;
}

.benefits-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.benefits-table th {
    padding: 16px;
    text-align: left;
    color: var(--text);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.benefits-table th:first-child {
    text-align: left;
    min-width: 300px;
}

.benefits-table th:not(:first-child) {
    text-align: center;
    min-width: 120px;
}

.benefits-table td {
    padding: 12px 16px;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.benefits-table td:not(:first-child) {
    text-align: center;
}

.benefits-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.check {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}


/* Tablo sponsor ikonları */

.table-sponsor-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.laurel-wreath-table {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.laurel-wreath-table.bronze {
    background: linear-gradient(135deg, #cd7f32, #8b4513);
}

.laurel-wreath-table.silver {
    background: linear-gradient(135deg, #c0c0c0, #808080);
}

.laurel-wreath-table.gold {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.laurel-wreath-table.diamond {
    background: linear-gradient(135deg, #00bfff, #0080ff);
}

.laurel-wreath-table.premium {
    background: linear-gradient(135deg, #ff0000, #8b0000);
}

.table-sponsor-text {
    font-size: 9px;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}


/* Ek bilgiler tablosu */

.additional-info-table-container {
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.additional-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.additional-info-table th {
    padding: 16px;
    text-align: left;
    color: var(--text);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.additional-info-table th:first-child {
    text-align: left;
    min-width: 200px;
}

.additional-info-table th:not(:first-child) {
    text-align: center;
    min-width: 120px;
}

.additional-info-table td {
    padding: 12px 16px;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.additional-info-table td:not(:first-child) {
    text-align: center;
}

.additional-info-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}


/* Sponsorluk iletişim butonu */

.sponsor-contact-btn {
    text-align: center;
    margin-top: 30px;
}

.contact-button {
    display: inline-block;
    padding: 16px 32px;
    background: transparent !important;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 768px) {
    .benefits-table th:first-child {
        min-width: 200px;
    }
    .benefits-table th:not(:first-child) {
        min-width: 80px;
    }
    .laurel-wreath-table {
        width: 60px;
        height: 60px;
    }
    .table-sponsor-text {
        font-size: 7px;
    }
    .contact-button {
        padding: 14px 28px;
        font-size: 14px;
    }
    /* LinkedIn Kartları Mobil */
    .linkedin-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .linkedin-card {
        padding: 16px;
    }
    .linkedin-content {
        gap: 12px;
    }
    .linkedin-icon {
        width: 28px;
        height: 28px;
    }
    .linkedin-name {
        font-size: 15px;
    }
    .linkedin-role {
        font-size: 13px;
    }
}


/* Mobil hamburger menü */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: #ffffff;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* Responsive tasarım iyileştirmeleri */

@media (max-width: 980px) {
    .appbar {
        height: 60px;
    }
    .appbar-inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 20px;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 20, 30, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    .nav.active {
        display: flex;
    }
    .nav a {
        width: 100%;
        text-align: center;
        padding: 16px;
        border-radius: 12px;
        white-space: normal;
    }
    .search-container {
        order: 0;
        width: auto;
    }
    .search-input {
        width: 200px;
    }
    .brand {
        font-size: 20px;
    }
    .brand-logo {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 80px 16px 20px 16px;
        font-size: 16px;
        line-height: 1.6;
        /* Mobilde zoom uyumluluğu */
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    .appbar {
        height: 60px;
        /* Sabit boyut için */
        min-height: 60px;
        max-height: 60px;
    }
    .appbar-inner {
        padding: 0 16px;
    }
    .search-input {
        width: 150px;
        font-size: 13px;
    }
    .brand {
        font-size: 18px;
    }
    .brand-logo {
        width: 28px;
        height: 28px;
        /* Sabit boyut için */
        min-width: 28px;
        min-height: 28px;
        max-width: 28px;
        max-height: 28px;
    }
    .card {
        padding: 24px;
        border-radius: 20px;
        height: auto;
        min-height: auto;
        /* Mobilde sabit genişlik */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .nav a {
        font-size: 16px;
        padding: 18px;
    }
    .scene {
        grid-template-columns: 1fr;
        gap: 24px;
        /* Sabit genişlik */
        width: 100%;
        max-width: 100%;
    }
    .panel {
        height: auto;
        margin-top: 0;
        padding: 24px;
        /* Sabit genişlik */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Mobilde butonları büyüt ve iyileştir */
    .btn, .ghost {
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        min-height: 48px;
        border-radius: 12px;
        margin: 8px 0;
    }
    
    .cta-row {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }
    
    .cta-row .btn,
    .cta-row .ghost {
        width: 100%;
        text-align: center;
    }
    
    /* Badge'leri mobilde daha büyük yap */
    .badges {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .badge {
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        text-align: center;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Meta chip'leri iyileştir */
    .meta {
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
    }
    
    .meta .chip {
        padding: 8px 12px;
        font-size: 13px;
        text-align: center;
    }
    
    /* Mobilde metin okunabilirliğini artır */
    h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 16px;
        text-align: left;
    }
    
    .title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    
    .subtitle {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    /* Logo row'u mobilde daha iyi düzenle */
    .logo-row {
        grid-template-columns: 80px 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    /* Hero section spacing */
    .hero {
        gap: 20px;
    }
    
    /* Section spacing'i artır */
    .section {
        margin-bottom: 24px;
    }
    
    .section h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .section .text {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .work-card {
        padding: 20px;
    }
    .work-image {
        height: 180px;
        margin-bottom: 16px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-form-container {
        margin-top: 20px;
    }
    .search-input {
        width: 100%;
        max-width: 200px;
    }
    .nav a {
        padding: 12px 16px;
        font-size: 14px;
    }
    .team-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        /* Sabit genişlik */
        width: 100%;
        max-width: 100%;
    }
    
    .team-card {
        padding: 16px;
        /* Sabit boyutlar */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-height: 120px;
        display: flex;
        align-items: center;
    }
    
    .team-photo {
        width: 70px;
        height: 70px;
        /* Sabit boyutlar */
        min-width: 70px;
        min-height: 70px;
        max-width: 70px;
        max-height: 70px;
        flex-shrink: 0;
    }
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .person-card {
        padding: 16px;
    }
    .avatar {
        width: 50px;
        height: 50px;
    }
    .files-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .file-card {
        padding: 16px;
    }
    .benefits-table-container,
    .additional-info-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .benefits-table th:first-child {
        min-width: 200px;
    }
    .benefits-table th:not(:first-child) {
        min-width: 80px;
    }
    .laurel-wreath-table {
        width: 60px;
        height: 60px;
    }
    .table-sponsor-text {
        font-size: 7px;
    }
    .contact-button {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Ekstra küçük ekranlar için özel kurallar */
@media (max-width: 480px) {
    body {
        padding: 70px 12px 16px 12px;
        font-size: 15px;
    }
    .appbar {
        height: 55px;
    }
    .appbar-inner {
        padding: 0 12px;
    }
    .brand {
        font-size: 16px;
    }
    .brand-logo {
        width: 24px;
        height: 24px;
    }
    .card {
        padding: 20px;
        border-radius: 16px;
        min-height: auto;
        /* Sabit genişlik */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .panel {
        padding: 20px;
    }
    
    /* Çok küçük ekranlarda butonları daha da büyüt */
    .btn, .ghost {
        padding: 18px 24px;
        font-size: 16px;
        min-height: 52px;
    }
    
    .badge {
        padding: 14px 16px;
        font-size: 15px;
        min-height: 48px;
    }
    
    /* Metin boyutlarını küçük ekranlar için optimize et */
    h1 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .title {
        font-size: 18px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    /* Logo boyutunu küçük ekranlar için ayarla */
    .logo-row {
        grid-template-columns: 70px 1fr;
        gap: 14px;
    }
    
    .logo {
        width: 70px;
        height: 70px;
    }
    
    .work-card {
        padding: 16px;
    }
    .work-image {
        height: 150px;
    }
    .team-card {
        padding: 12px;
    }
    .team-photo {
        width: 60px;
        height: 60px;
    }
    .person-card {
        padding: 12px;
    }
    .avatar {
        width: 40px;
        height: 40px;
    }
    .file-card {
        padding: 12px;
    }
    .contact-button {
        padding: 12px 24px;
        font-size: 13px;
    }
    .search-input {
        width: 120px;
        font-size: 12px;
    }
    .nav a {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Mobilde genel görsel iyileştirmeler */
@media (max-width: 768px) {
    /* Glass block'ları mobilde daha iyi görünmesi için */
    .glass-block {
        padding: 24px;
        margin-bottom: 20px;
        /* Sabit genişlik */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 16px;
        text-align: center;
    }
    
    /* Takım kartlarını mobilde daha iyi düzenle */
    .team-group-title {
        font-size: 18px;
        margin: 20px 0 12px 0;
        text-align: center;
    }
    
    .member-desc {
        font-size: 15px;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 20px;
    }
    
    /* Çalışma kartlarını mobilde optimize et */
    .work-title {
        font-size: 18px;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .work-desc {
        font-size: 15px;
        line-height: 1.6;
        text-align: left;
    }
    
    .work-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .download-btn,
    .download-btn-small {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    /* İletişim formunu mobilde iyileştir */
    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        padding: 16px;
        border-radius: 12px;
    }
    
    .submit-btn {
        padding: 16px 24px;
        font-size: 16px;
        width: 100%;
    }
    
    /* Sosyal medya linklerini mobilde daha iyi düzenle */
    .socials {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .social-link {
        padding: 16px;
        font-size: 15px;
        justify-content: center;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
    
    /* LinkedIn kartları mobilde */
    .linkedin-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .linkedin-card {
        padding: 20px;
    }
    
    .linkedin-content {
        gap: 16px;
    }
    
    .linkedin-icon {
        width: 32px;
        height: 32px;
    }
    
    .linkedin-name {
        font-size: 16px;
    }
    
    .linkedin-role {
        font-size: 14px;
    }
    
    /* Mobilde container genişliğini optimize et */
    .container {
        padding: 0 4px;
        /* Sabit genişlik */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Mobilde section wrap spacing'i artır */
    .section-wrap {
        margin-top: 24px;
    }
    
    /* Mobilde card içindeki spacing'i iyileştir */
    .card-inner {
        gap: 20px;
    }
    
    /* Mobilde panel içindeki spacing'i iyileştir */
    .panel .section:last-child {
        margin-bottom: 0;
    }
    
    /* Mobilde daha iyi görsel hiyerarşi için */
    .hero h1 {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hero p {
        text-align: justify;
        hyphens: auto;
    }
    
    /* Mobilde meta bilgileri daha iyi düzenle */
    .meta {
        background: rgba(255, 255, 255, 0.05);
        padding: 12px;
        border-radius: 12px;
        margin-top: 16px;
    }
    
    /* Mobilde badge'leri daha görünür yap */
    .badges {
        background: rgba(255, 255, 255, 0.03);
        padding: 16px;
        border-radius: 12px;
        margin-top: 24px;
    }
}

/* Mobil cihazlarda dokunma etkileşimleri için iyileştirmeler */
@media (hover: none) and (pointer: coarse) {
    .card:hover {
        transform: none;
        box-shadow: 0 20px 60px rgba(2, 6, 23, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05);
    }
    .team-card:hover {
        transform: none;
        box-shadow: 0 14px 30px rgba(2, 6, 23, .4);
    }
    .work-card:hover {
        transform: none;
        box-shadow: 0 25px 60px rgba(2, 6, 23, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    .file-card:hover {
        transform: none;
        box-shadow: 0 14px 30px rgba(2, 6, 23, .4);
    }
    .linkedin-card:hover {
        transform: none;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    }
}

/* Yüksek DPI ekranlar için iyileştirmeler */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .brand-logo,
    .team-photo img,
    .avatar img,
    .social-icon,
    .linkedin-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Tarayıcı uyumluluğu için ek kurallar */
@media screen and (max-width: 768px) {
    /* Safari ve Chrome için */
    .card,
    .glass-block,
    .team-card,
    .work-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Firefox için */
    @-moz-document url-prefix() {
        .card,
        .glass-block,
        .team-card,
        .work-card {
            width: 100% !important;
            max-width: 100% !important;
        }
    }
    
    /* IE/Edge için */
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
        .card,
        .glass-block,
        .team-card,
        .work-card {
            width: 100% !important;
            max-width: 100% !important;
        }
    }
}

/* Mobilde zoom sırasında sabit kalması için */
@media screen and (max-width: 768px) {
    * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
}