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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #fafaf7;
    cursor: none;
}

.slider-container {
    width: 1200px;
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    position: relative;
}

.slide {
    min-width: 400px;
    height: 400px;
    margin: 0 10px;
    position: relative;
    transform: scale(0.8);
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.slide.active {
    transform: scale(1);
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-cursor {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    opacity: 0;
    transition: transform 0.1s ease;
    backdrop-filter: blur(4px);
    z-index: 1000;
}

.custom-cursor.left::before {
    content: "←";
}

.custom-cursor.right::before {
    content: "→";
}

.custom-cursor.active {
    transform: scale(1.5);
}
