* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #0d1021;
  font-family: Inter, system-ui, sans-serif;
}

/* Carousel container */
.carousel {
  max-width: 1600px;
  margin: 20px auto;
  overflow: hidden;
  padding: 0 16px;
}

/* Track */
.track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Slide */
.slide {
  min-width: 100%;
  display: flex;
  gap: 24px;
  background: #0f0f0f;
  border-radius: 20px;
  padding: 32px;
  text-decoration: none;
  color: #fff;
}

.no-interaction {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.no-link-drag {
  user-select: none;
  -webkit-user-drag: none;
}


/* LEFT SIDE */
.slide-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.slide-left h2 {
  font-size: clamp(22px, 4vw, 36px);
  line-height: 1.2;
  max-width: 420px;
  margin: 20px 0;
}

/* BUTTON */
.btn {
  align-self: flex-start;
  padding: 12px 28px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid #2a2a2a;
  color: #4f7cff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #4f7cff;
  color: #ffffff;
  border-color: #4f7cff;
}

/* RIGHT SIDE */
.slide-right {
  width: 50%;
}

/* IMAGE PLACEHOLDER — FIXED */
.image-box {
  width: 100%;
  aspect-ratio: 1.92 / 1.08;
  background: #181818;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
}

/* Image fill */
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DOTS */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #444;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  width: 32px;
  background: #fff;
}

/* ================= MOBILE ================= */


@media (max-width: 768px) {
  .slide {
    flex-direction: column;
    padding: 24px;
  }

  .slide-right {
    width: 100%;
  }

  .slide-left h2 {
    max-width: 100%;
  }
}
