* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  background: #f8f9fa;
  color: #1e293b;
  line-height: 1.6;
  padding: 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1e293b;
  text-align: center;
}

/* Casino Card */
.casino-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 80px 200px 1fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  border: 2px solid #e5e7eb;
}

.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #10b981;
}

/* Casino Logo */
.casino-logo-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.casino-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 5px;
}

/* Label Badge */
.label-badge {
  position: absolute;
  top: -12px;
  left: 100px;
  background: #475569;
  color: white;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.label-badge.best {
  background: #10b981;
}

/* Casino Info */
.casino-name {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 700;
}

.stars {
  color: #fbbf24;
  letter-spacing: 2px;
}

/* Bonus Info */
.bonus-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bonus-label {
  font-size: 0.85rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.bonus-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
}

/* Play Button */
.btn-play {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 18px 45px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.btn-play:active {
  transform: translateY(0);
}

/* Withdrawal Time */
.withdrawal-time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 12px;
  background: #f0fdf4;
  border-radius: 8px;
  border-left: 3px solid #10b981;
}

.withdrawal-time svg {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex-shrink: 0;
}

.withdrawal-time span {
  font-size: 0.9rem;
  color: #166534;
  font-weight: 600;
}

.withdrawal-time strong {
  color: #15803d;
  font-weight: 700;
}

/* Hero Image */
.responsive-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

/* Content Section */
.content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e293b;
}

.content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 35px 0 15px;
  color: #1e293b;
}

.content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 16px;
}

.content ul,
.content ol {
  margin-left: 20px;
  margin-bottom: 25px;
  color: #475569;
}

.content li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.content li strong {
  color: #1e293b;
}

/* Payment Table */
.table-responsive {
  overflow-x: auto;
  margin-bottom: 30px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.payment-table th,
.payment-table td {
  padding: 15px;
  border-bottom: 1px solid #e5e7eb;
}

.payment-table th {
  background-color: #f8f9fa;
  color: #1e293b;
  font-weight: 700;
}

.payment-table td {
  color: #475569;
  font-size: 1rem;
}

.payment-table tr:last-child td {
  border-bottom: none;
}

/* FAQ */
.faq-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #10b981;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background: #f0fdf4;
}

.faq-question {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.faq-answer {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  margin-top: 40px;
  color: #64748b;
  font-size: 0.9rem;
}

footer p {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 968px) {
  .casino-card {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .casino-name {
    font-size: 1.5rem;
  }

  .bonus-section {
    grid-column: 2;
  }

  .btn-play {
    grid-column: 2;
    width: 100%;
    text-align: center;
  }

  .label-badge {
    left: 70px;
  }
}

@media (max-width: 640px) {
  body {
    padding: 10px;
  }

  h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .casino-card {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .casino-logo-wrap {
    margin: 0 auto;
  }

  .label-badge {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
  }

  .casino-rating {
    justify-content: center;
  }

  .withdrawal-time {
    justify-content: center;
  }

  .bonus-section {
    grid-column: 1;
  }

  .btn-play {
    grid-column: 1;
  }

  .content {
    padding: 25px;
  }
}
