/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.mb-body-wrap-k9m7 {
  font-family: "Tahoma", sans-serif;
  background-color: #272828;
  color: #e8e8e8;
  line-height: 1.6;
  font-size: 16px;
}

.mb-page-wrapper-t3j8 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.mb-container-base-r5m9 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.mb-header-main-p6k2 {
  background-color: #d4b68c;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mb-hdr-wrap-x9k2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mb-hdr-container-p4j8 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.mb-logo-img-r5t9 {
  height: 50px;
  width: auto;
}

.mb-hdr-nav-sect-w7q1 {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mb-nav-list-h4m8 {
  display: flex;
  list-style: none;
  gap: 25px;
}

.mb-nav-link-d9s4 {
  color: #272828;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: color 0.3s ease;
}

.mb-nav-link-d9s4:hover {
  color: #e5cc6a;
}

.mb-hdr-actions-v8n2 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mb-review-count-badge-l3k9 {
  background-color: #21a300;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
}

.mb-hdr-btns-f5r6 {
  display: flex;
  gap: 10px;
}

.mb-btn-x3h7 {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.mb-btn-login-k9d2 {
  background-color: #e5cc6a;
  color: #272828;
}

.mb-btn-login-k9d2:hover {
  background-color: #d4bb59;
  transform: translateY(-2px);
}

.mb-btn-review-p4j8 {
  background-color: #21a300;
  color: #fff;
}

.mb-btn-review-p4j8:hover {
  background-color: #1a8200;
  transform: translateY(-2px);
}

/* Mobile Menu */
.mb-burger-btn-w2q5 {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mb-burger-line-t4m7 {
  width: 25px;
  height: 3px;
  background-color: #272828;
  transition: all 0.3s ease;
}

.mb-mobile-menu-r9s6 {
  display: none;
  background-color: #c4a67c;
  padding: 20px;
  margin-top: 15px;
  border-radius: 8px;
}

.mb-mobile-menu-r9s6.active {
  display: block;
}

.mb-mobile-nav-list-h3k8 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mb-mobile-nav-link-w4j9 {
  color: #272828;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: block;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.mb-mobile-nav-link-w4j9:hover {
  background-color: #d4b68c;
}

/* Breadcrumbs */
.mb-breadcrumbs-sect-w7n4 {
  background-color: #1f1f1f;
  padding: 12px 0;
}

.mb-breadcrumb-list-h8k3 {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}

.mb-breadcrumb-link-t9w2 {
  color: #e5cc6a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mb-breadcrumb-link-t9w2:hover {
  color: #d4bb59;
}

.mb-breadcrumb-separator-k6m5 {
  color: #888;
}

.mb-breadcrumb-active-p3h8 {
  color: #ccc;
}

/* Hero Section */
.mb-hero-section-m7p4 {
  position: relative;
  padding: 60px 0;
  margin-bottom: 40px;
}

.mb-hero-banner-bg-w3n8 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.mb-hero-overlay-k5j6 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(39, 40, 40, 0.95) 0%, rgba(39, 40, 40, 0.85) 100%);
}

.mb-hero-content-grid-t8h3 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.mb-casino-info-card-p9k7 {
  background: linear-gradient(145deg, #323333, #2a2b2b);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #3a3b3b;
}

.mb-card-header-sect-w4m2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.mb-casino-logo-img-d6j9 {
  max-width: 200px;
  height: auto;
}

.mb-overall-rating-box-k3n5 {
  text-align: center;
}

.mb-rating-score-text-r7m8 {
  font-size: 48px;
  font-weight: 700;
  color: #21a300;
  line-height: 1;
}

.mb-rating-stars-wrap-h2k4 {
  margin: 10px 0;
}

.mb-star-icon-r5m9 {
  font-size: 24px;
  color: #555;
}

.mb-star-filled-d8q3 {
  color: #ffd700;
}

.mb-star-half-t6w9 {
  color: #ffd700;
  opacity: 0.5;
}

.mb-rating-count-text-j9p3 {
  color: #aaa;
  font-size: 14px;
}

.mb-bonus-info-sect-m5k8 {
  background: linear-gradient(135deg, #21a300, #1a8200);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.mb-bonus-label-text-w7j2 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 5px;
}

.mb-bonus-amount-text-p4n6 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.mb-card-actions-bar-t3h9 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mb-btn-cta-primary-k8m4 {
  background-color: #21a300;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
}

.mb-btn-cta-primary-k8m4:hover {
  background-color: #1a8200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(33, 163, 0, 0.4);
}

.mb-btn-cta-secondary-r6j7 {
  background-color: #e5cc6a;
  color: #272828;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
}

.mb-btn-cta-secondary-r6j7:hover {
  background-color: #d4bb59;
  transform: translateY(-2px);
}

.mb-ratings-breakdown-card-d9w5 {
  background: linear-gradient(145deg, #323333, #2a2b2b);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #3a3b3b;
}

.mb-breakdown-heading-m2k7 {
  color: #e5cc6a;
  font-size: 20px;
  margin-bottom: 20px;
}

.mb-rating-bars-wrap-p8j3 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mb-rating-bar-item-k4n6 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mb-rating-label-t7m2 {
  min-width: 80px;
  font-size: 14px;
  color: #ccc;
}

.mb-progress-bar-wrap-w9k5 {
  flex: 1;
  height: 10px;
  background-color: #1f1f1f;
  border-radius: 5px;
  overflow: hidden;
}

.mb-progress-fill-h3j8 {
  height: 100%;
  background: linear-gradient(90deg, #21a300, #2ec400);
  transition: width 0.5s ease;
}

.mb-rating-count-num-r5m9 {
  min-width: 30px;
  text-align: right;
  font-size: 14px;
  color: #aaa;
}

/* Detailed Ratings */
.mb-detailed-ratings-sect-w6k9 {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #323333, #2a2b2b);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mb-section-heading-m4j7 {
  color: #e5cc6a;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 700;
}

.mb-rating-params-grid-p8n3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mb-param-rating-item-k7m2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mb-param-label-text-t5j9 {
  font-size: 14px;
  color: #ccc;
  font-weight: 700;
}

.mb-param-progress-wrap-w3k6 {
  height: 12px;
  background-color: #1f1f1f;
  border-radius: 6px;
  overflow: hidden;
}

.mb-param-progress-fill-h9m4 {
  height: 100%;
  background: linear-gradient(90deg, #e5cc6a, #d4b68c);
  transition: width 0.5s ease;
}

.mb-param-score-num-r6j8 {
  font-size: 16px;
  color: #21a300;
  font-weight: 700;
}

/* Casino Details */
.mb-casino-details-card-m9k5 {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #323333, #2a2b2b);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mb-details-grid-p7j3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.mb-detail-item-k8m6 {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background-color: #1f1f1f;
  border-radius: 8px;
}

.mb-detail-label-w4n2 {
  color: #aaa;
  font-size: 14px;
}

.mb-detail-value-t9j7 {
  color: #e8e8e8;
  font-size: 14px;
  font-weight: 700;
}

.mb-show-more-btn-r5k8 {
  background-color: #e5cc6a;
  color: #272828;
  padding: 12px 25px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mb-show-more-btn-r5k8:hover {
  background-color: #d4bb59;
  transform: translateY(-2px);
}

/* Other Bonuses */
.mb-other-bonuses-sect-w3k7 {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.mb-bonuses-grid-p6j9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mb-bonus-card-item-k4m8 {
  background: linear-gradient(145deg, #323333, #2a2b2b);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.mb-bonus-card-item-k4m8:hover {
  transform: translateY(-5px);
}

.mb-bonus-icon-wrap-t7n3 {
  font-size: 48px;
  margin-bottom: 15px;
}

.mb-bonus-card-title-w9j5 {
  color: #e5cc6a;
  font-size: 18px;
  margin-bottom: 10px;
}

.mb-bonus-card-desc-r2k6 {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 15px;
}

.mb-btn-bonus-claim-m5h8 {
  background-color: #21a300;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
}

.mb-btn-bonus-claim-m5h8:hover {
  background-color: #1a8200;
  transform: scale(1.05);
}

/* Pros and Cons */
.mb-pros-cons-sect-k9m7 {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #323333, #2a2b2b);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mb-pros-cons-grid-p3j8 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mb-pros-heading-text-r8m2,
.mb-cons-heading-text-m4k8 {
  font-size: 20px;
  margin-bottom: 15px;
}

.mb-pros-heading-text-r8m2 {
  color: #21a300;
}

.mb-cons-heading-text-m4k8 {
  color: #ff4444;
}

.mb-pros-list-items-t5j9,
.mb-cons-list-items-w2j7 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mb-pros-list-item-k7n3 {
  padding: 10px;
  background-color: rgba(33, 163, 0, 0.1);
  border-left: 3px solid #21a300;
  border-radius: 5px;
  color: #e8e8e8;
}

.mb-cons-list-item-p6m9 {
  padding: 10px;
  background-color: rgba(255, 68, 68, 0.1);
  border-left: 3px solid #ff4444;
  border-radius: 5px;
  color: #e8e8e8;
}

/* Table of Contents */
.mb-toc-section-m7k4 {
  background-color: #1f1f1f;
  padding: 30px 0;
  margin-bottom: 40px;
}

.mb-toc-tabs-wrap-p9j3 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.mb-toc-tab-item-k6w8 {
  background-color: #323333;
  color: #e8e8e8;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.mb-toc-tab-item-k6w8:hover {
  background-color: #e5cc6a;
  color: #272828;
  transform: translateY(-2px);
}

/* Leave Review Section */
.mb-leave-review-section-w3k9 {
  padding: 40px 0;
  background-color: #1f1f1f;
}

.mb-review-bonus-banner-p7j4 {
  background: linear-gradient(135deg, #21a300, #1a8200);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(33, 163, 0, 0.3);
}

.mb-banner-heading-text-r6n2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.mb-banner-desc-text-t9j7 {
  color: #e8e8e8;
  font-size: 16px;
}

.mb-banner-cta-btn-w4k3 {
  background-color: #fff;
  color: #21a300;
  padding: 15px 30px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mb-banner-cta-btn-w4k3:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.mb-review-form-card-m5j8 {
  background: linear-gradient(145deg, #323333, #2a2b2b);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mb-form-heading-text-k7n4 {
  color: #e5cc6a;
  font-size: 28px;
  margin-bottom: 30px;
}

.mb-form-row-grid-w2k7 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.mb-form-group-item-t6j9 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.mb-form-label-text-r4m8 {
  color: #e8e8e8;
  font-size: 14px;
  font-weight: 700;
}

.mb-form-input-field-k3n5,
.mb-form-textarea-field-w8k5 {
  background-color: #1f1f1f;
  border: 2px solid #3a3b3b;
  border-radius: 8px;
  padding: 12px;
  color: #e8e8e8;
  font-size: 14px;
  font-family: "Tahoma", sans-serif;
  transition: border-color 0.3s ease;
}

.mb-form-input-field-k3n5:focus,
.mb-form-textarea-field-w8k5:focus {
  outline: none;
  border-color: #e5cc6a;
}

.mb-rating-params-form-w7k4 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mb-param-rating-row-m9j6 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #1f1f1f;
  border-radius: 8px;
}

.mb-param-name-text-p5k8 {
  color: #ccc;
  font-size: 14px;
}

.mb-star-rating-input-t3m7 {
  display: flex;
  gap: 5px;
}

.mb-star-input-icon-r6j9 {
  font-size: 24px;
  color: #555;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mb-star-input-icon-r6j9:hover,
.mb-star-input-icon-r6j9.active {
  color: #ffd700;
}

.mb-form-submit-btn-p7j4 {
  background-color: #21a300;
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.mb-form-submit-btn-p7j4:hover {
  background-color: #1a8200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(33, 163, 0, 0.4);
}

.mb-form-success-msg-k9m3 {
  text-align: center;
  padding: 40px;
}

.mb-success-icon-wrap-t6j8 {
  font-size: 64px;
  color: #21a300;
  margin-bottom: 20px;
}

.mb-success-heading-r4m7 {
  color: #e5cc6a;
  font-size: 24px;
  margin-bottom: 10px;
}

.mb-success-text-desc-w2k9 {
  color: #ccc;
  font-size: 16px;
}

/* User Reviews Section */
.mb-user-reviews-section-k4m8 {
  padding: 40px 0;
  background-color: #272828;
}

.mb-reviews-container-k7m9 {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mb-review-card-p3j8 {
  background: linear-gradient(145deg, #323333, #2a2b2b);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #3a3b3b;
}

.mb-review-header-w5n2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.mb-review-author-info-t9k4 {
  display: flex;
  gap: 15px;
}

.mb-review-avatar-h6m3 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.mb-review-meta-d4s7 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mb-review-author-name-r8q1 {
  color: #e5cc6a;
  font-size: 16px;
}

.mb-review-country-flag-j2p6 {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #aaa;
  font-size: 14px;
}

.mb-review-date-text-m7w3 {
  color: #888;
  font-size: 13px;
}

.mb-review-rating-box-k9n5 {
  text-align: right;
}

.mb-rating-display-sect-t4h8 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  margin-bottom: 10px;
}

.mb-rating-value-num-p6j2 {
  font-size: 32px;
  font-weight: 700;
  color: #21a300;
}

.mb-stars-wrap-w3k7 {
  display: flex;
  gap: 2px;
}

.mb-star-empty-h2n6 {
  color: #555;
}

.mb-rating-details-btn-j7k4 {
  background-color: #3a3b3b;
  color: #e8e8e8;
  padding: 6px 12px;
  border-radius: 5px;
  border: none;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mb-rating-details-btn-j7k4:hover {
  background-color: #4a4b4b;
}

.mb-review-title-text-m8p5 {
  color: #e5cc6a;
  font-size: 20px;
  margin-bottom: 10px;
}

.mb-review-source-info-k3w9 
\
