.casino_list_item_v2 {
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
}

/* Header: Rank + Logo + Title */
.casino_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.casino_header_logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.casino_rank_v2 {
  width: 40px;
  height: 40px;
  background: #4caf50;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino_bonus_text {
  font-weight: bold;
  color: var(--light-dark);
}

/* Description */
.casino_description {
  font-size: 18px;
  font-weight: 600;
  color: var(--light-dark);
  line-height: 1.5;
  margin-bottom: 20px;
}

.casino_description a {
  font-weight: bold;
  color: #0066cc;
  text-decoration: none;
}

/* Pros & Cons */
.casino_features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.casino_pros_v2,
.casino_cons_v2 {
  font-size: 18px;
  flex: 1;
  padding: 15px 20px;
  border-radius: 10px;
  line-height: 1.6;
}

.casino_pros_v2 {
  background: #f1fdf1;
  color: #1e4d1e;
}

.casino_features ul li i {
  width: 22px;
}

.casino_cons_v2 {
  background: #ffeeee;
  color: #7a1a1a;
}

@media (max-width: 768px) {
  .casino_header {
    flex-direction: column;
    align-items: flex-start;
  }

  .casino_header_logo {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .casino_features {
    flex-direction: column;
  }

  .btn_v2 {
    font-size: 16px;
    padding: 12px;
  }

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

  .casino_logo_v2 img {
    width: 100px;
  }
}
