/* KAYI UAV - FUTURISTIC THEME */
:root {
    --bg-dark: #020c1b;
    --bg-light: #112240;
    --neon-cyan: #64ffda;
    --neon-blue: #00b4d8;
    --text-main: #ccd6f6;
    --text-muted: #8892b0;
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* {margin: 0; padding: 0; box-sizing: border-box;}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 18px;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.menu-open {
    overflow: hidden;
}

img, svg, video, canvas {
    max-width: 100%;
}

/* Touch target improvements for mobile */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better image scaling */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Prevent text selection issues on mobile */
    .btn, .nav-btn, .copy-btn {
        -webkit-tap-highlight-color: rgba(100, 255, 218, 0.3);
        user-select: none;
    }
}

/* Background Grid Effect */
.cyber-grid {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(100, 255, 218, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 255, 218, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

#particles-js {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}

/* Scrollbar */
::-webkit-scrollbar {width: 8px;}
::-webkit-scrollbar-track {background: var(--bg-dark);}
::-webkit-scrollbar-thumb {background: var(--neon-cyan); border-radius: 4px; box-shadow: 0 0 10px var(--neon-cyan);}

/* --- NAVBAR --- */
.navbar {
    position: fixed; top: 0; width: 100%; height: 80px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; z-index: 1000;
    background: rgba(2, 12, 27, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo-container {display: flex; align-items: center; gap: 15px;}
.nav-logo {height: 45px; filter: drop-shadow(0 0 5px var(--neon-cyan));}
.logo-text {font-family: var(--font-head); line-height: 1;}
.logo-text .main {font-size: 1.4rem; color: var(--neon-cyan); display: block; letter-spacing: 2px;}
.logo-text .sub {font-size: 0.7rem; color: var(--text-muted); letter-spacing: 4px;}

.nav-links {display: flex; gap: 40px;}
.nav-links li {list-style: none;}
.nav-links a {
    text-decoration: none; color: var(--text-main);
    font-family: var(--font-head); font-size: 0.9rem;
    position: relative; transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active {color: var(--neon-cyan); text-shadow: 0 0 10px var(--neon-cyan);}
.nav-btn {
    border: 1px solid var(--neon-cyan); padding: 8px 20px; border-radius: 4px;
    color: var(--neon-cyan) !important;
}
.nav-btn:hover {background: rgba(100,255,218,0.1); box-shadow: 0 0 15px var(--neon-cyan);}

/* Language Toggle */
.lang-toggle {
    display: flex; align-items: center; gap: 6px;
    font-family: var(--font-head); font-size: 0.85rem;
}
.lang-btn {
    background: transparent; border: 1px solid rgba(100, 255, 218, 0.3);
    color: var(--text-muted); padding: 6px 12px; border-radius: 4px;
    cursor: pointer; transition: 0.3s; font-family: inherit;
}
.lang-btn:hover {
    color: var(--neon-cyan); border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}
.lang-btn.active {
    background: rgba(100, 255, 218, 0.15); color: var(--neon-cyan);
    border-color: var(--neon-cyan);
}
.lang-sep {
    color: var(--text-muted); font-weight: 300; user-select: none;
}

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh; position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 10%;
}

.hero-content {max-width: 600px;}
.status-badge {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid var(--neon-blue); padding: 5px 15px;
    border-radius: 20px; font-family: var(--font-head); font-size: 0.8rem;
    color: var(--neon-blue); margin-bottom: 20px;
    background: rgba(0, 180, 216, 0.1);
}
.pulse {
    width: 8px; height: 8px; background: var(--neon-blue);
    border-radius: 50%; box-shadow: 0 0 10px var(--neon-blue);
    animation: pulse 2s infinite;
}

.glitch-title {
    font-family: var(--font-head); font-size: 2.8rem; line-height: 1.2;
    color: #fff; margin-bottom: 20px;
    text-shadow: 
        0 0 10px rgba(100, 255, 218, 0.5),
        0 0 20px rgba(100, 255, 218, 0.3),
        0 0 30px rgba(100, 255, 218, 0.1);
    letter-spacing: 1.5px;
}
.highlight {
    color: var(--neon-cyan); 
    text-shadow: 
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan),
        0 0 60px rgba(100, 255, 218, 0.5);
    position: relative;
    display: inline-block;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

.hero-desc {color: var(--text-muted); font-size: 1.2rem; margin-bottom: 40px;}

.tech-stack-mini {
    display: flex; gap: 20px; margin-bottom: 40px;
    font-family: var(--font-head); font-size: 0.9rem; color: var(--neon-cyan);
}
.tech-stack-mini i {margin-right: 5px;}

.hero-actions {display: flex; gap: 20px;}
.btn {
    padding: 15px 35px; border-radius: 4px; font-family: var(--font-head);
    font-weight: 700; text-decoration: none; transition: 0.3s;
    position: relative; overflow: hidden;
}
.btn-primary {
    background: transparent; 
    border: 2px solid var(--neon-cyan); 
    color: var(--neon-cyan);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: var(--neon-cyan);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--neon-cyan); 
    color: var(--bg-dark);
    box-shadow: 
        0 0 30px var(--neon-cyan),
        0 0 60px rgba(100, 255, 218, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    border-color: var(--neon-cyan);
}
.btn-outline {border: 1px solid var(--text-muted); color: var(--text-muted);}
.btn-outline:hover {border-color: #fff; color: #fff;}

/* Drone Visual */
.hero-visual {width: 40%; display: flex; justify-content: center;}
.floating {animation: float 4s ease-in-out infinite;}
.propeller {animation: spin 0.2s linear infinite; transform-origin: center; transform-box: fill-box;}

/* --- MÜHENDİSLİK KARTLARI --- */
.section {padding: 100px 10%; position: relative; z-index: 2;}
.section-header {text-align: center; margin-bottom: 60px;}
.section-title {
    font-family: var(--font-head); font-size: 2.5rem; color: #fff;
    display: inline-block;
}
.line {
    width: 80px; height: 3px; background: var(--neon-cyan);
    margin: 15px auto; box-shadow: 0 0 10px var(--neon-cyan);
}

.grid-3 {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-card {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.7) 0%, rgba(2, 12, 27, 0.9) 100%);
    padding: 35px; border-radius: 15px;
    border: 1px solid rgba(100,255,218,0.2); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

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

.tech-card:hover {
    transform: translateY(-12px) scale(1.02); 
    border-color: var(--neon-cyan);
    box-shadow: 
        0 20px 60px rgba(100,255,218,0.25),
        0 0 40px rgba(100,255,218,0.15),
        inset 0 0 30px rgba(100,255,218,0.05);
}

.card-icon {
    font-size: 3rem; 
    color: var(--neon-cyan); 
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.5));
    transition: all 0.3s;
    display: inline-block;
}

.tech-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(100, 255, 218, 0.8));
}

.tech-card h3 {
    font-family: var(--font-head); 
    color: #fff; 
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    transition: all 0.3s;
}

.tech-card:hover h3 {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.tech-list li {
    list-style: none; 
    margin-bottom: 12px; 
    color: var(--text-muted);
    padding-left: 25px; 
    position: relative;
    transition: all 0.3s;
    font-size: 1rem;
}

.tech-list li::before {
    content: '▸'; 
    position: absolute; 
    left: 0; 
    color: var(--neon-cyan);
    font-weight: bold;
    transition: all 0.3s;
}

.tech-card:hover .tech-list li {
    color: var(--text-main);
    transform: translateX(5px);
}

.tech-card:hover .tech-list li::before {
    transform: translateX(5px);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* --- PROJELER --- */
.dark-bg {background: rgba(2, 12, 27, 0.7);}
.project-showcase {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px;
    margin-bottom: 100px; align-items: center;
}
.project-showcase.reversed {direction: rtl;}
.project-showcase.reversed .project-info {direction: ltr;}

.project-img {
    height: 400px; 
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(2, 12, 27, 0.9) 100%);
    border-radius: 15px;
    position: relative; 
    overflow: hidden; 
    border: 2px solid var(--neon-blue);
    display: flex; 
    align-items: center; 
    justify-content: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 0 50px rgba(0, 180, 216, 0.1);
    transition: all 0.4s;
}

.project-img:hover {
    border-color: var(--neon-cyan);
    box-shadow: 
        0 15px 50px rgba(100, 255, 218, 0.3),
        inset 0 0 80px rgba(100, 255, 218, 0.15);
    transform: scale(1.02);
}
.placeholder-drone {
    font-family: var(--font-head); font-size: 2rem; color: rgba(255,255,255,0.1);
    transform: rotate(-15deg);
}
.blueprint-overlay {
    position: absolute; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(0,180,216,0.1) 1px, transparent 1px);
    background-size: 20px 20px; opacity: 0.5;
}

.project-info h3 {font-family: var(--font-head); font-size: 2rem; color: #fff; margin: 15px 0;}
.version-tag {
    display: inline-block; background: rgba(100,255,218,0.1); color: var(--neon-cyan);
    padding: 5px 10px; font-family: var(--font-head); font-size: 0.8rem; border: 1px solid var(--neon-cyan);
}
.specs-grid {display: flex; gap: 30px; margin-top: 30px;}
.spec {text-align: center;}
.spec .val {display: block; font-family: var(--font-head); font-size: 1.5rem; color: #fff;}
.spec .label {font-size: 0.8rem; color: var(--text-muted);}

/* --- TAKIM (PROFESYONEL ÇERÇEVELER) --- */
.team-grid {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 40px;
    padding: 50px 0;
}

.member-card {
    text-align: center; 
    width: 320px; 
    min-height: 460px;
    max-height: 460px;
    position: relative; 
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(17, 34, 64, 0.4);
    border-radius: 24px;
    padding: 36px 26px 30px;
    border: 2px solid rgba(100, 255, 218, 0.15);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* Profesyonel çerçeve kenarı - gradient border efekti */
.member-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.3) 0%,
        rgba(0, 180, 216, 0.3) 50%,
        rgba(100, 255, 218, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

/* İç glow efekti */
.member-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.member-card:hover {
    transform: translateY(-12px);
    border-color: rgba(100, 255, 218, 0.4);
    box-shadow: 
        0 25px 70px rgba(100, 255, 218, 0.2),
        0 0 50px rgba(100, 255, 218, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(17, 34, 64, 0.6);
}

.member-card:hover::after {
    width: 400px;
    height: 400px;
}

/* Profesyonel Yuvarlak Frame */
.hex-img {
    width: 160px; 
    height: 160px; 
    margin: 0 0 18px 0;
    position: relative;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.15) 0%,
        rgba(0, 180, 216, 0.15) 100%);
    padding: 4px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 8px 24px rgba(100, 255, 218, 0.2));
    z-index: 1;
    box-shadow: 
        inset 0 0 20px rgba(100, 255, 218, 0.1),
        0 0 30px rgba(100, 255, 218, 0.15);
    flex-shrink: 0;
}

/* Dış glow ring */
.hex-img::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        var(--neon-cyan) 0%,
        var(--neon-blue) 50%,
        var(--neon-cyan) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(15px);
    z-index: -1;
}

.member-card:hover .hex-img::before {
    opacity: 0.7;
}

/* İç frame glow */
.hex-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(100, 255, 218, 0.15) 0%,
        transparent 50%,
        rgba(0, 180, 216, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.member-card:hover .hex-img::after {
    opacity: 1;
}

.hex-img img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(70%) brightness(0.85) contrast(1.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.95), rgba(2, 12, 27, 0.95));
}

.member-card:hover .hex-img {
    transform: scale(1.08);
    filter: drop-shadow(0 12px 40px rgba(100, 255, 218, 0.4));
    padding: 5px;
    box-shadow: 
        inset 0 0 30px rgba(100, 255, 218, 0.2),
        0 0 40px rgba(100, 255, 218, 0.3);
}

.member-card:hover .hex-img img {
    filter: grayscale(0) brightness(1.05) contrast(1.05);
}

/* Member Info - Profesyonel Tipografi */
.member-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    flex: 1;
    justify-content: space-between;
    min-height: 0;
}

.member-info h3 {
    font-family: var(--font-head); 
    font-size: 0.95rem; 
    font-weight: 600;
    color: #fff;
    margin: 0 auto;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.35;
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
    word-break: break-word;
    padding: 0 8px;
    hyphens: auto;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-card:hover .member-info h3 {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.6);
    transform: translateY(-2px);
}

.member-info .role {
    font-size: 0.66rem; 
    color: var(--neon-cyan); 
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(100, 255, 218, 0.08);
    border: 1px solid rgba(100, 255, 218, 0.25);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    line-height: 1.35;
    min-height: 34px;
    max-width: calc(100% - 16px);
    text-align: center;
    word-wrap: break-word;
    flex-wrap: wrap;
    margin: 0 auto;
}

.member-info .role i {
    font-size: 0.9rem;
    color: var(--neon-cyan);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(100, 255, 218, 0.5));
}

/* Role badge shimmer efekti */
.member-info .role::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(100, 255, 218, 0.2) 50%,
        transparent 100%);
    transition: left 0.6s ease;
}

.member-card:hover .member-info .role {
    background: rgba(100, 255, 218, 0.15);
    border-color: rgba(100, 255, 218, 0.5);
    box-shadow: 
        0 0 20px rgba(100, 255, 218, 0.3),
        inset 0 0 20px rgba(100, 255, 218, 0.05);
    transform: translateY(-2px);
    letter-spacing: 1.2px;
    padding: 8px 14px;
}

.member-card:hover .member-info .role i {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.8));
}

.member-card:hover .member-info .role::before {
    left: 100%;
}

/* Member Social Icons - Profesyonel İkonlar */
.member-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    width: 100%;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid;
}

.email-icon {
    color: var(--neon-cyan);
    background: rgba(100, 255, 218, 0.08);
    border-color: rgba(100, 255, 218, 0.25);
}

.linkedin-icon {
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.08);
    border-color: rgba(10, 102, 194, 0.25);
}

.social-icon i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 1;
}

.email-icon::before {
    background: rgba(100, 255, 218, 0.2);
}

.linkedin-icon::before {
    background: rgba(10, 102, 194, 0.2);
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.email-icon:hover {
    background: rgba(100, 255, 218, 0.15);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.4);
    transform: translateY(-3px) scale(1.1);
}

.linkedin-icon:hover {
    background: rgba(10, 102, 194, 0.15);
    border-color: #0a66c2;
    box-shadow: 0 0 20px rgba(10, 102, 194, 0.4);
    transform: translateY(-3px) scale(1.1);
}

.social-icon:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px currentColor);
}

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

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- SPONSORLAR & FOOTER --- */
.marquee-container {background: #fff; padding: 30px 0; overflow: hidden;}
.marquee-content {display: flex; gap: 50px; animation: scroll 20s linear infinite; width: max-content;}
.marquee-content img {height: 50px; filter: grayscale(100%); opacity: 0.6; transition: 0.3s;}
.marquee-content img:hover {filter: grayscale(0); opacity: 1;}

.footer {background: #020c1b; padding: 60px 5% 20px; border-top: 1px solid rgba(100,255,218,0.1);}
.footer-grid {display: flex; justify-content: space-between; flex-wrap: wrap;}
.footer h2 {font-family: var(--font-head); color: #fff;}
.socials {margin-top: 20px; display: flex; gap: 15px;}
.socials a {
    width: 40px; height: 40px; border: 1px solid var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: var(--text-muted); transition: 0.3s;
}
.socials a:hover {border-color: var(--neon-cyan); color: var(--neon-cyan); box-shadow: 0 0 10px var(--neon-cyan);}
.copyright {text-align: center; margin-top: 50px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; color: var(--text-muted); font-size: 0.8rem;}

/* Animasyonlar */
@keyframes float { 0%, 100% {transform: translateY(0);} 50% {transform: translateY(-20px);} }
@keyframes spin { 100% {transform: rotate(360deg);} }
@keyframes pulse { 0% {transform: scale(1); opacity: 1;} 100% {transform: scale(2); opacity: 0;} }
@keyframes scroll { to {transform: translateX(-50%);} }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes rotateGlow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- BLOG STYLES --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.blog-card {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.7) 0%, rgba(2, 12, 27, 0.9) 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.4s;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

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

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

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 
        0 20px 60px rgba(100, 255, 218, 0.25),
        0 0 40px rgba(100, 255, 218, 0.15);
}

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

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

/* Resimler için fallback ve override */
.blog-image[style*="background-image"] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

.blog-featured-image[style*="background-image"] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.3;
}

.blog-image.no-overlay::after {
    display: none;
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(2, 12, 27, 0.9);
    border: 2px solid var(--neon-cyan);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.blog-date .day {
    display: block;
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--neon-cyan);
    font-weight: 900;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-family: var(--font-head);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 5px;
}

.blog-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-head);
}

.blog-meta i {
    color: var(--neon-cyan);
    margin-right: 5px;
}

.blog-content h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    transition: all 0.3s;
}

.blog-card:hover .blog-content h3 {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.blog-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.blog-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.blog-link i {
    transition: transform 0.3s;
}

.blog-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* --- CONTACT STYLES --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.7) 0%, rgba(2, 12, 27, 0.9) 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.4s;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 
        0 15px 50px rgba(100, 255, 218, 0.25),
        0 0 30px rgba(100, 255, 218, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.contact-info-card h3 {
    font-family: var(--font-head);
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.contact-link:hover {
    color: var(--neon-blue);
    gap: 15px;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.socials-contact {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.socials-contact a {
    width: 45px;
    height: 45px;
    border: 2px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--neon-cyan);
    transition: all 0.3s;
    font-size: 1.2rem;
}

.socials-contact a:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 5px 20px rgba(100, 255, 218, 0.5);
}

.contact-form-section {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.7) 0%, rgba(2, 12, 27, 0.9) 100%);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    color: var(--neon-cyan);
    font-size: 1rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

.form-group label i {
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(17, 34, 64, 0.5);
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--neon-cyan);
    background: rgba(17, 34, 64, 0.7);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Mobil */
.burger {
    display: none; 
    cursor: pointer;
    z-index: 1001;
    position: relative;
}
.burger div {
    width: 25px; 
    height: 3px; 
    background: var(--neon-cyan); 
    margin: 5px 0; 
    transition: 0.3s;
    border-radius: 2px;
}
.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.burger.toggle .line2 {
    opacity: 0;
}
.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Tablet ve Mobil için Genel Düzenlemeler */
@media (max-width: 1024px) {
    .section {
        padding: 80px 5%;
    }
    .hero-section {
        padding: 0 5%;
    }
    .project-showcase {
        gap: 30px;
    }
}

/* Mobil Cihazlar (768px ve altı) */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 0 4%;
        height: 70px;
        gap: 10px;
    }
    .nav-logo {
        height: 35px;
    }
    .logo-text .main {
        font-size: 1.1rem;
    }
    .logo-text .sub {
        display: none;
    }
    .nav-links {
        position: fixed; 
        right: 0; 
        top: 70px; 
        height: calc(100vh - 70px);
        background: rgba(17, 34, 64, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        width: 80%; 
        max-width: 300px;
        transform: translateX(100%); 
        padding: 40px 20px;
        transition: transform 0.3s ease;
        border-left: 2px solid var(--neon-cyan);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .nav-links li {
        width: 100%;
        margin: 10px 0;
    }
    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 0.95rem;
        border-radius: 8px;
        transition: all 0.3s;
    }
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(100, 255, 218, 0.1);
        padding-left: 25px;
    }
    .nav-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    .burger {
        display: block;
    }
    .lang-toggle {
        margin-left: auto;
        margin-right: 10px;
        gap: 4px;
        font-size: 0.75rem;
    }
    .lang-btn {
        padding: 4px 8px;
    }
    
    /* Hero Section */
    .hero-section {
        height: auto;
        flex-direction: column-reverse; 
        justify-content: center; 
        text-align: center;
        padding: 100px 5% 60px;
        min-height: auto;
    }
    .hero-content {
        max-width: 100%;
    }
    .status-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
        margin-bottom: 15px;
    }
    .glitch-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    .tech-stack-mini {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        font-size: 0.8rem;
        margin-bottom: 25px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    .btn {
        width: 100%;
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    .hero-visual {
        width: 100%; 
        margin-bottom: 30px;
    }
    .hero-visual svg {
        width: 250px; 
        height: 250px;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Project Showcase */
    .project-showcase, 
    .project-showcase.reversed {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    .project-img {
        height: 250px;
    }
    .project-info h3 {
        font-size: 1.5rem;
    }
    .specs-grid {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .spec .val {
        font-size: 1.2rem;
    }
    
    /* Tech Cards */
    .tech-card {
        padding: 25px 20px;
    }
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .card-icon {
        font-size: 2.5rem;
    }
    .tech-card h3 {
        font-size: 1.2rem;
    }
    .tech-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    /* Team Grid */
    .team-grid {
        gap: 25px;
        padding: 30px 0;
    }
    .member-card {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        max-height: none;
        padding: 25px 18px 22px;
    }
    .hex-img {
        width: 140px;
        height: 140px;
        margin-bottom: 14px;
    }
    .member-info {
        gap: 8px;
    }
    .member-info h3 {
        font-size: 0.9rem;
        line-height: 1.3;
        padding: 0 4px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    .member-info .role {
        font-size: 0.65rem;
        padding: 6px 12px;
        gap: 5px;
        letter-spacing: 0.8px;
        min-height: 28px;
        max-width: calc(100% - 12px);
    }
    .member-info .role i {
        font-size: 0.75rem;
    }
    .member-social {
        gap: 10px;
        margin-top: 8px;
    }
    .social-icon {
        width: 36px;
        height: 36px;
    }
    .social-icon i {
        font-size: 0.95rem;
    }
    
    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    .blog-card {
        margin-bottom: 0;
    }
    .blog-image {
        height: 180px;
    }
    .blog-date {
        top: 15px;
        right: 15px;
        padding: 12px;
    }
    .blog-date .day {
        font-size: 1.6rem;
    }
    .blog-date .month {
        font-size: 0.7rem;
    }
    .blog-content {
        padding: 20px 18px;
    }
    .blog-meta {
        gap: 10px;
        margin-bottom: 12px;
    }
    .blog-meta span {
        font-size: 0.75rem;
    }
    .blog-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    .blog-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    .contact-info-card {
        padding: 25px 20px;
    }
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    .contact-info-card h3 {
        font-size: 1.1rem;
    }
    .contact-info-card p {
        font-size: 0.9rem;
    }
    .contact-form-section {
        padding: 30px 20px;
        margin-top: 30px;
    }
    .form-group label {
        font-size: 0.9rem;
    }
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 5% 15px;
    }
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
    .footer h2, .footer h3 {
        font-size: 1.2rem;
    }
    .footer p {
        font-size: 0.9rem;
    }
    .socials {
        gap: 12px;
        margin-top: 15px;
    }
    .socials a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .copyright {
        margin-top: 30px;
        padding-top: 15px;
        font-size: 0.75rem;
    }
    
    /* Sponsors */
    .marquee-container {
        padding: 20px 0;
    }
    .marquee-content img {
        height: 40px;
    }
}

/* Küçük Mobil Cihazlar (480px ve altı) */
@media (max-width: 480px) {
    .navbar {
        height: 65px;
        padding: 0 3%;
    }
    .nav-logo {
        height: 30px;
    }
    .logo-text .main {
        font-size: 0.95rem;
    }
    .nav-links {
        top: 65px;
        height: calc(100vh - 65px);
        width: 85%;
        padding: 30px 15px;
    }
    
    .hero-section {
        padding: 90px 3% 50px;
    }
    .lang-sep {
        display: none;
    }
    .lang-btn {
        min-width: 34px;
        padding: 3px 6px;
    }
    .glitch-title {
        font-size: 1.3rem;
    }
    .hero-desc {
        font-size: 0.9rem;
    }
    .tech-stack-mini {
        font-size: 0.75rem;
    }
    .hero-visual svg {
        width: 200px;
        height: 200px;
    }
    
    .section {
        padding: 60px 3%;
    }
    .section-title {
        font-size: 1.5rem;
    }
    
    .project-img {
        height: 200px;
    }
    .project-info h3 {
        font-size: 1.3rem;
    }
    .specs-grid {
        gap: 15px;
    }
    .spec .val {
        font-size: 1.1rem;
    }
    .spec .label {
        font-size: 0.75rem;
    }
    
    .tech-card {
        padding: 20px 15px;
    }
    .card-icon {
        font-size: 2rem;
    }
    .tech-card h3 {
        font-size: 1.1rem;
    }
    
    .member-card {
        padding: 20px 15px 18px;
    }
    .hex-img {
        width: 120px;
        height: 120px;
    }
    .member-info h3 {
        font-size: 0.85rem;
    }
    .member-info .role {
        font-size: 0.6rem;
        padding: 5px 10px;
    }
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .blog-image {
        height: 160px;
    }
    .blog-date {
        top: 10px;
        right: 10px;
        padding: 10px;
    }
    .blog-date .day {
        font-size: 1.4rem;
    }
    .blog-content {
        padding: 18px 15px;
    }
    .blog-content h3 {
        font-size: 1rem;
    }
    .blog-content p {
        font-size: 0.85rem;
    }
    
    .contact-info-card,
    .contact-form-section {
        padding: 20px 15px;
    }
    
    .donation-container {
        padding: 15px;
    }
    .main-panel {
        padding: 25px 20px;
    }
    .title-section h1 {
        font-size: 1.5rem;
    }
    .title-icon {
        font-size: 1.8rem;
    }
    .info-card,
    .notes-card {
        padding: 18px 15px;
    }
    .info-icon {
        font-size: 1.4rem;
    }
    .info-value {
        font-size: 1rem;
    }
    .iban-display {
        font-size: 1rem;
        padding: 12px 10px;
        letter-spacing: 2px;
    }
    .copy-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .notes-list li {
        font-size: 0.85rem;
    }
}

/* --- BLOG DETAIL STYLES --- */
.blog-detail {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.7) 0%, rgba(2, 12, 27, 0.9) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.blog-detail-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
}

.blog-featured-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    border: 2px solid rgba(100, 255, 218, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.blog-featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(2, 12, 27, 0.3) 100%);
    pointer-events: none;
}

.blog-detail-header .blog-meta {
    margin-bottom: 20px;
}

.blog-detail-header h1 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.blog-detail-content {
    color: var(--text-main);
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-detail-content h2 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--neon-cyan);
    margin-top: 40px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

.blog-detail-content h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--neon-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-detail-content p {
    margin-bottom: 20px;
    color: var(--text-main);
}

.blog-detail-content ul, .blog-detail-content ol {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--text-main);
}

.blog-detail-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.blog-detail-content strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

.back-link {
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--neon-blue);
    transform: translateX(-5px);
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(100, 255, 218, 0.2);
    flex-wrap: wrap;
    gap: 20px;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(100, 255, 218, 0.08);
    border: 1px solid rgba(100, 255, 218, 0.25);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.nav-button.prev {
    justify-content: flex-start;
}

.nav-button.next {
    justify-content: flex-end;
    text-align: right;
}

.nav-button:hover {
    background: rgba(100, 255, 218, 0.15);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
    transform: translateY(-3px);
}

.nav-button span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-head);
    margin-bottom: 5px;
}

.nav-button strong {
    display: block;
    font-family: var(--font-head);
    color: var(--neon-cyan);
    font-size: 1rem;
}

.back-to-blog {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    text-decoration: none;
    color: var(--neon-cyan);
    font-family: var(--font-head);
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

@media (max-width: 768px) {
    .blog-detail {
        padding: 30px 20px;
        margin: 20px 0;
    }
    .blog-detail-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    .blog-detail-header h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    .blog-detail-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .blog-detail-content h2 {
        font-size: 1.3rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .blog-detail-content h3 {
        font-size: 1.1rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }
    .blog-detail-content p {
        margin-bottom: 15px;
    }
    .blog-detail-content ul,
    .blog-detail-content ol {
        padding-left: 25px;
        margin: 15px 0;
    }
    .blog-detail-content li {
        margin-bottom: 8px;
    }
    .blog-navigation {
        flex-direction: column;
        margin-top: 40px;
        padding-top: 30px;
        gap: 15px;
    }
    .nav-button {
        width: 100%;
        justify-content: space-between;
        min-width: auto;
        padding: 12px 20px;
    }
    .nav-button.prev, 
    .nav-button.next {
        justify-content: space-between;
        text-align: left;
    }
    .nav-button span {
        font-size: 0.8rem;
    }
    .nav-button strong {
        font-size: 0.9rem;
    }
    .blog-featured-image {
        height: 220px;
        margin-bottom: 25px;
    }
    .blog-image {
        height: 180px;
    }
    .back-to-blog {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .blog-detail {
        padding: 25px 15px;
    }
    .blog-detail-header h1 {
        font-size: 1.3rem;
    }
    .blog-detail-content {
        font-size: 0.9rem;
    }
    .blog-detail-content h2 {
        font-size: 1.15rem;
    }
    .blog-detail-content h3 {
        font-size: 1rem;
    }
    .blog-featured-image {
        height: 180px;
    }
    .nav-button {
        padding: 10px 15px;
    }
}
