body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: "Albert Sans", sans-serif;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}
a {
    color: #bb86fc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Animation styles */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Image Slider Styles */
.image-slider {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.image-slider.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.slider-container {
    position: relative;
}

.slider-track {
    display: flex;
    width: 100%; /* Container genişliği */
}

.slider-track img {
    width: 100%; /* Her resim container genişliği kadar */
    flex-shrink: 0;
    min-width: 100%; /* Minimum genişlik garantisi */
}

.slider-nav {
    z-index: 10;
}

.indicator-line {
    transition: all 0.3s ease;
}

.indicator-line:hover {
    transform: scale(1.1);
}

.indicator-line {
    background-color: #525252;
    transition: all 0.3s ease;
}

.indicator-line:hover {
    transform: scale(1.1);
}

.indicator-line.active {
    background-color: #ffffff;
}

/* Main content 3D effect smooth transition */
.main-content {
    transition: transform 0.3s ease-out;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Image Modal Overlay Styles */
#imageOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out;
    pointer-events: none;
}

#imageOverlay.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
    display: flex;
}

#imageOverlay.hidden {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.modal-content {
    position: relative;
    text-align: center;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1000000;
    transform: translate(0, 0);
}

.modal-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1000001;
}

.modal-image {
    max-width: 90vw;
    max-height: 70vh;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease-out;
    position: relative;
    z-index: 1000001;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1000002;
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Blog Styles */
.blog-content {
    margin: 0 auto;
    padding: 0 20px;
}

.blog-content h1 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.blog-content h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #adabab;
}
.blog-content ul span {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #adabab;
}

.blog-content strong {
    font-weight: 500;
}

.blog-date {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    font-weight: 300;
}

.blog-content a {
    color: #bb86fc;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.blog-content a:hover {
    border-bottom-color: #bb86fc;
}

.bullet-list {
    list-style-type: disc;
    padding-left: 1rem;
}

.bullet-list li {
    margin-bottom: 0.5rem;
}

/* Video Player Container */
.video-player-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 999;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-player-container.hidden {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    transition: all 0.3s ease;
}

.video-player-container.show-with-bounce {
    animation: bounceIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.08) translateY(-5px);
    }
    70% {
        transform: scale(0.95) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.video-header-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.hide-video-btn {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.hide-video-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.hide-video-btn i {
    font-size: 1.1rem;
}

/* Fixed Video Player */
.fixed-video-player {
    width: 300px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.fixed-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fixed-video-player:hover video {
    transform: scale(1.02);
}

.mute-toggle-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.mute-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.mute-toggle-btn i {
    font-size: 1.1rem;
}

/* Show Video Button (when hidden) */
.show-video-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: meshGradient 8s ease infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
    overflow: hidden;
}

.show-video-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.show-video-btn:hover::before {
    opacity: 1;
}

.show-video-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(102, 126, 234, 0.6);
}

.show-video-btn.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

@keyframes meshGradient {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.show-video-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.show-video-btn i {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Mobile responsive */
@media (max-width: 768px) {
    .video-player-container {
        padding: 12px;
        bottom: 24px;
        left: 24px;
        right: 24px;
        width: calc(100% - 48px);
    }
    
    .video-header-title {
        font-size: 0.75rem;
    }
    
    .fixed-video-player {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .mute-toggle-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
        bottom: 10px;
        right: 10px;
    }
    
    .mute-toggle-btn i {
        font-size: 1rem;
    }
    
    .show-video-btn {
        padding: 14px 20px;
        bottom: 24px;
        left: 24px;
        right: 24px;
        width: calc(100% - 48px);
        justify-content: center;
    }
    
    .show-video-text {
        font-size: 0.8rem;
    }
    
    .show-video-btn i {
        font-size: 1.5rem;
    }
}

