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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #f8fafc;
}

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

/* Header Styles */
.mb-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mb-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mb-header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.mb-nav {
  display: flex;
  gap: 1.5rem;
}

.mb-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.mb-nav a:hover {
  opacity: 0.8;
}

.mb-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mb-review-count {
  font-size: 0.9rem;
  opacity: 0.9;
}

.mb-header-buttons {
  display: flex;
  gap: 0.5rem;
}

.mb-burger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mb-burger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 2px 0;
  transition: 0.3s;
}

.mb-mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mb-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mb-mobile-nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0;
}

.mb-mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Button Styles */
.mb-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  outline: 2px solid white;
  color: white;
}

.mb-btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.mb-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.mb-btn-secondary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.mb-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.mb-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.mb-btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.mb-btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Breadcrumbs */
.mb-breadcrumbs {
  background: white;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.mb-breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.mb-breadcrumb-list li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: #6b7280;
}

.mb-breadcrumb-list a {
  color: #3b82f6;
  text-decoration: none;
}

/* Hero Section */
.mb-hero {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  overflow: hidden;
}

.mb-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://www.placecats.com/1200/600");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.mb-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.mb-casino-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mb-casino-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.mb-casino-logo img {
  height: 80px;
  width: auto;
}

.mb-casino-info h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.mb-rating-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mb-rating-score {
  font-size: 2.5rem;
  font-weight: 700;
  color: #10b981;
}

.mb-rating-bar {
  width: 200px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

.mb-rating-fill {
  height: 100%;
  background: linear-gradient(90deg, #ef4444 0%, #f59e0b 50%, #10b981 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.mb-rating-text {
  font-size: 1.2rem;
  font-weight: 600;
}

.mb-bonus-info {
  text-align: center;
  margin-bottom: 1.5rem;
}

.mb-bonus-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

.mb-bonus-amount {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
}

.mb-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.mb-rating-breakdown {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mb-rating-breakdown h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.mb-rating-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mb-rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mb-rating-row span:first-child {
  min-width: 80px;
  font-size: 0.9rem;
}

.mb-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  overflow: hidden;
}

.mb-bar-fill {
  height: 100%;
  background: #10b981;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.mb-rating-row span:last-child {
  min-width: 40px;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 600;
}

.mb-detailed-ratings {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.mb-detailed-ratings h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.mb-rating-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.mb-rating-category {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mb-rating-category span:first-child {
  min-width: 150px;
  font-size: 0.9rem;
}

.mb-rating-category span:last-child {
  min-width: 60px;
  text-align: right;
  font-weight: 600;
}

.mb-casino-details {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.mb-casino-details h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.mb-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.mb-detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mb-detail-label {
  font-weight: 500;
  opacity: 0.8;
}

.mb-detail-value {
  font-weight: 600;
}

.mb-details-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mb-details-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mb-bonus-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.mb-bonus-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mb-bonus-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.mb-bonus-card p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fbbf24;
}

.mb-pros-cons {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mb-pros,
.mb-cons {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mb-pros h3,
.mb-cons h3 {
  margin-bottom: 1rem;
  text-align: center;
}

.mb-pros ul,
.mb-cons ul {
  list-style: none;
}

.mb-pros li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.mb-pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.mb-cons li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.mb-cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
}

/* Table of Contents */
.mb-toc {
  background: white;
  padding: 2rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.mb-toc h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #1f2937;
}

.mb-toc-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.mb-toc-tab {
  padding: 0.75rem 1.5rem;
  background: #f3f4f6;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mb-toc-tab:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
}

/* Leave Review Section */
.mb-leave-review {
  padding: 3rem 0;
  background: #f9fafb;
}

.mb-bonus-banner {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 3rem;
}

.mb-bonus-banner h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.mb-bonus-banner p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.mb-review-form {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mb-review-form h2 {
  margin-bottom: 2rem;
  text-align: center;
  color: #1f2937;
}

.mb-form {
  max-width: 600px;
  margin: 0 auto;
}

.mb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mb-form-group {
  margin-bottom: 1.5rem;
}

.mb-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

.mb-form-group input,
.mb-form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.mb-form-group input:focus,
.mb-form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.mb-rating-inputs {
  margin-bottom: 2rem;
}

.mb-rating-inputs h3 {
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.mb-rating-input-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
}

.mb-rating-input-group label {
  font-weight: 500;
  color: #374151;
}

.mb-star-rating {
  display: flex;
  gap: 0.25rem;
}

.mb-star {
  font-size: 1.5rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mb-star:hover,
.mb-star.active {
  color: #fbbf24;
}

.mb-success-message {
  text-align: center;
  padding: 2rem;
  background: #ecfdf5;
  border: 2px solid #10b981;
  border-radius: 12px;
  color: #065f46;
}

.mb-success-message h3 {
  color: #065f46;
  margin-bottom: 0.5rem;
}

/* User Reviews Section */
.mb-user-reviews {
  padding: 3rem 0;
  background: white;
}

.mb-user-reviews h2 {
  margin-bottom: 2rem;
  text-align: center;
  color: #1f2937;
}

.mb-reviews-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.mb-review-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.mb-review-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.mb-review-author-info {
  display: flex;
  gap: 1rem;
}

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

.mb-review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mb-review-author {
  font-weight: 600;
  color: #1f2937;
}

.mb-review-country {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.mb-review-country img {
  width: 20px;
  height: 15px;
  object-fit: cover;
}

.mb-review-date {
  font-size: 0.9rem;
  color: #6b7280;
}

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

.mb-rating-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.mb-rating-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.mb-stars {
  display: flex;
  gap: 0.1rem;
}

.mb-star {
  font-size: 1.2rem;
  color: #d1d5db;
}

.mb-star-filled {
  color: #fbbf24;
}

.mb-rating-details-btn {
  background: none;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mb-rating-details-btn:hover {
  background: #f3f4f6;
}

.mb-review-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.mb-review-source {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.mb-review-source a {
  color: #3b82f6;
  text-decoration: none;
}

.mb-review-body {
  margin-bottom: 1rem;
}

.mb-review-text {
  line-height: 1.6;
  color: #374151;
}

.mb-review-truncated {
  max-height: 4.8em;
  overflow: hidden;
  position: relative;
}

.mb-review-truncated::after {
  content: "...";
  position: absolute;
  bottom: 0;
  right: 0;
  background: white;
  padding-left: 1rem;
}

.mb-review-expand {
  background: none;
  border: none;
  color: #3b82f6;
  cursor: pointer;
  font-weight: 500;
  margin-top: 0.5rem;
}

.mb-review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mb-review-pros,
.mb-review-cons {
  padding: 1rem;
  border-radius: 8px;
}

.mb-review-pros {
  background: #ecfdf5;
  border: 1px solid #d1fae5;
}

.mb-review-cons {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.mb-review-pros h5,
.mb-review-cons h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.mb-review-pros h5 {
  color: #065f46;
}

.mb-review-cons h5 {
  color: #991b1b;
}

.mb-review-pros ul,
.mb-review-cons ul {
  list-style: none;
}

.mb-pro-item {
  color: #065f46;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.mb-con-item {
  color: #991b1b;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.mb-review-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.mb-review-votes {
  display: flex;
  gap: 1rem;
}

.mb-vote-btn {
  background: none;
  border: 1px solid #e5e7eb;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mb-vote-btn:hover {
  background: #f3f4f6;
}

.mb-like-btn:hover {
  background: #ecfdf5;
  border-color: #10b981;
}

.mb-dislike-btn:hover {
  background: #fef2f2;
  border-color: #ef4444;
}

.mb-reply-btn {
  background: none;
  border: 1px solid #3b82f6;
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mb-reply-btn:hover {
  background: #3b82f6;
  color: white;
}

.mb-reply-form {
  margin-top: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
}

.mb-reply-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  margin-bottom: 1rem;
  resize: vertical;
}

.mb-reply-actions {
  display: flex;
  gap: 0.5rem;
}

/* FAQ Styles */
.mb-faq {
  margin-bottom: 3rem;
}

.mb-faq h2 {
  margin-bottom: 2rem;
  text-align: center;
  color: #1f2937;
}

.mb-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.mb-faq-question {
  width: 100%;
  padding: 1.5rem;
  background: white;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mb-faq-question:hover {
  background: #f9fafb;
}

.mb-faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.mb-faq-active .mb-faq-question::after {
  transform: rotate(45deg);
}

.mb-faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #374151;
  line-height: 1.6;
}

.mb-faq-item:not(.mb-faq-active) .mb-faq-answer {
  display: none;
}

.mb-review-cta {
  text-align: center;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
}

.mb-review-cta h3 {
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.mb-review-cta p {
  margin-bottom: 1.5rem;
  color: #6b7280;
}

/* Comparison Section */
.mb-comparison {
  padding: 3rem 0;
  background: #f9fafb;
}

.mb-comparison h2 {
  margin-bottom: 2rem;
  text-align: center;
  color: #1f2937;
}

.mb-comparison-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

.mb-comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.mb-comparison-table th,
.mb-comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.mb-comparison-table th {
  background: #f9fafb;
  font-weight: 600;
  color: #1f2937;
}

.mb-comparison-table td:first-child {
  font-weight: 500;
  color: #374151;
}

.mb-rating-score {
  color: #10b981;
  font-weight: 600;
}

/* Supplementary Content */
.mb-supplementary {
  padding: 3rem 0;
  background: white;
}

.mb-screenshots {
  margin-bottom: 3rem;
}

.mb-screenshots h2 {
  margin-bottom: 2rem;
  text-align: center;
  color: #1f2937;
}

.mb-screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.mb-screenshot {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mb-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.mb-video-review {
  margin-bottom: 3rem;
}

.mb-video-review h2 {
  margin-bottom: 2rem;
  text-align: center;
  color: #1f2937;
}

.mb-video-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mb-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mb-text-review h2 {
  margin-bottom: 2rem;
  text-align: center;
  color: #1f2937;
}

.mb-review-content {
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  color: #374151;
}

.mb-review-content h2,
.mb-review-content h3,
.mb-review-content h4 {
  color: #1f2937;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.mb-review-content h2 {
  font-size: 1.8rem;
}

.mb-review-content h3 {
  font-size: 1.4rem;
}

.mb-review-content p {
  margin-bottom: 1rem;
}

.mb-review-content ul,
.mb-review-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.mb-review-content li {
  margin-bottom: 0.5rem;
}

.mb-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mb-review-content th,
.mb-review-content td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.mb-review-content th {
  background: #f9fafb;
  font-weight: 600;
}

.mb-author-info {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.mb-author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.mb-author-details h3 {
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.mb-author-details p {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.mb-author-links {
  display: flex;
  gap: 1rem;
}

.mb-author-links a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

.mb-author-links a:hover {
  text-decoration: underline;
}

/* Footer */
.mb-footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}

.mb-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.mb-footer-section h4 {
  margin-bottom: 1rem;
  color: white;
}

.mb-footer-section ul {
  list-style: none;
}

.mb-footer-section ul li {
  margin-bottom: 0.5rem;
}

.mb-footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mb-footer-section a:hover {
  color: white;
}

.mb-footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.mb-footer-section p {
  color: #d1d5db;
  line-height: 1.6;
}

.mb-trust-logos {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.mb-trust-logos img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.mb-trust-logos img:hover {
  opacity: 1;
}

.mb-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
}

.mb-copyright {
  color: #9ca3af;
  font-size: 0.9rem;
}

.mb-legal-links {
  display: flex;
  gap: 1rem;
}

.mb-legal-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
}

.mb-legal-links a:hover {
  color: white;
}

/* Fixed Widget */
.mb-fixed-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 1rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mb-widget-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mb-widget-bonus {
  font-weight: 600;
  font-size: 1.1rem;
}

.mb-widget-btn {
  background: white;
  color: #10b981;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mb-widget-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mb-container {
    padding: 0 15px;
  }

  .mb-nav {
    display: none;
  }

  .mb-burger {
    display: flex;
  }

  .mb-header.mb-menu-open .mb-mobile-menu {
    display: block;
  }

  .mb-header.mb-menu-open .mb-burger span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mb-header.mb-menu-open .mb-burger span:nth-child(2) {
    opacity: 0;
  }

  .mb-header.mb-menu-open .mb-burger span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .mb-hero-content {
    grid-template-columns: 1fr;
  }

  .mb-casino-info h1 {
    font-size: 1.5rem;
  }

  .mb-rating-main {
    flex-direction: column;
    gap: 0.5rem;
  }

  .mb-rating-bar {
    width: 150px;
  }

  .mb-hero-buttons {
    flex-direction: column;
  }

  .mb-rating-categories {
    grid-template-columns: 1fr;
  }

  .mb-details-grid {
    grid-template-columns: 1fr;
  }

  .mb-bonus-cards {
    grid-template-columns: 1fr;
  }

  .mb-pros-cons {
    grid-template-columns: 1fr;
  }

  .mb-toc-tabs {
    flex-direction: column;
    align-items: center;
  }

  .mb-form-row {
    grid-template-columns: 1fr;
  }

  .mb-rating-input-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .mb-review-header {
    flex-direction: column;
    gap: 1rem;
  }

  .mb-review-rating {
    text-align: left;
  }

  .mb-review-pros-cons {
    grid-template-columns: 1fr;
  }

  .mb-review-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .mb-screenshot-gallery {
    grid-template-columns: 1fr;
  }

  .mb-author-info {
    flex-direction: column;
    text-align: center;
  }

  .mb-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .mb-widget-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .mb-comparison-table {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .mb-hero {
    padding: 2rem 0;
  }

  .mb-casino-card {
    padding: 1.5rem;
  }

  .mb-casino-info h1 {
    font-size: 1.3rem;
  }

  .mb-rating-score {
    font-size: 2rem;
  }

  .mb-bonus-amount {
    font-size: 1.3rem;
  }

  .mb-review-form {
    padding: 1.5rem;
  }

  .mb-comparison-table th,
  .mb-comparison-table td {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}

/* WordPress-like styles for obfuscation */
.wp-block-group {
  display: none;
}

.wp-site-blocks {
  display: none;
}

.elementor-widget {
  display: none;
}

.yoast-breadcrumb {
  display: none;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.mb-casino-card {
  animation: fadeInUp 0.6s ease-out;
}

.mb-btn:hover {
  animation: pulse 0.3s ease-in-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.mb-btn:focus,
.mb-toc-tab:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mb-header,
  .mb-fixed-widget,
  .mb-footer {
    display: none;
  }

  .mb-hero {
    background: white;
    color: black;
  }

  .mb-review-card {
    break-inside: avoid;
  }
}
