@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 100%);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 1s ease-out;
        }

        .preloader.fade-out {
            opacity: 0;
        }

        .preloader.hidden {
            display: none;
        }

        /* Arka plan animasyonlu grid - önceki koddan */
        .grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Ana konteyner */
        .preloader-container {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 2;
        }

        /* Preloader animasyonları */
        .preloader-2 {
            margin-bottom: 36px !important;
        }

        .preloader-1, .preloader-2 {
            position: relative;
            margin: 10px auto;
            width: 66px;
            height: 12px;
        }

        .preloader-1 {
            rotate: 180deg;
        }

        .preloader-1 .line, .preloader-2 .line {
            width: 2px;
            height: 30px;
            background: #0ff;
            margin: 0 2px;
            display: inline-block;
            animation: opacity-1 1000ms infinite ease-in-out;
            box-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff;
        }

        .preloader-2 .line {
            background: #f0f;
            box-shadow: 0 0 5px #f0f, 0 0 10px #f0f, 0 0 20px #f0f;
        }

        .preloader-1 .line-1, .preloader-2 .line-1 { animation-delay: 800ms; }
        .preloader-1 .line-2, .preloader-2 .line-2 { animation-delay: 600ms; }
        .preloader-1 .line-3, .preloader-2 .line-3 { animation-delay: 400ms; }
        .preloader-1 .line-4, .preloader-2 .line-4 { animation-delay: 200ms; }
        .preloader-1 .line-6, .preloader-2 .line-6 { animation-delay: 200ms; }
        .preloader-1 .line-7, .preloader-2 .line-7 { animation-delay: 400ms; }
        .preloader-1 .line-8, .preloader-2 .line-8 { animation-delay: 600ms; }
        .preloader-1 .line-9, .preloader-2 .line-9 { animation-delay: 800ms; }

        @keyframes opacity-1 {
            0% { opacity: 1; }
            50% { opacity: 0.2; }
            100% { opacity: 1; }
        }

        /* Scan Area - görselin tam üzerinde */
        .scan-area {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .scanline {
            position: absolute;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0.8), rgba(0, 255, 255, 0.2));
            opacity: 0.7;
            animation: scan 2s linear infinite;
        }

        .scanline2 {
            position: absolute;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, rgba(255, 0, 255, 0.2), rgba(255, 0, 255, 0.8), rgba(255, 0, 255, 0.2));
            animation: scan2 2.5s linear infinite;
        }

        .scanline3 {
            position: absolute;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, rgba(0, 255, 255, 0.3), rgba(0, 255, 255, 0.9), rgba(0, 255, 255, 0.3));
            animation: scan3 3s linear infinite;
        }
        
        @keyframes scan {
            0% { top: -10px; }
            100% { top: calc(100% + 10px); }
        }

        @keyframes scan2 {
            0% { top: -10px; }
            100% { top: calc(100% + 10px); }
        }

        @keyframes scan3 {
            0% { top: -10px; }
            100% { top: calc(100% + 10px); }
        }


/* Container */
#container {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    background-image: url("image/arkaplan.jpg");
    background-size: cover ;
    overflow-x: hidden;
    padding-top: 100px;
}

/* Animated background effect */
#container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { 
        background: 
            radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    }
    50% { 
        background: 
            radial-gradient(circle at 80% 20%, rgba(120, 119, 198, 0.15) 0%, transparent 60%),
            radial-gradient(circle at 20% 80%, rgba(255, 119, 198, 0.15) 0%, transparent 60%),
            radial-gradient(circle at 60% 60%, rgba(120, 219, 255, 0.15) 0%, transparent 60%);
    }
}

/* Gradient Text Utility Class */
.gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.gradient-text-extended {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Header */
#banner {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #0a0a0a;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #333;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

/* Grid background */
#banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Subtle glitch lines */
#banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.01) 2px,
        rgba(255, 255, 255, 0.01) 4px
    );
    animation: glitchLines 8s linear infinite;
    pointer-events: none;
}

/* Scanning line */
.header-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: scan 4s ease-in-out infinite;
    z-index: 15;
}

/* Corner decoration */
.header-corner-decoration {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #333;
    border-left: 2px solid #333;
    opacity: 0.5;
    animation: cornerPulse 3s ease-in-out infinite alternate;
}

.header-corner-decoration::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
}

/* Logo - Büyük ve ön planda */
.logo {
    color: #fff;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.logo strong {
    color: #ccc;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.logo::before {
    content: '> ';
    color: #666;
    font-size: 24px;
    margin-right: 10px;
}

.logo::after {
    content: ' _';
    color: #666;
    animation: cursor 1s infinite;
}

.logo:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.logo:hover strong {
    color: #fff;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

/* Navigation - Köşeli kutular */
#nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    position: relative;
    z-index: 10;
}

#nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    border: 1px solid #222;
    background: #111;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: block;
    min-width: 100px;
    text-align: center;
}

#nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

#nav ul li a::after {
    content: '—';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: #444;
    font-weight: bold;
    transition: all 0.3s ease;
    opacity: 0;
}

#nav ul li a:hover {
    color: #fff;
    border-color: #444;
    background: #1a1a1a;
    transform: translateX(2px);
}

#nav ul li a:hover::before {
    transform: translateX(100%);
}

#nav ul li a:hover::after {
    opacity: 1;
    color: #666;
}

/* Profile button - Özel köşeli tasarım */
#nav ul li:last-child a {
    border-color: #2b9cff;
    background: linear-gradient(135deg, #111, #1a1a1a);
}

#nav ul li:last-child a:hover {
    border-color: #4d6b8a;
    background: linear-gradient(135deg, #1a2a3a, #2a3a4a);
    box-shadow: 0 0 15px rgba(42, 77, 107, 0.3);
}

/* Animasyonlar */
@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

@keyframes glitchLines {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(1px); }
    40% { transform: translateX(-1px); }
    60% { transform: translateX(1px); }
    80% { transform: translateX(-1px); }
}

@keyframes scan {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(80px); opacity: 0; }
}

@keyframes cornerPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

@keyframes cursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
    #banner {
        flex-direction: column;
        gap: 25px;
        padding: 25px 20px;
    }
    
    .logo {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    #nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    #nav ul li a {
        font-size: 10px;
        padding: 10px 16px;
        min-width: 80px;
    }
}
/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* CTA Button - Site temasına uygun futuristik tasarım */
.cta-button {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #ffffff;
    padding: 18px 45px;
    border: 2px solid #667eea;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    
    /* Futuristik köşeli tasarım */
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    
    /* Grid background pattern */
    background-image: 
        linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%),
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 100% 100%, 10px 10px, 10px 10px;
    
    /* Neon glow effect */
    box-shadow: 
        0 0 20px rgba(102, 126, 234, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Scanning line effect */
.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 147, 251, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

/* Hover effects */
.cta-button:hover {
    color: #ffffff;
    border-color: #f093fb;
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 50%, #667eea 100%);
    transform: translateY(-3px) scale(1.02);
    
    box-shadow: 
        0 0 40px rgba(240, 147, 251, 0.5),
        0 10px 30px rgba(118, 75, 162, 0.3),
        inset 0 0 30px rgba(240, 147, 251, 0.2);
    
    text-shadow: 0 0 15px rgba(240, 147, 251, 0.8);
}

.cta-button:hover::after {
    left: 100%;
}

.cta-button:hover::before {
    color: #ffffff;
    text-shadow: 0 0 20px #f093fb;
}

/* Active/Click effect */
.cta-button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 0 60px rgba(240, 147, 251, 0.7),
        0 5px 20px rgba(118, 75, 162, 0.4),
        inset 0 0 40px rgba(240, 147, 251, 0.3);
}

/* Corner decorations */
.cta-button:focus {
    outline: none;
    position: relative;
}

.cta-button:focus::before {
    animation: prefixGlow 0.5s ease-in-out infinite alternate;
}

/* Prefix glow animation */
@keyframes prefixGlow {
    0% { 
        text-shadow: 0 0 10px #f093fb;
        opacity: 0.8;
    }
    100% { 
        text-shadow: 0 0 20px #f093fb, 0 0 30px #f093fb;
        opacity: 1;
    }
}

/* Loading state (opsiyonel) */
.cta-button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.cta-button.loading::before {
    content: '... ';
    animation: loadingDots 1s infinite;
}

@keyframes loadingDots {
    0%, 20% { content: '> '; }
    40% { content: '>> '; }
    60% { content: '>>> '; }
    80%, 100% { content: '>>>> '; }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .cta-button::before {
        margin-right: 5px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
        clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    }
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700&display=swap');
        
        body {
            margin: 0;
            padding: 0;
            background: #0a0a0a;
            font-family: 'Orbitron', monospace;
            overflow-x: hidden;
        }

        /* Section Base Styles */
        .section {
            padding: 60px 20px;
            font-family: 'Arial', sans-serif;
            overflow: hidden;
            position: relative;
            scroll-margin-top: 65px;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 30px 30px;
            background-color: #080808;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 50px;
            background: linear-gradient(45deg, #7af1f1, #ffffff, #ca6fe0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(3, 0, 199, 0.5);
            animation: titlePulse 3s ease-in-out infinite alternate;
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            transform: scale(1.1);
            line-height: 1.6;
        }

        @keyframes titlePulse {
            0% { filter: brightness(1) drop-shadow(0 0 20px rgba(0, 255, 255, 0.3)); }
            100% { filter: brightness(1.2) drop-shadow(0 0 40px rgba(0, 255, 255, 0.6)); }
        }
        
        .bilgilendirme-timeline {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 25px;
            padding: 30px;
            background: 
                linear-gradient(135deg, 
                    rgba(255, 0, 128, 0.1) 0%, 
                    rgba(10, 10, 10, 0.9) 30%, 
                    rgba(0, 255, 255, 0.1) 100%
                );
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .bilgilendirme-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            animation: containerScan 8s linear infinite;
            pointer-events: none;
            z-index: 1;
        }

        @keyframes containerScan {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        #carousel {
            display: flex;
            gap: 30px;
            padding: 20px 0;
            align-items: center;
            z-index: 2;
            position: relative;
            width: calc((280px + 30px) * 16); /* 8 items x 2 for seamless loop */
            animation: smoothScroll 30s linear infinite;
        }

        @keyframes smoothScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-310px * 8)); }
        }

        #carousel:hover {
            animation-play-state: paused;
        }

        .bilgikutu {
            flex-shrink: 0;
            width: 280px;
            height: 320px;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            background: rgba(10, 10, 10, 0.8);
            border: 2px solid transparent;
            background-clip: padding-box;
        }

        .bilgikutu::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                #ff64b1, #62fbfb, #d167ff, #60fcfc);
            background-size: 400% 400%;
            border-radius: 22px;
            z-index: -1;
            animation: borderFlow 3s ease infinite;
            opacity: 0.6;
        }

        @keyframes borderFlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .bilgikutu::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.3), 
                transparent);
            transition: left 0.8s ease;
            z-index: 3;
            pointer-events: none;
        }

        .bilgikutu img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 18px;
            transition: all 0.6s ease;
            filter: brightness(0.8) contrast(1.2) saturate(1.1);
        }

        /* Enhanced Hover Effects */
        .bilgikutu:hover {
            transform: translateY(-10px) scale(1.03);
            z-index: 10;
            box-shadow: 
                0 20px 40px rgba(255, 0, 128, 0.4),
                0 0 60px rgba(0, 255, 255, 0.6),
                0 0 80px rgba(255, 0, 128, 0.3);
        }

        .bilgikutu:hover::before {
            animation-duration: 1s;
            opacity: 1;
            box-shadow: 0 0 60px rgba(0, 255, 255, 0.8);
        }

        .bilgikutu:hover::after {
            left: 100%;
        }

        .bilgikutu:hover img {
            filter: brightness(1.1) contrast(1.3) saturate(1.2);
            transform: scale(1.02);
        }

        /* Cyberpunk Grid Overlay */
        .bilgilendirme-timeline::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: 20px 20px;
            pointer-events: none;
            z-index: 0;
        }

        

        /* Animation pause class */
        .carousel-paused {
            animation-play-state: paused !important;
        }

        

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
                margin-bottom: 40px;
            }
            
            .bilgilendirme-timeline {
                height: 350px;
                padding: 20px;
            }
            
            .bilgikutu {
                width: 240px;
                height: 280px;
            }
            
            #carousel {
                gap: 20px;
            }
            
            @keyframes smoothScroll {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-260px * 8)); }
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .bilgilendirme-timeline {
                height: 250px;
            }
            
            .bilgikutu {
                width: 200px;
                height: 150px;
            }
            
            #carousel {
                gap: 15px;
            }
            
            @keyframes autoScroll {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-215px * 7)); }
            }
            
            .bilgikutu:hover {
                transform: scale(1.05) rotateY(5deg);
            }
            
            .nav-arrow {
                width: 40px;
                height: 40px;
            }
        }

        /* Extra neon effects */
        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        /* Keyboard focus styles */
        .bilgilendirme-timeline:focus {
            outline: 2px solid #00ffff;
            outline-offset: 2px;
        }
/* Referans Section */
#referans {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
    align-items: stretch;
}

.referans-content {
    display: flex;
    width: 100%;
    gap: 40px;
    align-items: stretch;
}

.hap-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hap-container h3 {
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
}

.hap {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px;
    scroll-behavior: smooth;
}

.hap::-webkit-scrollbar {
    height: 6px;
}

.hap::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.hap::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
}

.hapbilgi {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    padding: 20px;
    border-radius: 15px;
    min-width: 160px;
    text-align: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hapbilgi:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
}

.hapbilgi p {
    color: #ffffff;
    font-weight: 600;
}
.hapbilgi p:nth-of-type(2){
    font-weight: 200;
    color: #efeded;
}

/* Statistics */
.istatistikler {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    text-align: center;
}

.stat-item {
    display: inline-block;
    vertical-align: top;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}




@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Bots Section */
#botlar {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
}

.botlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}
.bot-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 40px 0;
  flex-wrap: wrap;
}
.bot-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 0 0 500px;
    height: 600px;
    
}

.bot-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #70cdd9, #667eea);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 400% 400%;
    animation: neon-glow 3s ease-in-out infinite;
}

.bot-card:hover::before {
    opacity: 1;
}

.bot-card:hover {
    transform: scale(1.05) translateZ(20px);
    background: rgba(255, 255, 255, 0.05);
}

@keyframes neon-glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.bot-card .botimg {
    display: block;
    margin:0 auto 20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.5));
}

.bot-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.bot-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 300;
    font-size: clamp(0.8rem, 1.8vw, 1.1rem);
}
.bot-card h5{
    color: #f2efef;
    font-weight: 300;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
}

.bot-card .button {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
}

.bot-card button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.bot-card a{
    color: #000;
    text-decoration: none;
    font-weight: 700;
}

/* FAQ Section */
#SSS {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.soru {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.soru:hover {
    background: rgba(255, 255, 255, 0.05);
}

.soru-btn {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.soru-btn::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #667eea;
}

.soru-btn.active::after {
    transform: rotate(45deg);
}

.cevap {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cevap.show {
    padding: 0 30px 25px 30px;
    max-height: 200px;
}

/* Footer */
.sayfasonu {
            background: #0a0a0a;
            border-top: 1px solid #333;
            padding: 40px 40px 20px;
            position: relative;
            overflow: hidden;
        }

        /* Subtle grid background */
        .sayfasonu::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
        }

        .bağlantilar {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-bottom: 35px;
            position: relative;
            z-index: 10;
        }

        .social-link {
            display: block;
            color: #888;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 12px 25px;
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid #222;
            background: #111;
            clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
            min-width: 160px;
            text-align: center;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .social-link::after {
            content: '—';
            position: absolute;
            left: 8px;
            top: 50%;
            transform: translateY(-50%);
            color: #444;
            font-weight: bold;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .social-link:hover {
            color: #fff;
            border-color: #444;
            background: #1a1a1a;
            transform: translateX(3px);
        }

        .social-link:hover::before {
            transform: translateX(100%);
        }

        .social-link:hover::after {
            opacity: 1;
            color: #666;
        }

        .social-link:nth-child(2):hover {
            border-color: #4d2a2a;
        }

        .hak {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #222;
            position: relative;
            z-index: 10;
        }

        .hak p {
            color: #555;
            font-family: 'Courier New', monospace;
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin: 0;
            position: relative;
        }

        .hak p::before {
            content: '[';
            margin-right: 5px;
            color: #333;
        }

        .hak p::after {
            content: ']';
            margin-left: 5px;
            color: #333;
        }

        /* Minimal scanning line */
        .scan-line {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: scan 4s ease-in-out infinite;
            z-index: 15;
        }

        /* Corner decoration */
        .corner-decoration {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 20px;
            height: 20px;
            border-top: 2px solid #333;
            border-right: 2px solid #333;
            opacity: 0.5;
            animation: cornerPulse 3s ease-in-out infinite alternate;
        }

        .corner-decoration::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: -15px;
            width: 20px;
            height: 20px;
            border-bottom: 2px solid #333;
            border-left: 2px solid #333;
        }

        /* Animasyonlar */
        

        @keyframes scan {
            0%, 100% { transform: translateY(0); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateY(120px); opacity: 0; }
        }

        @keyframes cornerPulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }

      

/* Responsive Design */
@media (max-width: 768px) {
    #banner {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }

    #nav ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .referans-content {
        flex-direction: column;
    }

    .section {
        padding: 60px 20px;
    }

    .botlar-grid {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        width: 280px;
        height: 280px;
    }

    .bilgikutu {
        width: 220px;
        height: 180px;
        padding: 20px;
    }

    .bot-cards {
        flex-direction: column;
        align-items: center;
    }

    .bot-card {
        flex: none;
        width: 90%;
        max-width: 400px;
        height: auto;
        min-height: 550px;
        position: relative;
        padding-bottom: 80px;
    }

    .bot-card .button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 350px;
}

    .carousel-container {
        width: 250px;
        height: 250px;
    }

    .bilgikutu {
        width: 280px;
        height: 220px;
        padding: 20px;
    }

    .bilgikutu img {
        width: 180px;
        height: 180px;
    }

    .hap {
        flex-direction: column;
        align-items: center;
    }

    .hapbilgi {
        min-width: 200px;
        width: 100%;
    }

    .istatistikler {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .bağlantilar {
                gap: 40px;
            }
            
            .social-link {
                min-width: 140px;
                font-size: 12px;
                padding: 10px 20px;
            }
            
            .sayfasonu {
                padding: 30px 20px 15px;
            }
}

/* Yeni medya sorgusu ekleyin */
@media (max-width: 1024px) {
    .bilgikutu{
        text-align: center;
    }

    .bilgikutu img{
        display: block;
        margin: 0 auto;
    }
    .bot-cards {
        gap: 20px;
    }

    .bot-card {
        flex: 0 0 calc(100% - 40px);
        max-width: 600px;
        height: auto;
        min-height: 550px;
    }

    .referans-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section {
        padding: 40px 15px;
    }

    .bilgikutu{
        text-align: center;
    }

    .bilgikutu img{
        display: block;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .bot-card {
        padding: 30px 20px 100px 20px;
        min-height: 500px;
    }

    .bot-card .botimg {
        width: 100px;
        height: 100px;
    }

    .bot-card .button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 95%;
    padding: 10px 20px;
}
}