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

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

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

/* Header Styles */
.mb-header {
  background-color: #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;
  justify-content: space-between;
  align-items: center;
}

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

.mb-header-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.mb-mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mb-mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Button Styles */
.mb-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

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

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

.mb-btn-register {
  background-color: #cd1935;
  color: #ffffff;
}

.mb-btn-register:hover {
  background-color: #b01529;
  transform: translateY(-2px);
}

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

.mb-btn-primary:hover {
  background-color: #c9b332;
  transform: translateY(-2px);
}

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

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

.mb-btn-bonus {
  background: linear-gradient(45deg, #ddc43a, #cd1935);
  color: #ffffff;
  animation: pulse 2s infinite;
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(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;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mb-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

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

.mb-casino-card {
  background: rgba(37, 37, 54, 0.95);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(221, 196, 58, 0.3);
}

.mb-casino-logo img {
  height: 80px;
  margin-bottom: 20px;
}

.mb-casino-rating {
  margin-bottom: 20px;
}

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

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

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

.mb-star {
  font-size: 20px;
  color: #666;
}

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

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

.mb-casino-bonus {
  background: linear-gradient(45deg, #ddc43a, #cd1935);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 25px;
}

.mb-bonus-text {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.mb-casino-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mb-rating-breakdown {
  background: rgba(37, 37, 54, 0.95);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(221, 196, 58, 0.3);
}

.mb-rating-breakdown h3 {
  margin-bottom: 20px;
  color: #ddc43a;
}

.mb-rating-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.mb-rating-bar span:first-child {
  width: 40px;
  font-size: 14px;
}

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

.mb-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #cd1935, #ddc43a);
  transition: width 0.3s ease;
}

.mb-rating-bar span:last-child {
  width: 40px;
  text-align: right;
  font-size: 14px;
  color: #ddc43a;
}

.mb-casino-info {
  grid-column: 1 / -1;
  background: rgba(37, 37, 54, 0.95);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(221, 196, 58, 0.3);
}

.mb-casino-info h3 {
  margin-bottom: 20px;
  color: #ddc43a;
}

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

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

.mb-info-toggle {
  margin-top: 20px;
  background: none;
  border: 1px solid #ddc43a;
  color: #ddc43a;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

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

.mb-pros,
.mb-cons {
  background: rgba(37, 37, 54, 0.95);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(221, 196, 58, 0.3);
}

.mb-pros h4 {
  color: #4caf50;
  margin-bottom: 15px;
}

.mb-cons h4 {
  color: #f44336;
  margin-bottom: 15px;
}

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

.mb-pros li {
  padding: 8px 0;
  color: #4caf50;
}

.mb-cons li {
  padding: 8px 0;
  color: #f44336;
}

.mb-pros li:before {
  content: "✓ ";
  font-weight: bold;
}

.mb-cons li:before {
  content: "✗ ";
  font-weight: bold;
}

/* Reviews Section */
.mb-reviews-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #212132 0%, #1a1a2e 100%);
}

.mb-reviews-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  color: #ddc43a;
}

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

.mb-review-card {
  background: rgba(37, 37, 54, 0.95);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(221, 196, 58, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mb-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(221, 196, 58, 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;
  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;
  color: #ddc43a;
}

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

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

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

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

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

.mb-rating-details-btn {
  background: none;
  border: 1px solid #ddc43a;
  color: #ddc43a;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  margin-top: 5px;
}

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

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

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

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

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

.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(37, 37, 54, 0.95));
}

.mb-review-expand {
  background: none;
  border: none;
  color: #ddc43a;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
}

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

.mb-review-pros h5 {
  color: #4caf50;
  margin-bottom: 10px;
}

.mb-review-cons h5 {
  color: #f44336;
  margin-bottom: 10px;
}

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

.mb-pro-item {
  color: #4caf50;
  padding: 3px 0;
}

.mb-con-item {
  color: #f44336;
  padding: 3px 0;
}

.mb-review-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  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 #666;
  color: #ccc;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mb-vote-btn:hover {
  border-color: #ddc43a;
  color: #ddc43a;
}

.mb-reply-btn {
  background: none;
  border: 1px solid #ddc43a;
  color: #ddc43a;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

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

.mb-reply-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #666;
  color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  resize: vertical;
  margin-bottom: 15px;
}

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

/* FAQ Section */
.mb-faq-section {
  padding: 80px 0;
  background: #1a1a2e;
}

.mb-faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  color: #ddc43a;
}

.mb-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.mb-faq-item {
  background: rgba(37, 37, 54, 0.95);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.mb-faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  padding: 25px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.mb-faq-question:after {
  content: "+";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #ddc43a;
}

.mb-faq-question.active:after {
  content: "−";
}

.mb-faq-answer {
  padding: 0 25px 25px;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Leave Review Section */
.mb-leave-review-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #212132 100%);
}

.mb-review-bonus-banner {
  background: linear-gradient(45deg, #ddc43a, #cd1935);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.mb-review-bonus-banner h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ffffff;
}

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

.mb-review-form-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.mb-review-form {
  background: rgba(37, 37, 54, 0.95);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(221, 196, 58, 0.2);
}

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

.mb-form-group {
  display: flex;
  flex-direction: column;
}

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

.mb-form-group input,
.mb-form-group textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #666;
  color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
}

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

.mb-rating-inputs {
  margin-bottom: 30px;
}

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

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

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

.mb-rating-input label {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}

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

.mb-star-rating span {
  font-size: 24px;
  color: #666;
  transition: color 0.2s ease;
}

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

/* Supplementary Content */
.mb-supplementary-section {
  padding: 80px 0;
  background: #212132;
}

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

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

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

.mb-screenshots-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

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

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

.mb-video-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
}

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

.mb-author-info {
  margin-bottom: 60px;
}

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

.mb-author-card {
  background: rgba(37, 37, 54, 0.95);
  border-radius: 15px;
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(221, 196, 58, 0.2);
}

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

.mb-author-details h3 {
  color: #ddc43a;
  margin-bottom: 15px;
  font-size: 24px;
}

.mb-author-details p {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.mb-author-links a {
  color: #ddc43a;
  text-decoration: none;
  padding: 8px 15px;
  border: 1px solid #ddc43a;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.mb-author-links a:hover {
  background-color: #ddc43a;
  color: #252536;
}

.mb-text-review {
  background: rgba(37, 37, 54, 0.95);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(221, 196, 58, 0.2);
}

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

.mb-text-review-content h2 {
  color: #ddc43a;
  margin: 30px 0 15px;
  font-size: 24px;
}

.mb-text-review-content h3 {
  color: #ffffff;
  margin: 25px 0 10px;
  font-size: 20px;
}

.mb-text-review-content p {
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 15px;
}

.mb-text-review-content ul,
.mb-text-review-content ol {
  color: #e0e0e0;
  margin: 15px 0;
  padding-left: 30px;
}

.mb-text-review-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.mb-text-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

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

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

.mb-text-review-content td {
  color: #e0e0e0;
}

/* Footer */
.mb-footer {
  background-color: #252536;
  padding: 40px 0 20px;
  border-top: 1px solid rgba(221, 196, 58, 0.3);
}

.mb-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  align-items: center;
  text-align: center;
}

.mb-footer-logo img {
  height: 50px;
}

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

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

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

.mb-footer-trust {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

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

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

.mb-footer-copyright {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
  font-size: 12px;
}

.mb-footer-copyright p {
  margin-bottom: 5px;
}

/* Floating Widget */
.mb-floating-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
}

.mb-widget-content {
  background: linear-gradient(45deg, #ddc43a, #cd1935);
  border-radius: 50px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.mb-widget-btn {
  background: #ffffff;
  color: #252536;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.mb-widget-btn:hover {
  transform: scale(1.05);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

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

  .mb-mobile-menu-toggle {
    display: flex;
  }

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

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

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

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

  .mb-rating-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

  .mb-review-votes {
    justify-content: center;
  }
}

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

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

  .mb-rating-breakdown {
    padding: 20px;
  }

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

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

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

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

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

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

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

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

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

.elementor-widget {
  display: none;
}

.yoast-breadcrumb {
  display: none;
}

/* Additional unused styles for uniqueness */
.mb-unused-class-1 {
  opacity: 0;
}
.mb-unused-class-2 {
  visibility: hidden;
}
.mb-unused-class-3 {
  position: absolute;
  left: -9999px;
}
.mb-hash-a7b3c {
  display: none;
}
.mb-hash-x9z2m {
  display: none;
}
.mb-hash-k5n8p {
  display: none;
}
