.casino_list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.casino_list li {
  margin-bottom: 0px !important;
}

.casino_list.v1 {
  background-color: var(--light-dark);
  padding: 10px;
  border-radius: 12px;
  list-style: none !important;
  margin: 0px;
}

/* List Item Wrapper */
.casino_list_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 12px;
  padding: 15px 25px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* Rank Badge */
.casino_rank {
  font-size: 16px;
  position: absolute;
  top: 5px;
  left: 5px;
  background: var(--green);
  color: white;
  font-weight: bold;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

/* Logo Styling */
.casino_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #181c29;
  width: 220px;
  min-height: 150px;
  max-height: 150px;
  border-radius: 10px;
}

.casino_logo img {
  width: 140px;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

/* Casino Info Section */
.casino_name {
  width: 200px;
}

.casino_name h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.casino_name p {
  font-size: 16px !important;
  color: var(--light-dark) !important;
  font-weight: bold !important;
  margin-bottom: 0px !important;
  line-height: 1.1 !important;
}

.casino_info_text {
  width: 150px;
}

.casino_info_text p {
  font-size: 16px !important;
  color: var(--dark) !important;
  font-weight: bold !important;
  font-style: italic !important;
  margin-bottom: 0px !important;
}

/* Pros List */
.casino_pros {
  width: 150px;
  color: var(--light-dark);
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0px !important;
  padding: 0;
  list-style: none !important;
}

.casino_pros li {
  font-size: 16px !important;
  margin-bottom: 0px !important;
}

.casino_pros li i {
  color: #29a329;
  margin-right: 6px;
}

/* CTA Buttons */
.casino_cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.btn {
  display: block;
  font-size: 19px;
  font-weight: bold;
  background-color: #4caf50;
  color: white !important;
  min-width: 180px;
  padding: 10px 0px;
  border-radius: 10px;
  text-align: center;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s ease !important;
  text-decoration: none !important;
}

.btn:hover {
  opacity: 0.8;
}

.btn span {
  font-size: 13px !important;
  font-weight: normal;
}

.review_link {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  background-color: var(--light-dark);
  color: white !important;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none !important;
  transition: 0.3s ease !important;
}

.review_link:hover {
  opacity: 0.8;
}

/* Mobile & Small Tablets (up to 768px) */
@media (max-width: 768px) {
  .casino_list_item {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .casino_rank {
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .casino_logo {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    order: 1;
  }

  .casino_logo img {
    width: 100px;
  }

  .casino_name {
    order: 2;
    text-align: center;
  }

  .casino_info_text {
    width: 100%;
    order: 3;
    text-align: center;
  }

  .casino_pros {
    order: 5;
  }

  .casino_cta {
    order: 4;
    width: 100%;
    gap: 15px;
  }

  .btn {
    width: 100%;
  }
}
