/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

/* CSS Variables */
:root {
  --color-primary: #fa5000;
  --color-secondary: #4690e0;
  --color-bg: #07498f;
  --color-bg-dark: #002246;
  --color-text: #ffffff;
  --color-text-dark: #cccccc;
  --color-white: #ffffff;
  --color-black: #000000;
  --gradient-bg: linear-gradient(0deg, #07498f 0%, #002246 100%);
  --font-family: "Montserrat", sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  padding-bottom: 80px;
}

.mb-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.mb-main {
  flex-grow: 1;
}

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

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

.text-center {
  text-align: center;
}

/* Buttons */
.mb-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none !important;
}
.mb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.mb-btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.mb-btn--secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.mb-btn--lg {
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* Header */
.mb-header {
  background: var(--gradient-bg);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.mb-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mb-header-logo img {
  height: 40px;
}
.mb-header-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.mb-header-nav a {
  color: var(--color-text);
  font-weight: 700;
}
.mb-header-actions {
  display: flex;
  gap: 10px;
}
.mb-burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.mb-burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-white);
  margin: 5px 0;
  transition: all 0.3s;
}

/* Hero Section */
.mb-hero-section {
  background: url("/images/hero-banner.png") no-repeat center center / cover;
  padding: 100px 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
}
.mb-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 34, 70, 0.7);
}
.mb-hero-content {
  position: relative;
  z-index: 1;
}
.mb-hero-title {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.mb-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.mb-breadcrumbs {
    margin: 0;
    padding: 4px 0;
    list-style: none;
}
.mb-breadcrumbs li {
    display: inline-block;
    padding-left: 4px;
}
.mb-breadcrumbs li:first-child {
    padding-left: 0;
}

.mb-breadcrumbs li:before {
    display: inline-block;
    content: '>';
    padding-right: 4px;
}
.mb-breadcrumbs li:first-child:before {
    display: none;
    content: '';
    padding-right: 0;
}

/* Sections */
.mb-section {
  padding: 40px 0;
}
.mb-section:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.1);
}
.mb-section-title {
  text-align: center;
  margin-bottom: 30px;
}

/* Grid */
.mb-grid {
  display: grid;
  gap: 20px;
}
.mb-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.mb-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.mb-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.mb-card {
  background: var(--gradient-bg);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.mb-advantage-card {
  text-align: center;
}
.mb-advantage-card__icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* Pros and Cons */
.mb-pros-cons-block {
  padding: 20px;
  border-radius: 8px;
}
.mb-pros-cons-block--pros {
  background: rgba(70, 144, 224, 0.1);
  border-left: 5px solid #4caf50;
}
.mb-pros-cons-block--cons {
  background: rgba(250, 80, 0, 0.1);
  border-left: 5px solid #f44336;
}
.mb-pros-cons-block ul {
  list-style: none;
  padding-left: 0;
}
.mb-pros-cons-block li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}
.mb-pros-cons-block--pros li::before {
  content: "✔";
  color: #4caf50;
  position: absolute;
  left: 0;
}
.mb-pros-cons-block--cons li::before {
  content: "✖";
  color: #f44336;
  position: absolute;
  left: 0;
}

/* Jackpot */
.mb-jackpot-display {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-bg-dark);
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Table */
.mb-table-wrapper {
  overflow-x: auto;
}
.mb-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--color-bg-dark);
  border-radius: 8px;
  overflow: hidden;
}
.mb-table th,
.mb-table td {
  padding: 15px;
  border-bottom: 1px solid var(--color-bg);
}
.mb-table th {
  background-color: rgba(255, 255, 255, 0.1);
}
.mb-status--active {
  color: #4caf50;
  font-weight: bold;
}

/* Slider */
.mb-slider-container {
  position: relative;
  overflow: hidden;
}
.mb-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.mb-slider-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}
.mb-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}
.mb-slider-btn--prev {
  left: 10px;
}
.mb-slider-btn--next {
  right: 10px;
}

/* App Info */
.mb-app-download {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: center;
}

/* Video */
.mb-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}
.mb-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Game Cards */
.mb-game-card {
  text-align: center;
}
.mb-game-card img {
  border-radius: 10px;
  margin: 0 auto 15px;
  height: 150px;
  object-fit: cover;
}

.mb-demo-game-wrapper {
    aspect-ratio: 4 / 3;
}

/* Content Block Styling */
.mb-content-wrapper {
  background: rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 8px;
}
.mb-content-wrapper h2 {
  color: var(--color-primary);
}
.mb-content-wrapper p {
  margin-bottom: 1rem;
}
.mb-content-wrapper ul,
.mb-content-wrapper ol {
  margin-bottom: 1rem;
  padding-left: 20px;
}
.mb-content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.mb-content-wrapper th,
.mb-content-wrapper td {
  border: 1px solid var(--color-text-dark);
  padding: 8px;
  text-align: left;
}
.mb-content-wrapper th {
  background-color: rgba(255, 255, 255, 0.1);
}

/* FAQ */
.mb-faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.mb-faq-item {
  border-bottom: 1px solid var(--color-text-dark);
}
.mb-faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text);
  padding: 15px;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
}
.mb-faq-question::after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.mb-faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.mb-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  padding: 0 15px;
}
.mb-faq-answer div {
  padding-bottom: 15px;
}

/* Reviews */
.mb-review-card {
  text-align: left;
}
.mb-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.mb-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.mb-review-rating {
  color: #ffc107;
  margin-bottom: 10px;
}
.mb-review-form-wrapper {
  max-width: 600px;
  margin: 30px auto 0;
  background: var(--color-bg-dark);
  padding: 20px;
  border-radius: 8px;
}
.mb-form-group {
  margin-bottom: 15px;
}
.mb-form label {
  display: block;
  margin-bottom: 5px;
}
.mb-form input,
.mb-form textarea {
  width: 100%;
  padding: 10px;
  background: var(--color-bg);
  border: 1px solid var(--color-secondary);
  border-radius: 5px;
  color: var(--color-text);
}
.mb-form-success-msg {
  margin-top: 15px;
  padding: 10px;
  background: #4caf50;
  color: white;
  border-radius: 5px;
  text-align: center;
}

/* Author */
.mb-author-block {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--color-bg-dark);
  padding: 20px;
  border-radius: 10px;
}
.mb-author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

/* Footer */
.mb-footer {
  background: var(--gradient-bg);
  padding: 40px 0 20px;
  color: var(--color-text-dark);
}
.mb-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}
.mb-footer-col h4 {
  color: var(--color-white);
}
.mb-footer-links {
  list-style: none;
}
.mb-footer-links li {
  margin-bottom: 5px;
}
.mb-footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.mb-footer-logos img {
  height: 25px;
  filter: grayscale(1) brightness(1.5);
}
.mb-footer-legal {
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid var(--color-text-dark);
  padding-top: 20px;
}

/* Sticky Widget */
.mb-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 1001;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}
.mb-sticky-widget p {
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .mb-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mb-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mb-header-nav {
    display: none;
  }
  .mb-burger-menu {
    display: block;
  }
  .mb-header-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--gradient-bg);
    padding: 20px;
  }
  .mb-header-nav.active ul {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  h1,
  .mb-hero-title {
    font-size: 2rem;
  }
  .mb-grid--2,
  .mb-grid--3,
  .mb-grid--4 {
    grid-template-columns: 1fr;
  }
  .mb-author-block {
    flex-direction: column;
    text-align: center;
  }
  .mb-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mb-footer-logos {
    justify-content: center;
  }
  .mb-sticky-widget {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .mb-header-actions .mb-btn--secondary {
    display: none;
  } /* Hide login on small mobile */
  .mb-slider-slide {
    min-width: 50%;
  }
}

@media (max-width: 480px) {
  .mb-slider-slide {
    min-width: 100%;
  }
}

/* Wordpress-like classes for obfuscation */
.wp-block-button__link,
.elementor-button {
  /* some random styles */
  border: 1px solid #ccc;
}
.has-text-align-center {
  text-align: center !important;
}
