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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    position: relative;
}

.ms-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.jarallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.jarallax-video {
    pointer-events: none !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.instagram-container {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.75);
    padding: 12px 24px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.instagram-link:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.instagram-logo {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.instagram-link:hover .instagram-logo {
    transform: scale(1.1);
}

.instagram-text {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.3px;
}

/* Mobil cihazlar için responsive tasarım */
@media (max-width: 768px) {
    .instagram-container {
        bottom: 30px;
    }
    
    .instagram-link {
        padding: 10px 20px;
    }
    
    .instagram-logo {
        width: 24px;
        height: 24px;
    }
    
    .instagram-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .instagram-container {
        bottom: 20px;
    }
    
    .instagram-link {
        padding: 8px 16px;
    }
    
    .instagram-logo {
        width: 22px;
        height: 22px;
    }
    
    .instagram-text {
        font-size: 12px;
    }
}

/* Küçük ekranlar için video optimizasyonu */
@media (max-height: 500px) {
    .instagram-container {
        bottom: 15px;
    }
    
    .instagram-link {
        padding: 8px 14px;
        gap: 8px;
    }
    
    .instagram-logo {
        width: 20px;
        height: 20px;
    }
    
    .instagram-text {
        font-size: 11px;
    }
}
