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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Muller", sans-serif;
  background-color: #212132;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

/* Buttons */
.mb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: "Muller", sans-serif;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 1.2;
}

.mb-btn-primary {
  background: linear-gradient(135deg, #cd1935, #b01529);
  color: #ffffff;
}

.mb-btn-primary:hover {
  background: linear-gradient(135deg, #b01529, #9a1223);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(205, 25, 53, 0.3);
}

.mb-btn-secondary {
  background: linear-gradient(135deg, #ddc43a, #c9b234);
  color: #252536;
}

.mb-btn-secondary:hover {
  background: linear-gradient(135deg, #c9b234, #b5a02e);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(221, 196, 58, 0.3);
}

.mb-btn-login {
  background: transparent;
  color: #ddc43a;
  border: 2px solid #ddc43a;
  padding: 10px 20px;
}

.mb-btn-login:hover {
  background: #ddc43a;
  color: #252536;
}

.mb-btn-register {
  background: #cd1935;
  color: #ffffff;
  padding: 10px 20px;
}

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

.mb-btn-small {
  padding: 8px 16px;
  font-size: 12px;
}

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

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

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

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

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

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

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

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

.mb-reviews-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(221, 196, 58, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #ddc43a;
}

.mb-counter-text {
  color: #ddc43a;
  font-size: 14px;
}

.mb-counter-number {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}

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

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

.mb-burger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s ease;
}

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

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

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

.mb-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #252536;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}

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

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

.mb-mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 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;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.mb-hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(33, 33, 50, 0.8), rgba(37, 37, 54, 0.9));
}

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

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

/* Casino Card */
.mb-casino-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

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

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

.mb-rating-score {
  font-size: 32px;
  font-weight: 700;
  color: #4caf50;
  line-height: 1;
}

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

.mb-rating-fill {
  height: 100%;
  background: linear-gradient(90deg, #cd1935, #4caf50);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.mb-rating-text {
  font-size: 14px;
  color: #4caf50;
  font-weight: 600;
}

.mb-casino-bonus {
  text-align: center;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(205, 25, 53, 0.2), rgba(221, 196, 58, 0.2));
  border-radius: 15px;
  border: 1px solid rgba(221, 196, 58, 0.3);
}

.mb-bonus-title {
  font-size: 16px;
  color: #ddc43a;
  margin-bottom: 8px;
}

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

.mb-casino-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.mb-casino-actions .mb-btn {
  flex: 1;
}

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

.mb-info-toggle {
  width: 100%;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Muller", sans-serif;
  transition: all 0.3s ease;
}

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

.mb-info-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mb-info-details.active {
  max-height: 400px;
  margin-top: 15px;
}

.mb-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mb-info-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-info-label {
  color: #ddc43a;
  font-size: 14px;
}

.mb-info-value {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

/* Bonus Cards */
.mb-bonus-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.mb-bonus-card {
  background: linear-gradient(135deg, rgba(221, 196, 58, 0.1), rgba(205, 25, 53, 0.1));
  border: 1px solid rgba(221, 196, 58, 0.3);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.mb-bonus-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ddc43a;
  margin-bottom: 8px;
}

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

/* Advantages */
.mb-advantages {
  grid-column: 1 / -1;
  margin-top: 40px;
}

.mb-advantages h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

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

.mb-advantage {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 10px;
  padding: 15px;
  color: #4caf50;
  font-weight: 600;
  text-align: center;
}

/* Table of Contents */
.mb-toc {
  background: #252536;
  padding: 30px 0;
}

.mb-toc h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
}

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

.mb-toc-tab {
  padding: 12px 24px;
  background: rgba(221, 196, 58, 0.1);
  border: 1px solid rgba(221, 196, 58, 0.3);
  border-radius: 25px;
  color: #ddc43a;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mb-toc-tab:hover,
.mb-toc-tab.active {
  background: #ddc43a;
  color: #252536;
}

/* Leave Review Section */
.mb-leave-review {
  padding: 60px 0;
  background: linear-gradient(135deg, #212132, #252536);
}

.mb-leave-review h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  font-size: 32px;
}

.mb-review-form {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.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;
  color: #ddc43a;
  font-weight: 600;
}

.mb-form-group input,
.mb-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-family: "Muller", sans-serif;
  font-size: 14px;
}

.mb-form-group input:focus,
.mb-form-group textarea:focus {
  outline: none;
  border-color: #ddc43a;
  box-shadow: 0 0 0 2px rgba(221, 196, 58, 0.2);
}

.mb-form-group input::placeholder,
.mb-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Rating Inputs */
.mb-rating-inputs {
  margin-bottom: 30px;
}

.mb-rating-inputs h4 {
  color: #ffffff;
  margin-bottom: 20px;
}

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

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

.mb-rating-item label {
  display: block;
  margin-bottom: 10px;
  color: #ddc43a;
  font-size: 14px;
}

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

.mb-star {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: color 0.2s ease;
}

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

/* Success Message */
.mb-success-message {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 15px;
  padding: 40px;
}

.mb-success-message h3 {
  color: #4caf50;
  margin-bottom: 15px;
}

.mb-success-message p {
  color: #ffffff;
}

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

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

.mb-reviews-header h2 {
  color: #ffffff;
  font-size: 32px;
}

.mb-reviews-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mb-reviews-count {
  color: #ddc43a;
  font-weight: 600;
}

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

.mb-avg-score {
  font-size: 24px;
  font-weight: 700;
  color: #4caf50;
}

.mb-stars {
  color: #ddc43a;
  font-size: 18px;
}

/* Review Cards */
.mb-reviews-container {
  display: grid;
  gap: 30px;
}

.mb-review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: transform 0.3s ease;
}

.mb-review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.mb-review-author-info {
  display: flex;
  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 {
  color: #ffffff;
  font-size: 16px;
}

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

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

.mb-review-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

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

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

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

.mb-rating-details-btn {
  background: none;
  border: 1px solid rgba(221, 196, 58, 0.3);
  color: #ddc43a;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mb-rating-details-btn:hover {
  background: rgba(221, 196, 58, 0.1);
}

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

.mb-review-source {
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

.mb-review-text-truncated {
  max-height: 100px;
  overflow: hidden;
  position: relative;
}

.mb-review-text-truncated::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.05));
}

.mb-review-text.expanded {
  max-height: none;
}

.mb-review-text.expanded::after {
  display: none;
}

.mb-review-expand {
  background: none;
  border: none;
  color: #ddc43a;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.mb-review-expand:hover {
  color: #ffffff;
}

/* Pros and Cons */
.mb-review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.mb-review-pros h5,
.mb-review-cons h5 {
  margin-bottom: 10px;
  font-size: 14px;
}

.mb-review-pros h5 {
  color: #4caf50;
}

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

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

.mb-pro-item {
  color: #4caf50;
  font-size: 14px;
  margin-bottom: 5px;
}

.mb-con-item {
  color: #f44336;
  font-size: 14px;
  margin-bottom: 5px;
}

/* Review Actions */
.mb-review-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mb-vote-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mb-vote-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.mb-vote-btn.voted {
  background: rgba(221, 196, 58, 0.2);
  border-color: #ddc43a;
  color: #ddc43a;
}

.mb-reply-btn {
  background: none;
  border: 1px solid rgba(221, 196, 58, 0.3);
  color: #ddc43a;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mb-reply-btn:hover {
  background: rgba(221, 196, 58, 0.1);
}

/* Reply Form */
.mb-reply-form {
  margin-top: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-reply-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px;
  color: #ffffff;
  font-family: "Muller", sans-serif;
  resize: vertical;
  margin-bottom: 10px;
}

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

.mb-reply-actions .mb-btn {
  padding: 8px 16px;
  font-size: 14px;
}

/* Review Bonus Banner */
.mb-review-bonus-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(205, 25, 53, 0.2), rgba(221, 196, 58, 0.2));
  border: 1px solid rgba(221, 196, 58, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.mb-bonus-banner-content h3 {
  color: #ddc43a;
  font-size: 24px;
  margin-bottom: 15px;
}

.mb-bonus-banner-content p {
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 16px;
}

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

.mb-comparison h2 {
  text-align: center;
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 40px;
}

.mb-comparison-table-wrapper {
  overflow-x: auto;
}

.mb-comparison-table {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border-collapse: collapse;
}

.mb-comparison-table th,
.mb-comparison-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-comparison-table th {
  background: rgba(221, 196, 58, 0.1);
  color: #ddc43a;
  font-weight: 700;
}

.mb-comparison-table td {
  color: #ffffff;
}

.mb-rating-high {
  color: #4caf50;
  font-weight: 700;
}

.mb-rating-medium {
  color: #ff9800;
  font-weight: 700;
}

/* Content Section */
.mb-content {
  padding: 60px 0;
}

.mb-content h1 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
}

.mb-content-section {
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
  line-height: 1.8;
}

.mb-content-section h2 {
  color: #ddc43a;
  font-size: 28px;
  margin: 40px 0 20px 0;
}

.mb-content-section h3 {
  color: #ffffff;
  font-size: 24px;
  margin: 30px 0 15px 0;
}

.mb-content-section p {
  margin-bottom: 20px;
}

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

.mb-content-section li {
  margin-bottom: 10px;
}

.mb-content-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.mb-content-section th,
.mb-content-section td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-content-section th {
  background: rgba(221, 196, 58, 0.1);
  color: #ddc43a;
  font-weight: 600;
}

.mb-content-section a {
  color: #ddc43a;
  text-decoration: none;
}

.mb-content-section a:hover {
  text-decoration: underline;
}

/* Footer */
.mb-footer {
  background: #252536;
  padding: 50px 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mb-footer-section h4 {
  color: #ddc43a;
  font-size: 18px;
  margin-bottom: 20px;
}

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

.mb-footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

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

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

.mb-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

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

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

.mb-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 10px;
}

.mb-disclaimer {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Floating Widget */
.mb-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background: linear-gradient(135deg, #252536, #212132);
  border: 1px solid rgba(221, 196, 58, 0.3);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mb-widget.visible {
  transform: translateY(0);
  opacity: 1;
}

.mb-widget-content {
  padding: 20px;
  position: relative;
}

.mb-widget-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mb-widget-close:hover {
  color: #ffffff;
}

.mb-widget-logo {
  text-align: center;
  margin-bottom: 15px;
}

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

.mb-widget-bonus {
  text-align: center;
  margin-bottom: 20px;
}

.mb-widget-bonus-title {
  color: #ddc43a;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.mb-widget-bonus-amount {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.mb-widget-bonus-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.mb-widget-btn {
  display: block;
  width: 100%;
  background: #cd1935;
  color: #ffffff;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
  transition: background 0.3s ease;
}

.mb-widget-btn:hover {
  background: #b01529;
}

.mb-widget-features {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mb-widget-feature {
  color: #4caf50;
  font-size: 12px;
  font-weight: 500;
}

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

  .mb-nav {
    display: none;
  }

  .mb-burger {
    display: flex;
  }

  .mb-header-buttons {
    gap: 8px;
  }

  .mb-header-buttons .mb-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

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

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

  .mb-casino-actions {
    flex-direction: column;
  }

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

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

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

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

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

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

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

  .mb-rating-display {
    justify-content: center;
  }

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

  .mb-comparison-table {
    font-size: 14px;
  }

  .mb-comparison-table th,
  .mb-comparison-table td {
    padding: 10px 8px;
  }

  .mb-widget {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
  }

  .mb-content h1 {
    font-size: 28px;
  }

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

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

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

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

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

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

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

  .mb-comparison-table th,
  .mb-comparison-table td {
    padding: 8px 5px;
    font-size: 12px;
  }
}

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

.wp-block-columns {
  display: none;
}

.elementor-widget {
  display: none;
}

.yoast-breadcrumb {
  display: none;
}

/* Additional unique classes */
.mb-h7f3k-container {
  position: relative;
}

.mb-x9m2p-wrapper {
  overflow: hidden;
}

.mb-q4n8r-element {
  z-index: 1;
}

.mb-w5t6y-block {
  display: block;
}

.mb-e8u9i-section {
  margin: 0;
}
