
        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Performance optimizations */
        html {
            scroll-behavior: smooth;
        }

        body {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #1a1a2e;
            overflow-x: hidden;
            background: #ffffff;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 40px rgba(88, 101, 242, 0.1);
            z-index: 1000;
            padding: 1rem 5%;
            transition: all 0.3s ease;
        }

        .navbar:hover {
            box-shadow: 0 10px 50px rgba(88, 101, 242, 0.15);
        }

        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 60px;
            transition: all 0.3s ease;
            filter: brightness(0) saturate(100%);
        }

        .logo:hover {
            transform: scale(1.05) rotate(2deg);
            filter: brightness(0) saturate(100%) drop-shadow(0 0 15px rgba(88, 101, 242, 0.6));
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .mobile-menu-toggle {
            display: none;
        }

        /* Desktop için mobil menüyü gizle */
        .mobile-menu {
            display: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #1a1a2e;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            font-size: 1.05rem;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #5865f2, #7289da);
            transition: width 0.3s ease;
            border-radius: 10px;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #5865f2;
            transform: translateY(-2px);
        }

        .hero {
            min-height: 100vh;
            background: 
                linear-gradient(135deg, 
                    #0f0f23 0%, 
                    #1a1a2e 25%, 
                    #16213e 50%, 
                    #0f3460 75%, 
                    #533483 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 2rem;
            cursor: none;
        }

        .hero:hover .shape {
            animation-play-state: paused;
        }

        .hero:hover .shape-1,
        .hero:hover .shape-2,
        .hero:hover .shape-3,
        .hero:hover .shape-4 {
            transform: scale(1.2);
            opacity: 0.3;
        }

        .hero:hover .shape-5,
        .hero:hover .shape-6,
        .hero:hover .shape-7,
        .hero:hover .shape-8 {
            transform: scale(0.8);
            opacity: 0.05;
        }

        .hero:hover .shape-9,
        .hero:hover .shape-10 {
            transform: scale(1.5);
            opacity: 0.4;
        }

        .hero:hover::before {
            animation-play-state: paused;
            transform: scale(1.1);
            opacity: 0.9;
        }

        .hero:hover .hero-content::before {
            animation-play-state: paused;
            transform: scale(1.2);
            opacity: 0.8;
        }

        .hero:hover .hero-content h1 {
            animation-play-state: paused;
            transform: scale(1.1);
        }

        .hero:hover .hero-content p {
            animation-play-state: paused;
            transform: translateY(-5px);
        }

        .hero:hover .cta-button {
            animation-play-state: paused;
            transform: scale(1.1);
        }

        .hero:hover .cta-button::before {
            right: 1rem;
            opacity: 1;
            transform: rotate(45deg);
        }

        .hero:hover .cta-button:hover {
            transform: translateY(-15px) scale(1.2);
            box-shadow: 0 40px 100px rgba(255, 107, 237, 0.6);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(88, 101, 242, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 107, 237, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 40% 80%, rgba(114, 137, 218, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 60% 20%, rgba(255, 107, 237, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 10% 60%, rgba(88, 101, 242, 0.08) 0%, transparent 30%),
                radial-gradient(circle at 90% 40%, rgba(255, 107, 237, 0.08) 0%, transparent 30%);
            animation: blobMove 15s ease-in-out infinite, backgroundPulse 12s ease-in-out infinite;
        }

        @keyframes backgroundPulse {
            0%, 100% { 
                opacity: 1;
                transform: scale(1);
            }
            50% { 
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        @keyframes blobMove {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, -30px) scale(1.1); }
            66% { transform: translate(-30px, 40px) scale(0.9); }
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        /* Çılgın Particle Sistemi */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: linear-gradient(45deg, #5865f2, #ff6bed, #7289da);
            border-radius: 50%;
            animation: particleFloat 8s ease-in-out infinite;
            box-shadow: 0 0 20px rgba(88, 101, 242, 0.8), 0 0 40px rgba(255, 107, 237, 0.6);
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 6s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 8s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 7s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 3s; animation-duration: 9s; }
        .particle:nth-child(5) { left: 50%; animation-delay: 4s; animation-duration: 6s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 8s; }
        .particle:nth-child(7) { left: 70%; animation-delay: 6s; animation-duration: 7s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 7s; animation-duration: 9s; }
        .particle:nth-child(9) { left: 90%; animation-delay: 8s; animation-duration: 6s; }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
                transform: translateY(90vh) rotate(36deg) scale(1);
            }
            90% {
                opacity: 1;
                transform: translateY(10vh) rotate(324deg) scale(1);
            }
            100% {
                transform: translateY(-10vh) rotate(360deg) scale(0);
                opacity: 0;
            }
        }

        /* Matrix Rain Efekti */
        .matrix-rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .matrix-column {
            position: absolute;
            top: -100%;
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, #5865f2, #ff6bed, transparent);
            animation: matrixFall 4s linear infinite;
            box-shadow: 0 0 10px rgba(88, 101, 242, 0.8);
        }

        .matrix-column:nth-child(1) { left: 5%; animation-delay: 0s; }
        .matrix-column:nth-child(2) { left: 15%; animation-delay: 0.5s; }
        .matrix-column:nth-child(3) { left: 25%; animation-delay: 1s; }
        .matrix-column:nth-child(4) { left: 35%; animation-delay: 1.5s; }
        .matrix-column:nth-child(5) { left: 45%; animation-delay: 2s; }
        .matrix-column:nth-child(6) { left: 55%; animation-delay: 2.5s; }
        .matrix-column:nth-child(7) { left: 65%; animation-delay: 3s; }
        .matrix-column:nth-child(8) { left: 75%; animation-delay: 3.5s; }
        .matrix-column:nth-child(9) { left: 85%; animation-delay: 4s; }
        .matrix-column:nth-child(10) { left: 95%; animation-delay: 4.5s; }

        @keyframes matrixFall {
            0% { transform: translateY(-100%); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(100vh); opacity: 0; }
        }

        /* Çılgın 3D Şekiller */
        .crazy-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .crazy-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, #5865f2, #ff6bed, #7289da);
            animation: attractiveRotate 6s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(88, 101, 242, 0.8), 0 0 60px rgba(255, 107, 237, 0.6);
        }

        .crazy-shape-1 {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation: attractiveRotate 8s ease-in-out infinite, attractiveFloat 4s ease-in-out infinite;
        }

        .crazy-shape-2 {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            animation: attractiveRotate 10s ease-in-out infinite reverse, attractiveFloat 6s ease-in-out infinite;
        }

        .crazy-shape-3 {
            width: 80px;
            height: 80px;
            top: 40%;
            left: 70%;
            animation: attractiveRotate 7s ease-in-out infinite, attractiveFloat 5s ease-in-out infinite;
        }

        @keyframes attractiveRotate {
            0% { transform: rotate3d(0, 0, 1, 0deg) scale3d(1, 1, 1); }
            25% { transform: rotate3d(0, 0, 1, 90deg) scale3d(1.2, 1.2, 1); }
            50% { transform: rotate3d(0, 0, 1, 180deg) scale3d(0.8, 0.8, 1); }
            75% { transform: rotate3d(0, 0, 1, 270deg) scale3d(1.1, 1.1, 1); }
            100% { transform: rotate3d(0, 0, 1, 360deg) scale3d(1, 1, 1); }
        }

        @keyframes attractiveFloat {
            0%, 100% { transform: translate3d(0, 0, 0) rotate3d(0, 0, 1, 0deg); }
            25% { transform: translate3d(0, -30px, 0) rotate3d(0, 0, 1, 15deg); }
            50% { transform: translate3d(0, -50px, 0) rotate3d(0, 0, 1, 30deg); }
            75% { transform: translate3d(0, -30px, 0) rotate3d(0, 0, 1, 15deg); }
        }

        /* Smooth Hover Efektleri */
        .hero:hover .particle {
            animation-duration: 8s;
            transform: scale(1.2);
        }

        .hero:hover .matrix-column {
            animation-duration: 4s;
            background: linear-gradient(to bottom, transparent, rgba(255, 107, 237, 0.4), transparent);
        }

        .hero:hover .crazy-shape {
            animation-duration: 12s;
            transform: scale(1.1);
        }

        /* Neon Grid Kaldırıldı */

        /* Güzel Dalga Efektleri */
        .wave-container {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .wave {
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(88, 101, 242, 0.1) 0%, rgba(255, 107, 237, 0.05) 50%, transparent 70%);
            border-radius: 50%;
            animation: niceWaveExpand 10s ease-in-out infinite;
        }

        .wave-1 {
            top: -50%;
            left: -50%;
            animation-delay: 0s;
        }

        .wave-2 {
            top: -50%;
            left: -50%;
            animation-delay: 3s;
        }

        .wave-3 {
            top: -50%;
            left: -50%;
            animation-delay: 6s;
        }

        @keyframes niceWaveExpand {
            0% {
                transform: scale(0);
                opacity: 0.4;
            }
            50% {
                transform: scale(1);
                opacity: 0.2;
            }
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        /* Smooth Hover Efektleri */
        .hero:hover .wave {
            animation-duration: 6s;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            will-change: transform, opacity;
            transform: translateZ(0);
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(114, 137, 218, 0.2));
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 10%;
            left: 5%;
            animation: morph 20s ease-in-out infinite, float 8s ease-in-out infinite, pulse 4s ease-in-out infinite;
            filter: blur(40px);
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, rgba(255, 107, 237, 0.25), rgba(114, 137, 218, 0.2));
            border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
            bottom: 15%;
            right: 10%;
            animation: morph 15s ease-in-out infinite reverse, float 10s ease-in-out infinite, pulse 6s ease-in-out infinite;
            animation-delay: -5s;
            filter: blur(40px);
        }

        .shape-3 {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.18), rgba(255, 107, 237, 0.18));
            border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%;
            top: 60%;
            left: 15%;
            animation: morph 18s ease-in-out infinite, float 12s ease-in-out infinite, pulse 5s ease-in-out infinite;
            animation-delay: -8s;
            filter: blur(40px);
        }

        .shape-4 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(114, 137, 218, 0.2), rgba(255, 107, 237, 0.15));
            border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
            top: 30%;
            right: 20%;
            animation: morph 22s ease-in-out infinite, float 9s ease-in-out infinite, pulse 7s ease-in-out infinite;
            animation-delay: -3s;
            filter: blur(40px);
        }

        .shape-5 {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(255, 107, 237, 0.12));
            border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
            top: 5%;
            right: 30%;
            animation: morph 25s ease-in-out infinite, float 11s ease-in-out infinite, pulse 3s ease-in-out infinite;
            animation-delay: -10s;
            filter: blur(30px);
        }

        .shape-6 {
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, rgba(255, 107, 237, 0.18), rgba(88, 101, 242, 0.15));
            border-radius: 45% 55% 55% 45% / 55% 45% 55% 45%;
            bottom: 5%;
            left: 20%;
            animation: morph 28s ease-in-out infinite, float 13s ease-in-out infinite, pulse 4.5s ease-in-out infinite;
            animation-delay: -15s;
            filter: blur(35px);
        }

        .shape-7 {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, rgba(114, 137, 218, 0.2), rgba(255, 107, 237, 0.18));
            border-radius: 35% 65% 65% 35% / 65% 35% 65% 35%;
            top: 40%;
            left: 70%;
            animation: morph 30s ease-in-out infinite, float 14s ease-in-out infinite, pulse 2.5s ease-in-out infinite;
            animation-delay: -20s;
            filter: blur(25px);
        }

        .shape-8 {
            width: 220px;
            height: 220px;
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.16), rgba(114, 137, 218, 0.14));
            border-radius: 55% 45% 45% 55% / 45% 55% 45% 55%;
            top: 70%;
            right: 5%;
            animation: morph 32s ease-in-out infinite, float 16s ease-in-out infinite, pulse 5.5s ease-in-out infinite;
            animation-delay: -25s;
            filter: blur(45px);
        }

        .shape-9 {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(255, 107, 237, 0.2), rgba(88, 101, 242, 0.15));
            border-radius: 25% 75% 75% 25% / 75% 25% 75% 25%;
            top: 15%;
            left: 50%;
            animation: morph 35s ease-in-out infinite, float 18s ease-in-out infinite, pulse 3.5s ease-in-out infinite;
            animation-delay: -30s;
            filter: blur(20px);
        }

        .shape-10 {
            width: 160px;
            height: 160px;
            background: linear-gradient(135deg, rgba(114, 137, 218, 0.18), rgba(255, 107, 237, 0.16));
            border-radius: 65% 35% 35% 65% / 35% 65% 35% 65%;
            bottom: 25%;
            left: 60%;
            animation: morph 40s ease-in-out infinite, float 20s ease-in-out infinite, pulse 4.2s ease-in-out infinite;
            animation-delay: -35s;
            filter: blur(35px);
        }

        @keyframes morph {
            0%, 100% { 
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; 
                transform: translateZ(0);
            }
            25% { 
                border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; 
                transform: translateZ(0);
            }
            50% { 
                border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%; 
                transform: translateZ(0);
            }
            75% { 
                border-radius: 40% 60% 70% 30% / 70% 30% 70% 30%; 
                transform: translateZ(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
            33% { transform: translate3d(30px, -30px, 0) rotate(120deg); }
            66% { transform: translate3d(-20px, 20px, 0) rotate(240deg); }
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale3d(1, 1, 1);
                opacity: 0.1;
            }
            50% { 
                transform: scale3d(1.2, 1.2, 1);
                opacity: 0.2;
            }
        }

        @keyframes rotate360 {
            0% { transform: rotate3d(0, 0, 1, 0deg); }
            100% { transform: rotate3d(0, 0, 1, 360deg); }
        }

        @keyframes bounce {
            0%, 100% { transform: translate3d(0, 0, 0); }
            50% { transform: translate3d(0, -20px, 0); }
        }

        @keyframes wave {
            0%, 100% { transform: translate3d(0, 0, 0) rotate3d(0, 0, 1, 0deg); }
            25% { transform: translate3d(20px, 0, 0) rotate3d(0, 0, 1, 5deg); }
            75% { transform: translate3d(-20px, 0, 0) rotate3d(0, 0, 1, -5deg); }
        }

        .hero-content {
            max-width: 1200px;
            text-align: center;
            z-index: 1;
            animation: heroFadeIn 1.5s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            will-change: transform;
            transform: translateZ(0);
        }

        .hero-content::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            right: -50px;
            bottom: -50px;
            background: radial-gradient(circle at center, rgba(88, 101, 242, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: contentGlow 8s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes contentGlow {
            0%, 100% { 
                transform: scale(1);
                opacity: 0.3;
            }
            50% { 
                transform: scale(1.1);
                opacity: 0.6;
            }
        }

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

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
            background: linear-gradient(135deg, #ffffff 0%, #f7fafc 30%, #5865f2 50%, #ff6bed 70%, #f7fafc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            letter-spacing: -2px;
            line-height: 1.1;
            position: relative;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            animation: gradientShift 6s ease-in-out infinite, titleGlow 8s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(88, 101, 242, 0.3);
            filter: drop-shadow(0 0 20px rgba(255, 107, 237, 0.2));
        }

        .hero h1:hover {
            transform: scale(1.1) translateY(-8px);
            filter: drop-shadow(0 15px 40px rgba(88, 101, 242, 0.6)) drop-shadow(0 0 60px rgba(255, 107, 237, 0.5));
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes titleGlow {
            0%, 100% { 
                filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.3));
            }
            50% { 
                filter: drop-shadow(0 0 40px rgba(255, 107, 237, 0.5));
            }
        }


        .hero p {
            font-size: 1.6rem;
            margin-bottom: 2.5rem;
            background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 40%, #5865f2 60%, #e2e8f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            
            font-weight: 300;
            position: relative;
            letter-spacing: 0.5px;
            line-height: 1.4;
            text-shadow: 0 0 15px rgba(88, 101, 242, 0.2);
            
        }

        @keyframes textGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes textFloat {
            0%, 100% { transform: translate3d(0, 0, 0); }
            50% { transform: translate3d(0, -3px, 0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .cta-button {
            display: inline-block;
            padding: 1.5rem 4rem;
            background: linear-gradient(135deg, #5865f2 0%, #7289da 30%, #ff6bed 50%, #7289da 70%, #5865f2 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 60px;
            font-weight: 800;
            font-size: 1.4rem;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 20px 60px rgba(88, 101, 242, 0.4), 0 0 30px rgba(255, 107, 237, 0.3);
            position: relative;
            overflow: hidden;
            background-size: 200% 200%;
            animation: gradientMove 5s ease infinite, buttonFloat 6s ease-in-out infinite, buttonGlow 6s ease-in-out infinite;
            border: 3px solid rgba(255, 255, 255, 0.2);
            letter-spacing: 1px;
            text-transform: uppercase;
            will-change: transform;
            transform: translateZ(0);
        }

        @keyframes buttonGlow {
            0%, 100% { 
                box-shadow: 0 20px 60px rgba(88, 101, 242, 0.4), 0 0 30px rgba(255, 107, 237, 0.3);
            }
            50% { 
                box-shadow: 0 25px 70px rgba(88, 101, 242, 0.6), 0 0 45px rgba(255, 107, 237, 0.5);
            }
        }

        @keyframes buttonFloat {
            0%, 100% { transform: translate3d(0, 0, 0); }
            50% { transform: translate3d(0, -5px, 0); }
        }

        @keyframes gradientMove {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .cta-button::before {
            content: '→';
            position: absolute;
            right: 2rem;
            opacity: 0;
            transition: all 0.5s ease;
        }

        .cta-button:hover::before {
            right: 1.5rem;
            opacity: 1;
        }

        .cta-button:hover {
            transform: translate3d(0, -12px, 0) scale3d(1.1, 1.1, 1);
            box-shadow: 0 40px 100px rgba(88, 101, 242, 0.8), 0 0 80px rgba(255, 107, 237, 0.7);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .section {
            padding: 6rem 5%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 4rem;
            color: #1a1a2e;
            position: relative;
            font-weight: 300;
            animation: titleSlide 1s ease, titleSparkle 3s ease-in-out infinite;
            letter-spacing: -1px;
        }

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

        @keyframes titleSparkle {
            0%, 100% { 
                transform: scale(1);
                filter: brightness(1);
            }
            50% { 
                transform: scale(1.05);
                filter: brightness(1.2);
            }
        }

        .section-title::after {
            content: '';
            display: block;
            width: 120px;
            height: 6px;
            background: linear-gradient(90deg, #5865f2, #7289da, #ff6bed);
            margin: 1.5rem auto;
            border-radius: 10px;
            animation: lineExpand 1s ease 0.5s both;
        }

        @keyframes lineExpand {
            from { width: 0; }
            to { width: 120px; }
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
            justify-items: center;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 30px;
            border: 3px solid transparent;
            box-shadow: 
                0 15px 50px rgba(88, 101, 242, 0.1),
                inset 0 0 50px rgba(255, 255, 255, 0.5);
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            width: 100%;
            max-width: 400px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent, 
                rgba(88, 101, 242, 0.1), 
                transparent);
            transform: rotate(45deg);
            transition: all 0.8s ease;
        }

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

        .service-card:hover {
            transform: translate3d(0, -15px, 0) rotate3d(0, 0, 1, 1.5deg);
            border-color: #5865f2;
            box-shadow: 
                0 25px 60px rgba(88, 101, 242, 0.15),
                0 0 0 4px rgba(88, 101, 242, 0.05);
        }

        .service-card:nth-child(even):hover {
            transform: translate3d(0, -15px, 0) rotate3d(0, 0, 1, -1.5deg);
        }

        .service-icon {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            animation: iconFloat 4s ease-in-out infinite;
            filter: drop-shadow(0 10px 20px rgba(88, 101, 242, 0.3));
            transition: all 0.3s ease;
            text-align: center;
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
            25% { transform: translateY(-10px) rotate(5deg) scale(1.05); }
            50% { transform: translateY(-15px) rotate(10deg) scale(1.1); }
            75% { transform: translateY(-10px) rotate(5deg) scale(1.05); }
        }

        .service-card:hover .service-icon {
            animation: iconExplode 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform: scale(1.1) rotate(5deg);
        }

        @keyframes iconExplode {
            0% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.2) rotate(180deg); }
            100% { transform: scale(1.1) rotate(360deg); }
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #1a1a2e;
            font-weight: 300;
            text-align: center;
        }

        .service-card p {
            color: #4a4a6a;
            line-height: 1.8;
            font-size: 1.05rem;
            text-align: center;
        }

        .stats-section {
            background: linear-gradient(135deg, #f5f7ff 0%, #fff5f8 100%);
            padding: 8rem 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-message {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 2rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(88, 101, 242, 0.1);
            backdrop-filter: blur(10px);
        }

        .contact-content h3 {
            font-size: 2.5rem;
            color: #1a1a2e;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .contact-content p {
            font-size: 1.3rem;
            color: #4a4a6a;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }

        /* Hakkımızda metni (inline stil yerine sınıf) */
        .about-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #4a4a6a;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        /* Referanslar iletişim metni */
        .references-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #4a4a6a;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        /* İletişim ek bilgi metni */
        .contact-info {
            font-size: 1.1rem;
            color: #4a4a6a;
            line-height: 1.7;
            margin-top: 1rem;
        }

        /* Footer */
        footer {
            background: #1a1a2e;
            color: #fff;
            text-align: center;
            padding: 2rem 0;
            margin-top: 4rem;
        }

        .footer-tagline {
            margin-top: 1rem;
            opacity: 0.8;
            font-size: 0.9rem;
            color: #a0a0a0;
        }

        .contact-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, #5865f2 0%, #7289da 50%, #ff6bed 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 15px 40px rgba(88, 101, 242, 0.3);
            position: relative;
            overflow: hidden;
            background-size: 200% 200%;
            animation: buttonGradient 3s ease infinite;
        }

        .contact-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 25px 60px rgba(88, 101, 242, 0.4);
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 50%, rgba(88, 101, 242, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 107, 237, 0.08) 0%, transparent 50%);
            animation: statsWave 10s ease-in-out infinite;
        }

        @keyframes statsWave {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 3rem auto 0;
            position: relative;
            z-index: 1;
        }

        .project-card {
            position: relative;
            height: 450px;
            border-radius: 30px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 20px 60px rgba(88, 101, 242, 0.15);
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.9), rgba(255, 107, 237, 0.9));
            z-index: 1;
            transition: all 0.6s ease;
        }

        .project-card:hover::before {
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.7), rgba(255, 107, 237, 0.7));
        }

        .project-card:hover {
            transform: translateY(-15px) scale(1.02) rotate(1deg);
            box-shadow: 0 30px 80px rgba(255, 107, 237, 0.25);
        }

        .project-card:nth-child(even):hover {
            transform: translateY(-15px) scale(1.02) rotate(-1deg);
        }

        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .project-card:hover .project-image {
            transform: scale(1.2) rotate(3deg);
        }

        .project-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2.5rem;
            z-index: 2;
            transform: translateY(0);
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .project-card:hover .project-content {
            transform: translateY(-20px);
        }

        .project-category {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.5);
            animation: categoryFloat 3s ease-in-out infinite;
        }

        @keyframes categoryFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .project-title {
            font-size: 2rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 0.8rem;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .project-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.2s;
        }

        .project-card:hover .project-description {
            opacity: 1;
            transform: translateY(0);
        }

        .project-tech {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.3s;
        }

        .project-card:hover .project-tech {
            opacity: 1;
            transform: translateY(0);
        }

        .tech-tag {
            padding: 0.5rem 1.2rem;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.4);
            animation: techPulse 2s ease-in-out infinite;
        }

        .tech-tag:nth-child(1) { animation-delay: 0s; }
        .tech-tag:nth-child(2) { animation-delay: 0.2s; }
        .tech-tag:nth-child(3) { animation-delay: 0.4s; }

        @keyframes techPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .project-link {
            position: absolute;
            top: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            opacity: 0;
            transform: scale(0) rotate(-180deg);
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .project-card:hover .project-link {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        .project-link:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.2) rotate(360deg);
        }

        .project-link::before {
            content: '→';
            font-size: 1.8rem;
            color: #fff;
            font-weight: bold;
        }

        .contact-section {
            background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
            padding: 8rem 5%;
            position: relative;
            overflow: hidden;
        }

        .contact-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .email-card {
            background: #ffffff;
            padding: 4rem 3rem;
            border-radius: 40px;
            border: 3px solid #5865f2;
            box-shadow: 
                0 30px 80px rgba(88, 101, 242, 0.2),
                0 0 0 10px rgba(88, 101, 242, 0.05);
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            margin-top: 3rem;
        }

        .email-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 40px 100px rgba(255, 107, 237, 0.3),
                0 0 0 15px rgba(255, 107, 237, 0.08);
            border-color: #ff6bed;
        }

        .email-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #5865f2, #ff6bed);
            border-radius: 50%;
            animation: emailBounce 2s ease-in-out infinite;
            box-shadow: 0 20px 50px rgba(88, 101, 242, 0.4);
            position: relative;
        }

        .email-icon::before {
            content: '✉';
            font-size: 4rem;
            color: white;
        }

        .email-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid #5865f2;
            animation: ripple 2s ease-out infinite;
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        @keyframes emailBounce {
            0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
            25% { transform: translateY(-20px) rotate(-10deg) scale(1.1); }
            75% { transform: translateY(-10px) rotate(10deg) scale(1.05); }
        }

        .email-title {
            font-size: 1.8rem;
            font-weight: 300;
            background: linear-gradient(135deg, #5865f2, #7289da);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .email-address {
            font-size: 2rem;
            font-weight: 300;
            color: #1a1a2e;
            margin-bottom: 2rem;
            letter-spacing: 0px;
            animation: colorPulse 3s ease-in-out infinite;
        }

        @keyframes colorPulse {
            0%, 100% { color: #1a1a2e; }
            50% { color: #5865f2; }
        }

        .email-link {
            display: inline-block;
            padding: 1.2rem 3.5rem;
            background: linear-gradient(135deg, #5865f2 0%, #7289da 50%, #ff6bed 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 15px 40px rgba(88, 101, 242, 0.3);
            position: relative;
            overflow: hidden;
            background-size: 200% 200%;
            animation: buttonGradient 3s ease infinite;
        }

        @keyframes buttonGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .email-link:hover {
            transform: translateY(-8px) scale(1.1) rotate(3deg);
            box-shadow: 0 30px 70px rgba(255, 107, 237, 0.5);
        }

        .contact-info {
            margin-top: 3rem;
            font-size: 1.3rem;
            color: #4a4a6a;
            line-height: 2;
            font-weight: 400;
        }

        footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
            color: white;
            text-align: center;
            padding: 3rem 2rem;
        }

        footer p {
            opacity: 0.9;
            font-size: 1.05rem;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .nav-links {
                display: none;
            }

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

            .section-title {
                font-size: 2.2rem;
            }

            .email-address {
                font-size: 1.6rem;
            }

            .email-link {
                padding: 1.2rem 2.5rem;
                font-size: 1.1rem;
            }

            .shape {
                opacity: 0.05;
            }

            .shape-1, .shape-2, .shape-3, .shape-4 {
                width: 200px;
                height: 200px;
            }

            .shape-5, .shape-6, .shape-7, .shape-8, .shape-9, .shape-10 {
                width: 80px;
                height: 80px;
            }

            .hero:hover .shape {
                animation-play-state: running;
            }

            .hero:hover .shape-1,
            .hero:hover .shape-2,
            .hero:hover .shape-3,
            .hero:hover .shape-4 {
                transform: scale(1.1);
                opacity: 0.2;
            }

            .hero:hover .shape-5,
            .hero:hover .shape-6,
            .hero:hover .shape-7,
            .hero:hover .shape-8 {
                transform: scale(0.9);
                opacity: 0.03;
            }

            .hero:hover .shape-9,
            .hero:hover .shape-10 {
                transform: scale(1.2);
                opacity: 0.3;
            }
        }

        /* Mobil Optimizasyon */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
                margin-bottom: 1rem;
                line-height: 1.2;
                letter-spacing: -1px;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 2rem;
                line-height: 1.5;
            }

            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 1rem;
                border-radius: 40px;
            }

            .section-title {
                font-size: 2.2rem;
                margin-bottom: 2rem;
                line-height: 1.3;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
                margin: 0 0.5rem;
            }

            .service-icon {
                font-size: 3.5rem;
                margin-bottom: 1rem;
            }

            .service-card h3 {
                font-size: 1.5rem;
                margin-bottom: 0.8rem;
            }

            .service-card p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .contact-message {
                margin: 0 1rem;
                padding: 2.5rem 1.5rem;
            }

            .contact-content h3 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .contact-content p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }

            .references-text {
                font-size: 1rem;
                line-height: 1.5;
            }

            .contact-info {
                font-size: 1rem;
                line-height: 1.5;
            }

            .contact-button {
                padding: 1rem 2.5rem;
                font-size: 1.1rem;
            }

            .email-title {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .email-address {
                font-size: 1.6rem;
                margin-bottom: 1.5rem;
            }

            .email-link {
                padding: 1rem 2.5rem;
                font-size: 1.1rem;
            }

            /* Hakkımızda bölümü mobil */
            #hakkimizda {
                padding: 4rem 1rem;
            }

            #hakkimizda .about-text {
                font-size: 1rem;
                line-height: 1.5;
                margin-bottom: 1.2rem;
            }

            /* İletişim bölümü mobil */
            #iletisim {
                padding: 4rem 1rem;
            }

            .email-section {
                padding: 2rem 1rem;
            }

            /* Mobil animasyon optimizasyonu */
            .hero-content {
                height: 100vh;
                padding: 2rem 1rem;
            }

            .floating-shapes .shape {
                display: none;
            }

            .particles {
                display: none;
            }

            .matrix-rain {
                display: none;
            }

            .crazy-shapes {
                display: none;
            }

            .wave-container {
                display: none;
            }

            /* Navbar mobil */
            .nav-links {
                display: none;
            }

            .navbar {
                padding: 0.4rem 1rem;
            }

            .logo {
                height: 57px;
            }

            .mobile-menu-toggle {
                display: block;
                background: none;
                border: none;
                color: #1a1a2e;
                font-size: 1.5rem;
                cursor: pointer;
                padding: 0.5rem;
            }

            .mobile-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(26, 26, 46, 0.95);
                backdrop-filter: blur(10px);
                padding: 1rem;
                z-index: 1000;
            }

            .mobile-menu.active {
                display: block;
            }

            .mobile-menu ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .mobile-menu li {
                margin: 0.5rem 0;
            }

            .mobile-menu a {
                color: white;
                text-decoration: none;
                font-size: 1.1rem;
                padding: 0.8rem 1rem;
                display: block;
                border-radius: 8px;
                transition: background 0.3s ease;
            }

            .mobile-menu a:hover {
                background: rgba(88, 101, 242, 0.3);
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 0.8rem;
            }

            .hero p {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }

            .cta-button {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }

            .service-card {
                padding: 1.5rem 1rem;
            }

            .service-icon {
                font-size: 3rem;
            }

            .service-card h3 {
                font-size: 1.3rem;
            }

            .service-card p {
                font-size: 0.85rem;
            }

            .contact-message {
                padding: 2rem 1rem;
            }

            .contact-content h3 {
                font-size: 1.6rem;
            }

            .contact-content p {
                font-size: 1rem;
            }

            .references-text {
                font-size: 1rem;
                line-height: 1.5;
            }

            .contact-info {
                font-size: 1rem;
                line-height: 1.5;
            }

            .email-title {
                font-size: 1.3rem;
            }

            .email-address {
                font-size: 1.4rem;
            }

            /* Footer mobil */
            footer {
                padding: 1.5rem 0;
                margin-top: 2rem;
            }

            .footer-tagline {
                font-size: 0.8rem;
            }

            /* Hakkımızda bölümü küçük mobil */
            #hakkimizda .about-text {
                font-size: 1rem;
                line-height: 1.5;
                margin-bottom: 1rem;
            }
        }
