.casino-promo {
  background: #0b0b0f;
  padding: 14px;
  padding-bottom: 120px;
  font-family: 'Poppins', sans-serif;
}

/* GRID */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* CARD */
.promo-card {
  background: #121218;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #1f1f2a;
}

/* IMAGE */
.promo-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.promo-content {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* TITLE */
.promo-title {
  font-size: 14px;
  font-weight: 500;
  color: #eaeaea;
  line-height: 1.4;
  flex: 1;
}

/* LINK */
.promo-link {
  font-size: 12px;
  color: #7da6ff;
  text-decoration: none;
  font-weight: 500;
}

.promo-link:hover {
  text-decoration: underline;
}

/* DESKTOP */
@media (min-width: 768px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

  /* PROMO TOP */
.promo-top {
  padding: 24px 16px 18px;
  color: #fff;
}

.promo-top h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.promo-top p {
  font-size: 13px;
  color: #cfded8;
  margin-bottom: 14px;
}



.casino-promo {
  background: #1a1a1a;
  padding: 14px;
  padding-bottom: 120px;
  font-family: 'Poppins', sans-serif;
}

/* GRID */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* CARD */
.promo-card {
  background: #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #1f1f2a;
}

/* IMAGE */
.promo-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.promo-content {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* TITLE */
.promo-title {
  font-size: 14px;
  font-weight: 500;
  color: #eaeaea;
  line-height: 1.4;
  flex: 1;
}

/* LINK */
/* BUTTON PROMO */
.promo-link {
  background: linear-gradient(135deg, #d6a24f, #f0c36d);
box-shadow: 0 4px 10px rgba(214, 162, 79, 0.3);
  color: #111;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

/* HOVER */
.promo-link:hover {
  background: #e2b866;
  color: #000;
  transform: translateY(-1px);
}
/* DESKTOP */
@media (min-width: 768px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* PROMO CARD */
.promo-card {
  background: linear-gradient(180deg, #1a1a1a, #0b0b0b);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, .12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .6);
  transition: transform .3s ease;
}

.promo-card:hover {
  transform: translateY(-3px);
}

/* HEADER */
.promo-header {
  position: relative;
  cursor: pointer;
}

.promo-header img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}

/* TITLE AREA */
.promo-header-content {
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-header-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #f5c16c;
}

/* TOGGLE */
.promo-toggle {
  font-size: 12px;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 6px;
}

.promo-toggle i {
  transition: transform .3s ease;
}

/* ACCORDION */
.promo-detail-accordion {
  max-height: 0;
  overflow: hidden;
  background: radial-gradient(circle at top, #141414, #050508);
  transition: max-height .5s ease;
}

/* ACTIVE */
.promo-detail-accordion.active {
  max-height: 1000px;
}

.promo-detail-accordion.active~.promo-header-content i {
  transform: rotate(180deg);
}

/* BODY */
.promo-detail-body {
  padding: 16px;
  font-size: 13px;
  line-height: 1.8;
  color: #ddd;
}

.promo-detail-body p {
  margin-bottom: 12px;
}