.top-casino {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
}

.casino-box {
  background: #000;
  border: 1px solid #2a2a3e;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: 60px 200px 1fr 2fr auto;
  gap: 30px;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.casino-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
  border-color: #ffd700;
}

/* Casino Number Badge */
.casino-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Logo Section */
.casino-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.casino-logo a {
  display: block;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.casino-logo a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.casino-logo img {
  max-width: 200px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Rating */
.casino-rating {
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.rating-icon {
  width: 18px;
  height: 18px;
}

.rating-value {
  color: #ffd700;
  font-weight: 700;
  font-size: 16px;
}

/* Specs Section */
.casino-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 16px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-label {
  color: #9ca3af;
  font-size: 13px;
  font-weight: 500;
}

.spec-value {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

/* Bonus Section */
.casino-bonus {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-icon {
  font-size: 32px;
  line-height: 1;
}

.bonus-text {
  color: #ffd700;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.bonus-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bonus-features li {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 0;
}

.bonus-features li::before {
  content: '';
  display: none;
}

/* Actions Section */
.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

.btn-play {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.btn-review {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-review:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* TOP 3 Special Styling */
.casino-box:nth-child(1) .casino-number {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
}

.casino-box:nth-child(2) .casino-number {
  background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
  box-shadow: 0 4px 20px rgba(192, 192, 192, 0.4);
}

.casino-box:nth-child(3) .casino-number {
  background: linear-gradient(135deg, #cd7f32 0%, #e8a561 100%);
  box-shadow: 0 4px 20px rgba(205, 127, 50, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .casino-box {
    grid-template-columns: 50px 180px 1fr 1.5fr auto;
    gap: 20px;
    padding: 25px;
  }
  
  .bonus-text {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .casino-box {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
  }
  
  .casino-logo {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  
  .casino-specs {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .spec-item {
    flex: 1;
    min-width: 150px;
  }
  
  .casino-actions {
    flex-direction: row;
  }
  
  .btn-play,
  .btn-review {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .top-casino {
    padding: 20px;
  }
  
  .casino-box {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .casino-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .casino-logo img {
    max-width: 160px;
  }
  
  .spec-item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .bonus-text {
    font-size: 16px;
  }
  
  .bonus-features li {
    font-size: 13px;
  }
  
  .casino-actions {
    flex-direction: column;
  }
}