* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background: #0b0b0b;
}

/* WRAPPER */
.banner-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

/* CAROUSEL */
.carousel {
    position: relative;
    height: 420px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CAPTION */
.caption {
    position: absolute;
    left: 40px;
    bottom: 60px;
    color: #fff;
    max-width: 420px;
}

.caption h2 {
    font-size: 32px;
    margin: 0 0 6px;
}

.caption p {
    font-size: 16px;
    margin: 0 0 14px;
    opacity: .9;
}

.caption button {
    background: #ffd400;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

/* DOTS */
.dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #777;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #ffd400;
}

/* MOBILE */
@media (max-width: 768px) {
    .carousel {
        height: 260px;
    }

    .caption {
        left: 16px;
        bottom: 30px;
    }

    .caption h2 {
        font-size: 20px;
    }

    .caption p {
        font-size: 13px;
    }
}