* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #02d6b0;
  --color-secondary: #fcfcfc;
  --color-nav: #171e1d;
  --color-bg: #218873;
  --color-text-light: #ffffff;
  --color-text-dark: #1a1a1a;
  --color-accent: #00ffcc;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

body {
  font-family: "Manrope", "Manrope Placeholder", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.mb-header {
  background-color: var(--color-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.mb-nav {
  width: 100%;
}

.mb-nav__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.mb-nav__logo {
  flex-shrink: 0;
}

.mb-logo-link {
  display: block;
  line-height: 0;
}

.mb-logo-img {
  height: 30px;
  width: auto;
  transition: var(--transition);
}

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

.mb-nav__mobile-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.mb-nav__menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex: 1;
  justify-content: flex-end;
}

.mb-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.mb-menu__item {
  position: relative;
}

.mb-menu__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.mb-menu__link:hover {
  color: var(--color-primary);
}

.mb-menu__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.mb-menu__link:hover::after {
  width: 100%;
}

.mb-menu__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mb-nav__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mb-btn {
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mb-btn--login {
  background-color: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.mb-btn--login:hover {
  background-color: var(--color-secondary);
  color: var(--color-nav);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.mb-btn--signup,
.mb-btn--hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #00b894 100%);
  color: var(--color-text-dark);
  border: none;
}

.mb-btn--signup:hover,
.mb-btn--hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 214, 176, 0.4);
}

.mb-btn--mobile {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.mb-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mb-burger__line {
  width: 24px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.mb-main {
  flex: 1;
}

.mb-hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mb-hero__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mb-hero__video {
  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(33, 136, 115, 0.85) 0%, rgba(23, 30, 29, 0.85) 100%);
  z-index: 2;
}

.mb-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.mb-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mb-hero__subtitle {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  color: var(--color-text-light);
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mb-btn--hero {
  padding: 1rem 3rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.mb-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.mb-breadcrumbs {
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(23, 30, 29, 0.6);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.mb-breadcrumbs__list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.mb-breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-light);
}

.mb-breadcrumbs__item:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
}

.mb-breadcrumbs__link {
  color: var(--color-text-light);
  text-decoration: none;
  transition: var(--transition);
}

.mb-breadcrumbs__link:hover {
  color: var(--color-primary);
}

.mb-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--color-text-light);
  position: relative;
  padding-bottom: 1rem;
}

.mb-section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 2px;
}

.mb-advantages {
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.mb-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.mb-advantage-card {
  background: rgba(23, 30, 29, 0.7);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.mb-advantage-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 12px 32px rgba(2, 214, 176, 0.3);
}

.mb-advantage-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 50%;
  color: var(--color-text-dark);
}

.mb-advantage-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.mb-advantage-card__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.mb-info-table {
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.mb-table-wrapper {
  overflow-x: auto;
  background: rgba(23, 30, 29, 0.7);
  border-radius: 16px;
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.mb-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.mb-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-table tr:last-child {
  border-bottom: none;
}

.mb-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.mb-table__label {
  font-weight: 600;
  color: var(--color-primary);
  width: 35%;
}

.mb-table__value {
  color: var(--color-text-light);
}

.mb-table__link {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

.mb-table__link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.mb-app-section {
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.mb-app-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  background: rgba(23, 30, 29, 0.7);
  padding: 3rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.mb-app-screenshot {
  display: flex;
  justify-content: center;
}

.mb-app-img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.mb-app-table-wrapper {
  margin-bottom: 2rem;
}

.mb-app-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.mb-app-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-app-table tr:last-child {
  border-bottom: none;
}

.mb-app-table td {
  padding: 0.75rem 1rem;
  text-align: left;
}

.mb-app-table__label {
  font-weight: 600;
  color: var(--color-primary);
  width: 40%;
}

.mb-app-table__value {
  color: var(--color-text-light);
}

.mb-app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.mb-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 8px;
  overflow: hidden;
}

.mb-app-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mb-app-apk-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #00b894 100%);
  color: var(--color-text-dark);
  font-weight: 600;
  border-radius: 8px;
}

.mb-slot-game {
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.mb-slot-container {
  max-width: 600px;
  margin: 0 auto;
}

.mb-slot-machine {
  background: rgba(23, 30, 29, 0.9);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--color-primary);
}

.mb-slot-reels {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  height: 150px;
  overflow: hidden;
}

.mb-slot-reel {
  width: 120px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(2, 214, 176, 0.3);
}

.mb-slot-symbol {
  font-size: 4rem;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.mb-slot-btn {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #00b894 100%);
  color: var(--color-text-dark);
  border: none;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Manrope", sans-serif;
}

.mb-slot-btn:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(2, 214, 176, 0.4);
}

.mb-slot-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.mb-slot-result {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(2, 214, 176, 0.2) 0%, rgba(0, 255, 204, 0.2) 100%);
  border-radius: 16px;
  text-align: center;
  border: 2px solid var(--color-primary);
  animation: bounceIn 0.6s ease-out;
}

.mb-slot-result__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.mb-slot-result__text {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

.mb-review-section {
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.mb-review-content {
  background: rgba(23, 30, 29, 0.7);
  padding: 3rem;
  border-radius: 16px;
  line-height: 1.8;
  backdrop-filter: blur(10px);
}

.mb-review-content h1,
.mb-review-content h2,
.mb-review-content h3,
.mb-review-content h4,
.mb-review-content h5,
.mb-review-content h6 {
  color: var(--color-text-light);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.mb-review-content h2 {
  font-size: 2rem;
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
}

.mb-review-content h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.mb-review-content p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.mb-review-content ul,
.mb-review-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.mb-review-content li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.mb-review-content a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

.mb-review-content a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.mb-review-content table {
  width: 100%;
  margin: 2rem auto;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

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

.mb-review-content table th {
  background: rgba(2, 214, 176, 0.2);
  font-weight: 600;
  color: var(--color-text-light);
}

.mb-review-content table td {
  color: rgba(255, 255, 255, 0.9);
}

.mb-review-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.mb-review-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.mb-faq-section {
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

.mb-faq-item {
  background: rgba(23, 30, 29, 0.7);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(2, 214, 176, 0.2);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.mb-faq-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(2, 214, 176, 0.2);
}

.mb-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Manrope", sans-serif;
  transition: var(--transition);
}

.mb-faq-question:hover {
  background: rgba(2, 214, 176, 0.1);
}

.mb-faq-question h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin: 0;
  flex: 1;
}

.mb-faq-icon {
  flex-shrink: 0;
  color: var(--color-primary);
  transition: var(--transition);
}

.mb-faq-question[aria-expanded="true"] .mb-faq-icon {
  transform: rotate(180deg);
}

.mb-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.mb-faq-question[aria-expanded="true"] + .mb-faq-answer {
  max-height: 1000px;
}

.mb-faq-answer > div {
  padding: 0 2rem 1.5rem;
}

.mb-faq-answer p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 0;
}

.mb-author-section {
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.mb-author-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(23, 30, 29, 0.7);
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(2, 214, 176, 0.2);
}

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

.mb-author-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-primary);
}

.mb-author-name {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.mb-author-title {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.mb-author-bio {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.mb-author-social {
  display: flex;
  gap: 1rem;
}

.mb-author-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 214, 176, 0.2);
  border-radius: 50%;
  color: var(--color-primary);
  transition: var(--transition);
}

.mb-author-social-link:hover {
  background: var(--color-primary);
  color: var(--color-text-dark);
  transform: translateY(-4px);
}

.mb-footer {
  background-color: var(--color-nav);
  padding: 3rem 0 2rem;
  margin-top: auto;
}

.mb-footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mb-footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.mb-footer__logo {
  height: 30px;
  width: auto;
  margin-bottom: 1rem;
}

.mb-footer__tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.mb-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  list-style: none;
}

.mb-footer__link {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.mb-footer__link:hover {
  color: var(--color-primary);
}

.mb-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.mb-footer__copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.mb-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.mb-footer__legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.mb-footer__legal-link:hover {
  color: var(--color-primary);
}

.mb-footer__disclaimer {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  max-width: 900px;
  line-height: 1.6;
}

.mb-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #00b894 100%);
  padding: 1rem 2rem;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  animation: slideInUp 0.5s ease-out;
}

.mb-widget__content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.mb-widget__text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.mb-widget__btn {
  padding: 0.75rem 2rem;
  background-color: var(--color-text-dark);
  color: var(--color-primary);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.mb-widget__btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

@keyframes spin {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-1050px);
  }
}

.spinning {
  animation: spin 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 1024px) {
  .mb-nav__container {
    padding: 1rem;
  }

  .mb-nav__mobile-actions {
    display: flex;
  }

  .mb-burger {
    display: flex;
  }

  .mb-nav__menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-nav);
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    box-shadow: var(--shadow-md);
  }

  .mb-nav__menu.active {
    max-height: 500px;
  }

  .mb-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .mb-menu__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mb-menu__link {
    padding: 1rem;
    display: flex;
  }

  .mb-nav__actions {
    display: none;
  }

  .mb-hero__title {
    font-size: 2.5rem;
  }

  .mb-hero__subtitle {
    font-size: 1.15rem;
  }

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

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

  .mb-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .mb-container {
    padding: 2rem 1rem;
  }

  .mb-section__title {
    font-size: 2rem;
  }

  .mb-hero {
    height: 500px;
  }

  .mb-hero__title {
    font-size: 2rem;
  }

  .mb-hero__subtitle {
    font-size: 1rem;
  }

  .mb-advantage-card {
    padding: 2rem;
  }

  .mb-table td {
    padding: 1rem;
  }

  .mb-table__label {
    width: 45%;
  }

  .mb-review-content {
    padding: 2rem;
  }

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

  .mb-author-social {
    justify-content: center;
  }

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

  .mb-slot-reels {
    gap: 0.5rem;
  }

  .mb-slot-reel {
    width: 90px;
  }

  .mb-slot-symbol {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .mb-hero__title {
    font-size: 1.75rem;
  }

  .mb-hero__subtitle {
    font-size: 0.9rem;
  }

  .mb-btn--hero {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }

  .mb-section__title {
    font-size: 1.75rem;
  }

  .mb-slot-machine {
    padding: 2rem 1rem;
  }

  .mb-slot-reel {
    width: 70px;
    height: 120px;
  }

  .mb-slot-symbol {
    font-size: 2.5rem;
    height: 120px;
  }

  .mb-slot-reels {
    height: 120px;
  }
}

.wp-hidden-element {
  display: none;
}

.yoast-schema-marker {
  visibility: hidden;
}

.elementor-section-wrap {
  display: none;
}
