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

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.mb-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header Styles */
.mb-header {
  background: linear-gradient(0deg, #07498f 0%, #002246 100%);
  color: white;
  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;
  padding: 15px 0;
}

.mb-header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

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

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

.mb-nav-link:hover {
  color: #4690e0;
}

.mb-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.mb-count-number {
  background: #4690e0;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
}

.mb-header-buttons {
  display: flex;
  gap: 10px;
}

.mb-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.mb-btn-login {
  background: #4690e0;
  color: white;
}

.mb-btn-login:hover {
  background: #357abd;
}

.mb-btn-register {
  background: #fa5000;
  color: white;
}

.mb-btn-register:hover {
  background: #e04600;
}

.mb-btn-review {
  background: transparent;
  color: white;
  border: 2px solid #4690e0;
}

.mb-btn-review:hover {
  background: #4690e0;
}

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

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

.mb-mobile-nav {
  display: none;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-mobile-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.mb-mobile-nav-list {
  list-style: none;
}

.mb-mobile-nav-list li {
  margin-bottom: 15px;
}

/* Breadcrumbs */
.mb-breadcrumbs {
  background: #e9ecef;
  padding: 10px 0;
}

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

.mb-breadcrumb-item::after {
  content: ">";
  margin-left: 10px;
  color: #6c757d;
}

.mb-breadcrumb-item:last-child::after {
  display: none;
}

.mb-breadcrumb-link {
  color: #4690e0;
  text-decoration: none;
}

.mb-breadcrumb-current {
  color: #6c757d;
}

/* Hero Section */
.mb-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mb-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.mb-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mb-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 73, 143, 0.8) 0%, rgba(0, 34, 70, 0.9) 100%);
  z-index: -1;
}

.mb-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 60px 0;
}

.mb-casino-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.mb-casino-card:hover {
  transform: translateY(-5px);
}

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

.mb-card-logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
}

.mb-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #002246;
  margin-bottom: 8px;
}

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

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

.mb-star {
  color: #ddd;
  font-size: 18px;
}

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

.mb-rating-text {
  font-weight: 600;
  color: #07498f;
}

.mb-card-bonus {
  background: linear-gradient(135deg, #fa5000 0%, #ff6b35 100%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  text-align: center;
  color: white;
}

.mb-bonus-label {
  display: block;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 5px;
}

.mb-bonus-amount {
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.mb-bonus-extra {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.mb-card-btn {
  width: 100%;
  background: linear-gradient(135deg, #4690e0 0%, #357abd 100%);
  color: white;
  padding: 15px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
}

.mb-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(70, 144, 224, 0.3);
}

.mb-rating-summary {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mb-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.mb-summary-title {
  font-size: 20px;
  font-weight: 600;
  color: #002246;
}

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

.mb-overall-score {
  font-size: 32px;
  font-weight: 700;
  color: #07498f;
}

.mb-rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mb-rating-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mb-rating-stars {
  min-width: 30px;
  font-size: 14px;
  font-weight: 600;
}

.mb-rating-bar {
  flex: 1;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.mb-rating-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffc107 0%, #ff8f00 100%);
  transition: width 0.3s ease;
}

.mb-rating-count {
  min-width: 20px;
  font-size: 14px;
  color: #6c757d;
}

.mb-detailed-ratings {
  grid-column: 1 / -1;
  background: white;
  border-radius: 16px;
  padding: 30px;
  margin-top: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mb-detailed-title {
  font-size: 24px;
  font-weight: 600;
  color: #002246;
  margin-bottom: 25px;
  text-align: center;
}

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

.mb-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.mb-category-name {
  font-weight: 500;
  color: #333;
}

.mb-category-rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mb-progress-bar {
  width: 120px;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.mb-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4690e0 0%, #357abd 100%);
  transition: width 0.3s ease;
}

.mb-category-score {
  font-weight: 600;
  color: #07498f;
  min-width: 50px;
}

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

.mb-toc-title {
  font-size: 24px;
  font-weight: 600;
  color: #002246;
  margin-bottom: 20px;
  text-align: center;
}

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

.mb-toc-tab {
  padding: 12px 24px;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mb-toc-tab:hover {
  background: #4690e0;
  color: white;
}

/* Leave Review Section */
.mb-leave-review {
  padding: 60px 0;
  background: #f8f9fa;
}

.mb-bonus-banner {
  background: linear-gradient(135deg, #fa5000 0%, #ff6b35 100%);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  color: white;
}

.mb-bonus-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.mb-bonus-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mb-bonus-desc {
  font-size: 16px;
  opacity: 0.9;
}

.mb-btn-bonus {
  background: white;
  color: #fa5000;
  padding: 15px 30px;
  font-weight: 700;
  white-space: nowrap;
}

.mb-btn-bonus:hover {
  background: #f8f9fa;
}

.mb-review-form-container {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mb-form-title {
  font-size: 28px;
  font-weight: 600;
  color: #002246;
  margin-bottom: 30px;
  text-align: center;
}

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

.mb-form-group {
  margin-bottom: 20px;
}

.mb-form-label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.mb-form-input,
.mb-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.mb-form-input:focus,
.mb-form-textarea:focus {
  outline: none;
  border-color: #4690e0;
}

.mb-rating-inputs {
  margin: 30px 0;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
}

.mb-rating-inputs-title {
  font-size: 18px;
  font-weight: 600;
  color: #002246;
  margin-bottom: 20px;
}

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

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

.mb-rating-label {
  font-weight: 500;
  color: #333;
}

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

.mb-rating-star {
  font-size: 24px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.mb-btn-primary {
  background: linear-gradient(135deg, #4690e0 0%, #357abd 100%);
  color: white;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mb-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(70, 144, 224, 0.3);
}

.mb-success-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.mb-success-title {
  color: #155724;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.mb-success-text {
  color: #155724;
  margin-bottom: 10px;
}

.mb-success-bonus {
  color: #155724;
  font-weight: 600;
}

/* Reviews Section */
.mb-reviews-section {
  padding: 60px 0;
  background: white;
}

.mb-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.mb-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #002246;
  margin-bottom: 15px;
}

.mb-section-subtitle {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.6;
}

.mb-reviews-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.mb-review-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mb-review-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

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

.mb-review-author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

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

.mb-review-author {
  font-size: 16px;
  font-weight: 600;
  color: #002246;
}

.mb-review-country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6c757d;
}

.mb-review-country img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.mb-review-date {
  font-size: 14px;
  color: #6c757d;
}

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

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

.mb-rating-value {
  font-size: 24px;
  font-weight: 700;
  color: #07498f;
}

.mb-rating-details-btn {
  background: none;
  border: 1px solid #4690e0;
  color: #4690e0;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mb-rating-details-btn:hover {
  background: #4690e0;
  color: white;
}

.mb-review-title {
  font-size: 20px;
  font-weight: 600;
  color: #002246;
  margin-bottom: 15px;
}

.mb-review-source {
  margin-bottom: 15px;
  font-size: 14px;
  color: #6c757d;
}

.mb-source-link {
  color: #4690e0;
  text-decoration: none;
}

.mb-source-link:hover {
  text-decoration: underline;
}

.mb-review-body {
  margin-bottom: 20px;
}

.mb-review-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

.mb-review-truncated {
  position: relative;
  overflow: hidden;
}

.mb-review-expand {
  background: none;
  border: none;
  color: #4690e0;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
}

.mb-review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.mb-pros-title,
.mb-cons-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.mb-pros-title {
  color: #28a745;
}

.mb-cons-title {
  color: #dc3545;
}

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

.mb-pro-item {
  color: #28a745;
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}

.mb-pro-item::before {
  content: "+";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.mb-con-item {
  color: #dc3545;
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}

.mb-con-item::before {
  content: "−";
  position: absolute;
  left: 0;
  font-weight: 700;
}

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

.mb-review-votes {
  display: flex;
  gap: 15px;
}

.mb-vote-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid #e9ecef;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mb-like-btn:hover {
  border-color: #28a745;
  background: #f8fff9;
}

.mb-dislike-btn:hover {
  border-color: #dc3545;
  background: #fff8f8;
}

.mb-vote-icon {
  font-size: 16px;
}

.mb-vote-count {
  font-weight: 500;
}

.mb-reply-btn {
  background: none;
  border: 1px solid #4690e0;
  color: #4690e0;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mb-reply-btn:hover {
  background: #4690e0;
  color: white;
}

.mb-reply-form {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.mb-reply-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  resize: vertical;
  margin-bottom: 15px;
}

.mb-reply-actions {
  display: flex;
  gap: 10px;
}

.mb-btn-secondary {
  background: #6c757d;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mb-btn-secondary:hover {
  background: #5a6268;
}

.mb-reviews-bonus {
  margin-top: 0;
}

/* Comparison Section */
.mb-comparison {
  padding: 60px 0;
  background: #f8f9fa;
}

.mb-comparison-table-wrapper {
  overflow-x: auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.mb-comparison-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #002246;
}

.mb-casino-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mb-casino-logo {
  width: 50px;
  height: 40px;
  object-fit: contain;
}

.mb-casino-license {
  display: block;
  font-size: 12px;
  color: #6c757d;
}

.mb-casino-rating {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mb-featured-casino {
  background: #f0f8ff;
}

.mb-editors-choice {
  position: relative;
}

.mb-editors-badge {
  background: #ffc107;
  color: #000;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

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

.mb-video-review {
  margin-bottom: 60px;
}

.mb-video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.mb-text-review {
  margin-bottom: 60px;
}

.mb-content-wrapper {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 16px;
  line-height: 1.8;
}

.mb-content-wrapper h2,
.mb-content-wrapper h3,
.mb-content-wrapper h4 {
  color: #002246;
  margin-top: 30px;
  margin-bottom: 15px;
}

.mb-content-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
}

.mb-content-wrapper h3 {
  font-size: 24px;
  font-weight: 600;
}

.mb-content-wrapper h4 {
  font-size: 20px;
  font-weight: 600;
}

.mb-content-wrapper p {
  margin-bottom: 20px;
  color: #333;
}

.mb-content-wrapper ul,
.mb-content-wrapper ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.mb-content-wrapper li {
  margin-bottom: 8px;
  color: #333;
}

.mb-content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.mb-content-wrapper th,
.mb-content-wrapper td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.mb-content-wrapper th {
  background: #f8f9fa;
  font-weight: 600;
}

.mb-author-info {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 30px;
}

.mb-author-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

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

.mb-author-name {
  font-size: 24px;
  font-weight: 700;
  color: #002246;
  margin-bottom: 5px;
}

.mb-author-title {
  font-size: 16px;
  color: #4690e0;
  font-weight: 600;
  margin-bottom: 15px;
}

.mb-author-bio {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.mb-author-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.mb-author-link {
  color: #4690e0;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid #4690e0;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mb-author-link:hover {
  background: #4690e0;
  color: white;
}

/* Footer */
.mb-footer {
  background: linear-gradient(0deg, #07498f 0%, #002246 100%);
  color: white;
  padding: 60px 0 30px;
}

.mb-footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.mb-footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}

.mb-footer-desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

.mb-footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.mb-footer-links {
  list-style: none;
}

.mb-footer-links li {
  margin-bottom: 10px;
}

.mb-footer-link {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.mb-footer-link:hover {
  opacity: 1;
}

.mb-trust-logos img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.mb-responsible-text {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}

.mb-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.mb-copyright p {
  margin-bottom: 10px;
  opacity: 0.8;
}

.mb-legal {
  font-size: 14px;
  opacity: 0.7;
}

/* Sticky Widget */
.mb-sticky-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #fa5000 0%, #ff6b35 100%);
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 10px 30px rgba(250, 80, 0, 0.3);
  animation: pulse 2s infinite;
}

.mb-widget-content {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.mb-widget-text {
  display: flex;
  flex-direction: column;
}

.mb-widget-bonus {
  font-size: 14px;
  font-weight: 600;
}

.mb-widget-amount {
  font-size: 18px;
  font-weight: 700;
}

.mb-widget-btn {
  background: white;
  color: #fa5000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.mb-widget-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

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

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

  .mb-desktop-nav,
  .mb-desktop-buttons {
    display: none;
  }

  .mb-burger {
    display: flex;
  }

  .mb-mobile-nav.active {
    display: block;
  }

  .mb-hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
  }

  .mb-detailed-ratings {
    margin-top: 30px;
  }

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

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

  .mb-bonus-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

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

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

  .mb-review-header {
    flex-direction: column;
    gap: 15px;
  }

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

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

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

  .mb-footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .mb-sticky-widget {
    bottom: 10px;
    right: 10px;
    left: 10px;
    padding: 12px 15px;
  }

  .mb-widget-content {
    justify-content: center;
  }

  .mb-section-title {
    font-size: 28px;
  }

  .mb-card-title {
    font-size: 20px;
  }

  .mb-bonus-amount {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .mb-hero {
    min-height: 500px;
  }

  .mb-casino-card,
  .mb-rating-summary {
    padding: 20px;
  }

  .mb-section-title {
    font-size: 24px;
  }

  .mb-review-card {
    padding: 20px;
  }

  .mb-sticky-widget {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    margin: 20px 0;
    animation: none;
  }
}

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

.elementor-widget {
  display: none;
}

.yoast-breadcrumb {
  display: none;
}

/* Additional utility classes */
.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-6 {
  line-height: 1.5;
}
