/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  background: var(--brand-primary);
  color: var(--text-white);
  padding: 40px 0;
  text-align: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-secondary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Breadcrumb Styles */
.breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #dee2e6;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .separator {
  color: #6c757d;
}

.breadcrumb .current {
  color: #495057;
  font-weight: 500;
}

/* Main Content Container */
.main-content {
  padding: 10px 0px 40px 0px;
}

/* Casino Review Header */
.review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding: 0;
  background: none;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 24px;
}

.review-logo-box {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: var(--bg-white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.review-logo {
  max-width: 84px;
  max-height: 84px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

.review-info {
  flex: 1;
  min-width: 0;
}

.review-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.review-casino-name {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.review-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--brand-success);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  border-radius: 20px;
  white-space: nowrap;
}

.review-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.review-rating-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-secondary);
  line-height: 1;
}

.review-rating-max {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.review-verified {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-success);
}

.review-bonus-text {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-bonus-text i {
  color: var(--brand-secondary);
}

.review-cta {
  flex-shrink: 0;
  margin-left: auto;
}

.review-claim-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--brand-success);
  border: 2px solid var(--brand-success);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s;
}

.review-claim-btn:hover {
  opacity: .85;
  color: #ffffff;
}

/* ===================================
   REVIEW FLOATING WIDGET
   =================================== */
.review-widget {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 240px;
  background: var(--brand-primary);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

.review-widget.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.review-widget-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 4px;
  transition: color .15s;
}

.review-widget-close:hover {
  color: #fff;
}

.review-widget-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
}

.review-widget-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  line-height: 1.3;
}

.review-widget-bonus {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-secondary);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-widget-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 10px 0;
  background: var(--brand-success);
  border: 2px solid var(--brand-success);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 2px;
  transition: opacity .15s;
}

.review-widget-btn:hover {
  opacity: .85;
  color: #fff;
}

@media (max-width: 480px) {
  .review-widget {
    bottom: 16px;
    right: 12px;
    width: 200px;
    padding: 16px 14px 14px;
  }
}

/* ===================================
   LAST UPDATED DATE
   =================================== */
.date_wrapper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px !important;
  color: var(--text-light);
  line-height: 1 !important;
}

.date_wrapper span {
  font-weight: 600;
  color: var(--text-secondary);
}

.date_wrapper time {
  color: var(--brand-accent);
  font-weight: 500;
}

/* ===================================
   CASINO LISTING SHORTCODE [casino-listing]
   =================================== */
.cl-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.cl-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-white);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}

.cl-row:hover {
  border-color: var(--brand-secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cl-rank {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: var(--brand-secondary);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cl-logo-wrap {
  flex-shrink: 0;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cl-logo {
  max-width: 90px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

.cl-info {
  flex: 1;
  min-width: 0;
}

.cl-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cl-bonus {
  font-size: 14px;
  color: var(--brand-success);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cl-bonus i {
  font-size: 13px;
}

.cl-actions {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
}

.cl-btn {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.cl-btn:hover {
  opacity: 0.85;
}

.cl-btn-review {
  background: transparent;
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
}

.cl-btn-play {
  background: var(--brand-success);
  border: 2px solid var(--brand-success);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .cl-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .cl-rank {
    order: 1;
  }

  .cl-logo-wrap {
    order: 2;
  }

  .cl-info {
    order: 3;
    width: 100%;
  }

  .cl-actions {
    order: 4;
    width: 100%;
    justify-content: center;
  }

  .cl-btn {
    flex: 1;
    text-align: center;
  }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .hero-stats {
    gap: 40px;
  }

  .hero-section {
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 0px;
  }

  .hero-stats {
    justify-content: space-evenly;
    gap: 0px;
    margin-top: 15px;
  }

  .stat-number {
    font-size: 24px;
  }

  .review-header {
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
  }

  .review-logo-box {
    width: 72px;
    height: 72px;
  }

  .review-logo {
    max-width: 56px;
    max-height: 56px;
  }

  .review-casino-name {
    font-size: 20px;
  }

  .review-rating-num {
    font-size: 20px;
  }

  .review-cta {
    width: 100%;
    margin-left: 0;
  }

  .review-claim-btn {
    width: 100%;
    justify-content: center;
  }
}
