
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1920px; /* ÃÖ´ë 1920 À¯Áö */
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}

.slides {
    display: flex;
    width: 100%;
}

.slide {
    flex: 0 0 100%; /* ÇÑ Àå¾¿ º¸¿©ÁÖ±â */
    opacity: 1; /* ÇÊ¿ä ½Ã JS¿¡¼­ fade °¡´É */
    position: relative;
    transition: opacity 0.5s ease-in-out;
}

.slide img {
    width: 100%;
    height: auto; /* ³ôÀÌ ÀÚµ¿ */
    display: block;
    object-fit: cover;
}


    .btn {
        display: inline-block;
        padding: 10px 20px;
        background-color: #ff5722;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        margin-top: 20px;
    }
    .controls {
        font-weight: bold;
        color: white;
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 10px;
        background-color: rgba(0, 0, 0, 0);
        padding: 5px;
        border-radius: 10px;
    }
    .controls button {
        background: none;
        border: none;
        color: white;
        font-size: 18px;
        cursor: pointer;
        padding: 5px;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
    }
    .controls button:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
    .progress-bar {
        width: 200px;
        height: 5px;
        background-color: rgba(255, 255, 255, 0.5);
        position: relative;
        overflow: hidden;
    }
    .progress {
        width: 100%;
        height: 100%;
        background-color: white;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 5s linear;
    }
