/* 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;
}

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

/* 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;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  min-height: 70px;
}

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

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

.mb-main-nav {
  display: none;
}

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

.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-counter {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.mb-counter-number {
  font-weight: 600;
  color: #4690e0;
}

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

/* Button Styles */
.mb-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

.mb-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.mb-btn:hover::before {
  left: 100%;
}

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

.mb-btn-login:hover {
  background-color: #3a7bc8;
  color: white;
}

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

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

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

.mb-btn-review:hover {
  background-color: white;
  color: #07498f;
}

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

.mb-btn-primary:hover {
  background-color: #3a7bc8;
  color: white;
}

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

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

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

.mb-btn-bonus:hover {
  background-color: #e04600;
  color: white;
}

.mb-btn-large {
  padding: 15px 30px;
  font-size: 16px;
}

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

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

.mb-burger.active .mb-burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mb-burger.active .mb-burger-line:nth-child(2) {
  opacity: 0;
}

.mb-burger.active .mb-burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mb-mobile-nav {
  display: none;
  background: linear-gradient(0deg, #07498f 0%, #002246 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mb-mobile-nav-content {
  padding: 20px 0;
}

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

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

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

.mb-mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-mobile-nav-link {
  display: block;
  padding: 15px 0;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

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

.mb-mobile-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-mobile-reviews-counter {
  margin-bottom: 15px;
  font-size: 14px;
}

.mb-mobile-contact p {
  margin-bottom: 5px;
  font-size: 14px;
}

.mb-mobile-contact a {
  color: #4690e0;
  text-decoration: none;
}

/* Breadcrumbs */
.mb-breadcrumbs-section {
  background-color: #f8f9fa;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.mb-breadcrumbs {
  font-size: 14px;
}

.mb-breadcrumb-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mb-breadcrumb-item {
  display: flex;
  align-items: center;
}

.mb-breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin: 0 10px;
  color: #6c757d;
}

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

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

.mb-breadcrumb-item.active span {
  color: #6c757d;
}

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

.mb-footer-content {
  padding: 40px 0 20px;
}

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

.mb-footer-section h4 {
  margin-bottom: 15px;
  color: #4690e0;
  font-size: 16px;
}

.mb-footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

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

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

.mb-footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.mb-footer-links a:hover {
  color: #4690e0;
}

.mb-footer-support p {
  margin-bottom: 5px;
  font-size: 14px;
  color: #ccc;
}

.mb-footer-support a {
  color: #4690e0;
  text-decoration: none;
}

.mb-footer-middle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-authorities-logos {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

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

.mb-footer-payments img {
  max-width: 100%;
  height: auto;
}

.mb-security-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

.mb-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-footer-copyright p {
  font-size: 12px;
  color: #ccc;
  margin-bottom: 10px;
}

.mb-disclaimer {
  font-size: 11px !important;
  color: #999 !important;
  line-height: 1.4;
}

.mb-footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.mb-footer-legal a {
  font-size: 12px;
  color: #ccc;
  text-decoration: none;
}

.mb-footer-legal a:hover {
  color: #4690e0;
}

/* Sticky Widget */
.mb-sticky-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: linear-gradient(45deg, #fa5000, #ff6b35);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(250, 80, 0, 0.3);
  animation: pulse 2s infinite;
}

.mb-widget-content {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
}

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

.mb-widget-btn {
  background-color: white;
  color: #fa5000;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
}

.mb-widget-btn:hover {
  background-color: #f0f0f0;
  color: #fa5000;
  transform: scale(1.05);
}

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

/* Hero Section Styles */
.mb-hero-section {
  background: linear-gradient(rgba(7, 73, 143, 0.8), rgba(0, 34, 70, 0.8)), url("/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  color: white;
}

.mb-hero-banner {
  position: relative;
}

.mb-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.mb-casino-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px;
  color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  animation: slideInFromLeft 0.8s ease-out;
}

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

.mb-casino-rating {
  text-align: center;
}

.mb-rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mb-score-value {
  font-size: 32px;
  font-weight: 700;
  color: #4690e0;
}

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

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

.mb-score-text {
  font-size: 14px;
  color: #666;
}

.mb-casino-bonus {
  text-align: center;
}

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

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

.mb-bonus-extra {
  font-size: 14px;
  color: #4690e0;
  font-weight: 600;
}

.mb-casino-cta .mb-btn {
  min-width: 150px;
}

.mb-casino-info-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 25px;
  color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: slideInFromRight 0.8s ease-out 0.2s both;
}

.mb-info-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #07498f;
}

.mb-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mb-info-grid.mb-expanded {
  max-height: none;
}

.mb-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.mb-info-label {
  font-weight: 500;
  color: #666;
}

.mb-info-value {
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mb-info-value img {
  height: 20px;
  width: auto;
}

.mb-info-toggle {
  background: none;
  border: none;
  color: #4690e0;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
  padding: 5px 0;
}

.mb-bonus-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.mb-bonus-tile {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mb-bonus-tile-title {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.mb-bonus-tile-value {
  font-size: 28px;
  font-weight: 700;
  color: #fa5000;
  margin-bottom: 5px;
}

.mb-bonus-tile-desc {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
}

.mb-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 25px;
  color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

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

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

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

.mb-pros-list li,
.mb-cons-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}

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

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

/* Review Form Styles */
.mb-leave-review-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.mb-review-bonus-banner {
  background: linear-gradient(45deg, #fa5000, #ff6b35);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  color: white;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(250, 80, 0, 0.2);
}

.mb-banner-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mb-banner-content p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

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

.mb-review-form-container h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #07498f;
}

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

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

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

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

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

.mb-rating-section {
  margin: 30px 0;
  padding: 25px;
  background-color: #f8f9fa;
  border-radius: 10px;
}

.mb-rating-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #07498f;
}

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

.mb-rating-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.mb-rating-item label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0;
}

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

.mb-star {
  font-size: 20px;
  color: #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
  transform-origin: center;
}

.mb-star:hover {
  transform: scale(1.2);
}

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

.mb-star.mb-star-active,
.mb-star.mb-star-filled {
  animation: bounceIn 0.3s ease-out;
}

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

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

/* User Reviews Styles */
.mb-user-reviews-section {
  padding: 60px 0;
}

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

.mb-section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #07498f;
}

.mb-reviews-stats {
  font-size: 16px;
  color: #666;
}

.mb-reviews-container {
  display: grid;
  gap: 30px;
}

.mb-review-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

.mb-review-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #4690e0, #fa5000, #4690e0);
  border-radius: 15px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.mb-review-card:hover::before {
  opacity: 0.1;
}

.mb-review-card:nth-child(even) {
  animation-delay: 0.1s;
}

.mb-review-card:nth-child(odd) {
  animation-delay: 0.2s;
}

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

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

.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: #333;
}

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

.mb-review-country img {
  width: 20px;
  height: auto;
}

.mb-review-date {
  font-size: 12px;
  color: #999;
}

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

.mb-rating-display {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

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

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

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

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

.mb-rating-details-btn {
  background: none;
  border: none;
  color: #4690e0;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 5px;
}

.mb-review-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.mb-review-source {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
}

.mb-source-label {
  color: #999;
}

.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: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

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

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

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

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

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

.mb-pro-item,
.mb-con-item {
  font-size: 13px;
  padding: 3px 0;
  padding-left: 15px;
  position: relative;
}

.mb-pro-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.mb-con-item::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: bold;
}

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

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

.mb-vote-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

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

.mb-vote-btn.mb-voted {
  background-color: #e3f2fd;
  color: #1976d2;
}

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

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

.mb-reply-btn {
  background: none;
  border: none;
  color: #4690e0;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
}

.mb-reply-form {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.mb-reply-form-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mb-reply-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  resize: vertical;
  font-family: inherit;
}

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

.mb-btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

.mb-rating-details {
  margin-top: 15px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.mb-rating-breakdown {
  display: grid;
  gap: 10px;
}

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

.mb-rating-label {
  font-size: 13px;
  color: #666;
}

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

.mb-rating-stars .mb-star {
  font-size: 14px;
  color: #ddd;
}

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

.mb-review-cta-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, #4690e0, #07498f);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  color: white;
}

.mb-review-cta-banner h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.mb-review-cta-banner p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Supplementary Content Styles */
.mb-supplementary-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.mb-screenshots-section {
  margin-bottom: 60px;
}

.mb-screenshots-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #07498f;
  margin-bottom: 30px;
  text-align: center;
}

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

.mb-screenshot {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mb-screenshot img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mb-screenshot:hover img {
  transform: scale(1.05);
}

.mb-text-review-section {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mb-content-wrapper h1 {
  font-size: 32px;
  font-weight: 700;
  color: #07498f;
  margin-bottom: 30px;
}

.mb-content-wrapper h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 30px 0 15px;
}

.mb-content-wrapper h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 25px 0 10px;
}

.mb-content-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

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

.mb-content-wrapper li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 8px;
}

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

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

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

.mb-author-section {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.mb-author-avatar {
  flex-shrink: 0;
}

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

.mb-author-info {
  flex: 1;
}

.mb-author-name {
  font-size: 20px;
  font-weight: 600;
  color: #07498f;
  margin-bottom: 10px;
}

.mb-author-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

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

.mb-author-links a {
  color: #4690e0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

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

/* Responsive Design */
@media (min-width: 768px) {
  .mb-main-nav {
    display: block;
  }

  .mb-reviews-counter {
    display: flex;
  }

  .mb-header-buttons {
    display: flex;
  }

  .mb-burger {
    display: none;
  }
}

@media (max-width: 991px) {
  .mb-hero-content {
    grid-template-columns: 1fr;
  }

  .mb-casino-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 15px;
  }

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

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

@media (max-width: 767px) {
  .mb-header-content {
    padding: 10px 0;
  }

  .mb-logo img {
    height: 35px;
  }

  .mb-sticky-widget {
    bottom: 10px;
    right: 10px;
  }

  .mb-widget-content {
    padding: 10px 15px;
  }

  .mb-widget-bonus {
    font-size: 12px;
  }

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

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

  .mb-review-card:nth-child(even) {
    animation-delay: 0.1s;
  }

  .mb-review-card:nth-child(odd) {
    animation-delay: 0.2s;
  }

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

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

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

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

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

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

  .mb-casino-card {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .mb-score-value {
    font-size: 24px;
  }

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

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

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

  .mb-section-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

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

  .mb-review-form-container {
    padding: 25px;
  }

  .mb-text-review-section {
    padding: 25px;
  }

  .mb-author-card {
    gap: 15px;
  }

  .mb-author-avatar img {
    width: 60px;
    height: 60px;
  }
}

/* Print styles */
@media print {
  .mb-header,
  .mb-sticky-widget,
  .mb-review-actions,
  .mb-reply-form,
  .mb-burger,
  .mb-mobile-nav {
    display: none !important;
  }

  .mb-review-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }

  body {
    background: white;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .mb-btn {
    border: 2px solid currentColor;
  }

  .mb-review-card {
    border: 2px solid #333;
  }

  .mb-star {
    filter: contrast(2);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support (for future implementation) */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --card-bg: #2d2d2d;
  }
}

/* Focus styles for accessibility */
.mb-btn:focus,
.mb-nav-link:focus,
.mb-star:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #4690e0;
  outline-offset: 2px;
}

/* Skip link for accessibility */
.mb-skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #4690e0;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
}

.mb-skip-link:focus {
  top: 6px;
}

/* Loading states */
.mb-loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.mb-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #4690e0;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Additional animations and transitions */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Enhanced WordPress-like classes for better obfuscation */
.wp-block-group__inner-container {
  max-width: 1200px;
  margin: 0 auto;
}

.wp-block-cover {
  position: relative;
  background-size: cover;
  background-position: center;
}

.elementor-section {
  position: relative;
}

.elementor-column {
  display: flex;
  flex-direction: column;
}

.yoast-breadcrumb {
  font-size: 14px;
  color: #666;
}

.wp-block-button__link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

/* Additional utility classes */
.mb-text-center {
  text-align: center;
}
.mb-text-left {
  text-align: left;
}
.mb-text-right {
  text-align: right;
}
.mb-d-none {
  display: none;
}
.mb-d-block {
  display: block;
}
.mb-d-flex {
  display: flex;
}
.mb-justify-center {
  justify-content: center;
}
.mb-align-center {
  align-items: center;
}
.mb-gap-10 {
  gap: 10px;
}
.mb-gap-20 {
  gap: 20px;
}
.mb-mt-10 {
  margin-top: 10px;
}
.mb-mt-20 {
  margin-top: 20px;
}
.mb-mb-10 {
  margin-bottom: 10px;
}
.mb-mb-20 {
  margin-bottom: 20px;
}
.mb-p-10 {
  padding: 10px;
}
.mb-p-20 {
  padding: 20px;
}
