
        /* Temel Stiller */
        :root {
            --primary: #0a0a0a;
            --secondary: #1a1a1a;
            --accent: #ff6b35;
            --accent-light: #ff8e53;
            --accent-dark: #e55a2b;
            --text: #ffffff;
            --text-secondary: #b0b0b0;
            --card-bg: rgba(26, 26, 26, 0.8);
            --glass-bg: rgba(255, 107, 53, 0.1);
            --glass-border: rgba(255, 107, 53, 0.3);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            --shadow-hover: 0 25px 50px rgba(255, 107, 53, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
        }

        /* Özel Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, var(--accent), var(--accent-dark));
            border-radius: 4px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.4s ease;
            padding: 1rem 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
            text-decoration: none;
            letter-spacing: -0.5px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            z-index: 1;
        }

        .logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }

        .logo:hover::before {
            left: 100%;
        }

        .logo span {
            color: var(--accent);
            transition: all 0.4s ease;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-link {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.5rem 0;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--accent);
        }

        .hamburger {
            display: none;
            cursor: none;
            font-size: 1.3rem;
            color: var(--accent);
            background: none;
            border: none;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .hamburger:hover {
            transform: rotate(90deg);
        }

        /* Hero Bölümü */
        .about-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 0 5%;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
            background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 1000px;
            width: 100%;
            position: relative;
        }

        .hero-badge {
            display: inline-block;
            background: var(--glass-bg);
            color: var(--accent);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            text-transform: uppercase;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease 0.5s forwards;
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
            transition: left 0.7s ease;
        }

        .hero-badge:hover::before {
            left: 100%;
        }

        .hero-badge:hover {
            background: var(--accent);
            color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }

        .hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: -1px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease 0.8s forwards;
        }

        .hero-title span {
            color: var(--accent);
            display: block;
            position: relative;
            overflow: hidden;
            background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 3s infinite linear;
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease 1.1s forwards;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hakkımızda Bölümü */
        .about-section {
            padding: 8rem 5%;
            background: var(--primary);
            position: relative;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-badge {
            display: inline-block;
            background: var(--glass-bg);
            color: var(--accent);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            border: 1px solid var(--glass-border);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--accent);
            position: relative;
            display: inline-block;
            filter: blur(10px);
            transform: translateY(30px);
            transition: all 1s ease;
        }

        .section-title.visible {
            filter: blur(0);
            transform: translateY(0);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.6s ease;
        }

        .section-title:hover::after {
            width: 100%;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.4s;
        }

        .about-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 6rem;
            text-align: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Takım Bölümü */
        .team-section {
            padding: 6rem 5%;
            background: var(--secondary);
            position: relative;
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-category {
            margin-bottom: 6rem;
        }

        /* Başlık Boyutu Ayarı: Yönetici Ekip */
        .category-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.0rem; 
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--accent);
        }
        
        /* Başlık Boyutu Ayarı: Kurucu Kadro (Yönetici ekipten büyük) */
        .founder-team .category-title {
            font-size: 3.0rem;
        }


        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        /* Fotoğraf Kartları */
        .photo-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            cursor: none;
            opacity: 0;
            transform: translateY(50px);
            perspective: 1000px;
            transform-style: preserve-3d;
            height: 550px; /* TEMEL KART YÜKSEKLİĞİ */
            display: flex;
            flex-direction: column;
        }

        /* YÖNETİCİ EKİP KARTLARI İÇİN ALTTAN VE ÜSTTEN UZATMA - DAHA FAZLA UZUNLUK */
        .team-category:not(.founder-team) .photo-card {
            height: 680px; /* Yönetici ekip kartlarını 130px daha uzattık */
        }

        /* Fotoğraf alanını daha fazla büyüt */
        .team-category:not(.founder-team) .member-photo-container {
            flex: 1.4; /* Fotoğraf alanını %40 daha büyüt */
            min-height: 75%;
        }

        /* Fotoğrafın kendisini daha fazla uzat */
        .team-category:not(.founder-team) .member-photo {
            height: 100%; /* Fotoğrafı %15 daha uzun yap */
            object-position: center 25%; /* Odak noktasını yukarı al */
        }

        /* KURUCU KADRO KARTLARI İÇİN YÜKSEKLİK AYARI (Kullanıcının İsteği) */
        .founder-team .photo-card {
            height: 750px; /* Kurucu kadro kartlarını 200px daha uzun yaptık */
        }

        .photo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
            transition: left 0.7s ease;
            z-index: 2;
        }

        .photo-card:hover::before {
            left: 100%;
        }

        .member-photo-container {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            flex: 1;
            display: flex;
            align-items: flex-start; /* ÜSTTEN BAŞLAYARAK UZAT */
            justify-content: center;
            background-color: var(--card-bg);
            transform-style: preserve-3d;
            transition: transform 0.3s ease;
            will-change: transform;
        }

        /* Fotoğraf Orantı Ayarı (TAM KAPSAMA) */
        .member-photo {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            object-position: center center;
            transition: all 0.4s ease;
            display: block;
            will-change: transform;
            transform: translateZ(0);
        }

        .photo-card:hover .member-photo {
            transform: scale(1.1) translateZ(20px);
        }

        .member-info-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
            transform: translateY(100%);
            transition: all 0.3s ease;
            text-align: center;
            z-index: 3;
        }

        .photo-card:hover .member-info-overlay {
            transform: translateY(0);
        }

        .member-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .member-position {
            font-size: 1rem;
            color: var(--accent);
            font-weight: 600;
        }

        /* Kullanıcının isteği üzerine Kurucu Kadro üye isimlerinin ve unvanlarının uzunluğunu artırma (letter-spacing) */
        .kurucu-text-buyut {
            letter-spacing: 2.5px; 
            transition: letter-spacing 0.3s ease;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            backdrop-filter: blur(10px);
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--card-bg);
            border-radius: 20px;
            max-width: 1100px;
            width: 100%;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            overflow: hidden;
            position: relative;
            max-height: 85vh;
            display: flex;
            flex-direction: column;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            z-index: 10;
        }

        .modal-close:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: rotate(90deg);
        }

        .modal-photo-container {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--card-bg);
            flex-shrink: 0;
            height: 400px;
        }

        /* Modal Fotoğraf Düzenlemesi - ORANTAJLI VE BOŞLUKSUZ */
        .modal-photo {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            max-height: 100%;
            max-width: 100%;
            background-color: var(--card-bg);
        }

        .modal-info {
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            flex-grow: 1;
        }

        .modal-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .modal-position {
            font-size: 1.3rem;
            color: var(--text);
            font-weight: 600;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--glass-border);
        }

        .modal-bio {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            flex-grow: 1;
        }

        .modal-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .modal-stat {
            text-align: center;
            background: rgba(255, 107, 53, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid var(--glass-border);
        }

        .modal-stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .modal-stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .modal-skills {
            margin-top: 2rem;
        }

        .modal-skills-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .skill-tag {
            background: rgba(255, 107, 53, 0.1);
            color: var(--accent);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            border: 1px solid var(--glass-border);
        }

        /* Footer */
        footer {
            background: var(--primary);
            padding: 6rem 5% 3rem;
            border-top: 1px solid var(--glass-border);
            position: relative;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .footer-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-logo span {
            color: var(--accent);
        }

        .footer-tagline {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--card-bg);
            color: var(--accent);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid var(--glass-border);
            font-size: 1.5rem;
            position: relative;
            overflow: hidden;
            cursor: none;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
            border-color: var(--accent);
        }

        .footer-divider {
            height: 1px;
            background: var(--glass-border);
            margin: 3rem 0;
            width: 100%;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Scroll Animasyonları */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 4rem;
            }
            
            .section-title {
                font-size: 3rem;
            }
            
            .modal-content {
                max-width: 95%;
            }
        }

        @media (min-width: 993px) {
            .modal-content {
                flex-direction: row;
                max-height: 85vh;
            }
            
            .modal-photo-container {
                width: 45%;
                height: auto;
                max-height: 85vh;
            }
            
            .modal-info {
                width: 55%;
                max-height: 85vh;
            }
            
            .modal-photo {
                object-fit: contain;
                max-height: 85vh;
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .modal-content {
                max-width: 700px;
                max-height: 90vh;
            }
            
            .modal-photo-container {
                height: 350px;
            }
            
            .modal-photo {
                object-fit: contain;
            }
            
            .modal-info {
                overflow-y: auto;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                flex-direction: column;
                background: var(--primary);
                width: 80%;
                height: 100vh;
                padding: 8rem 2rem 2rem;
                transition: 0.5s ease;
                border-left: 1px solid var(--glass-border);
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .photo-card {
                height: 500px;
            }

            /* YÖNETİCİ EKİP MOBİL - DAHA UZUN */
            .team-category:not(.founder-team) .photo-card {
                height: 600px;
            }

            /* Fotoğraf alanını mobilde de büyüt */
            .team-category:not(.founder-team) .member-photo-container {
                flex: 1.3;
                min-height: 70%;
            }

            .founder-team .photo-card {
                height: 650px;
            }
            
            .modal-stats {
                grid-template-columns: 1fr;
            }
            
            .modal-info {
                padding: 1.5rem;
            }
            
            .modal-photo-container {
                height: 300px;
            }
            
            .social-links {
                gap: 1rem;
            }
            
            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            @media (hover: none) and (pointer: coarse) {
                * {
                    cursor: auto !important;
                }
                .custom-cursor {
                    display: none;
                }
                .photo-card, .modal-close, .social-link {
                    cursor: pointer !important;
                }
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .footer-logo {
                font-size: 2.5rem;
            }
            
            .modal-photo-container {
                height: 250px;
            }
            
            .modal-name {
                font-size: 1.8rem;
            }
            
            .photo-card {
                height: 450px;
            }

            /* YÖNETİCİ EKİP MOBİL KÜÇÜK - DAHA UZUN */
            .team-category:not(.founder-team) .photo-card {
                height: 550px;
            }

            .founder-team .photo-card {
                height: 580px;
            }
        }
