
/* RESET */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS VARIABLES */
:root {
  --color-bg: #212121;
  --color-header: #575757;
  --color-primary: #ffd430;
  --color-danger: #f20018;
  --color-text: #e0e0e0;
  --color-text-dark: #a0a0a0;
  --font-main: "Montserrat", sans-serif;
}

/* BASE */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  /* Критически важно: предотвращаем горизонтальный скролл всей страницы */
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--font-main);
  cursor: pointer;
}

/* ===========================================
   HEADER
   =========================================== */
.mb-hdr-9x7k2 {
  background-color: var(--color-header);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.mb-container-5j3p1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mb-logo-wrap-2k9s4 {
  flex-shrink: 0;
}

.mb-logo-img-4h8n3 {
  height: 40px;
  width: auto;
}

/* Desktop Navigation - скрыта на мобильных */
.mb-nav-desktop-6l2m9 {
  display: none;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.mb-nav-links-8p4k7 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.mb-nav-link-3m5n8 {
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mb-nav-link-3m5n8:hover {
  color: var(--color-primary);
}

.mb-icon-2k7p4 {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mb-online-counter-7h3k9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-size: 0.9rem;
}

.mb-online-dot-4j8l2 {
  width: 8px;
  height: 8px;
  background-color: #4caf50;
  border-radius: 50%;
  animation: mb-pulse-anim 2s infinite;
}

@keyframes mb-pulse-anim {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Auth Buttons - скрыты на мобильных */
.mb-auth-buttons-5n8k3 {
  display: none;
  gap: 0.75rem;
  flex-shrink: 0;
}

.mb-btn-login-2h7k9,
.mb-btn-signup-8m3l4 {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.mb-btn-login-2h7k9 {
  background-color: var(--color-primary);
  color: #000;
}

.mb-btn-login-2h7k9:hover {
  background-color: #ffdd55;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 212, 48, 0.3);
}

.mb-btn-signup-8m3l4 {
  background-color: var(--color-danger);
  color: #fff;
}

.mb-btn-signup-8m3l4:hover {
  background-color: #ff1a2d;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(242, 0, 24, 0.3);
}

/* Burger Button - показывается на мобильных по умолчанию */
.mb-burger-btn-6k9p2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
}

.mb-burger-line-3h8k1 {
  width: 28px;
  height: 3px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Burger animation when open */
.mb-burger-btn-6k9p2.mb-burger-open .mb-burger-line-3h8k1:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mb-burger-btn-6k9p2.mb-burger-open .mb-burger-line-3h8k1:nth-child(2) {
  opacity: 0;
}

.mb-burger-btn-6k9p2.mb-burger-open .mb-burger-line-3h8k1:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mb-mobile-menu-7l4n8 {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background-color: var(--color-header);
  padding: 0 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  z-index: 999;
}

.mb-mobile-menu-7l4n8.mb-menu-open {
  max-height: 400px;
  padding: 1rem;
}

.mb-mobile-nav-5k2p9 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mb-mobile-link-8h3n4 {
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mb-mobile-link-8h3n4:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.mb-hero-section-9k4l7 {
  position: relative;
  height: 400px;
  overflow: hidden;
  width: 100%;
}

.mb-hero-slider-3h8n2 {
  position: relative;
  height: 100%;
  width: 100%;
}

/* Темный оверлей для лучшей контрастности текста */
.mb-hero-slider-3h8n2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  pointer-events: none;
}

.mb-slide-item-7j2k9 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.mb-slide-item-7j2k9.mb-slide-active-5h3k8 {
  opacity: 1;
}

.mb-hero-img-2k8l4 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mb-hero-content-6m3p9 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  width: 90%;
  max-width: 800px;
  padding: 1rem;
}

.mb-hero-title-8l4n2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
}

.mb-hero-subtitle-5k9m3 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.mb-hero-cta-7h2k8 {
  background-color: var(--color-danger);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.mb-hero-cta-7h2k8:hover {
  background-color: #ff1a2d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 0, 24, 0.4);
}

.mb-slider-controls-4k7m2 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.mb-slider-dot-8h3n9 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  transition: all 0.3s ease;
}

.mb-slider-dot-8h3n9.mb-dot-active-2k5m7 {
  background-color: var(--color-primary);
  width: 30px;
  border-radius: 6px;
}

/* ===========================================
   MAIN CONTENT
   =========================================== */
.mb-main-content-9k2l8 {
  padding: 1.5rem 0;
  width: 100%;
  overflow-x: hidden;
}

.mb-main-content-9k2l8 > .mb-container-5j3p1 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Breadcrumbs */
.mb-breadcrumbs-7h4k3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--color-text-dark);
}

.mb-breadcrumb-link-6m3p1 {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.mb-breadcrumb-link-6m3p1:hover {
  color: #ffdd55;
}

.mb-breadcrumb-current-8l2k4 {
  color: var(--color-text);
}

/* Section Title */
.mb-section-title-8h3k2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  text-align: center;
}

/* ===========================================
   TABLE OF CONTENTS
   =========================================== */
.mb-toc-section-5k9m7 {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.mb-toc-grid-7j2n8 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mb-toc-item-4k8l9 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: var(--color-text);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.mb-toc-item-4k8l9:hover {
  background-color: rgba(255, 212, 48, 0.1);
  border-color: var(--color-primary);
  transform: translateX(5px);
}

.mb-toc-icon-2h7m3 {
  color: var(--color-primary);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* ===========================================
   INFO TABLE SECTION - КРИТИЧЕСКИ ВАЖНО
   =========================================== */
.mb-info-section-3k9l4 {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  /* Предотвращаем выход за границы */
  overflow: hidden;
}

/* Table Wrapper - КРИТИЧЕСКИ ВАЖНО для горизонтального скролла */
.mb-info-table-wrapper-7h2k9 {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Визуальный скроллбар */
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) rgba(255, 255, 255, 0.1);
}

.mb-info-table-wrapper-7h2k9::-webkit-scrollbar {
  height: 10px;
}

.mb-info-table-wrapper-7h2k9::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.mb-info-table-wrapper-7h2k9::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
}

/* Таблица с минимальной шириной для включения скролла на мобильных */
.mb-info-table-5k3m8 {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
}

.mb-table-row-4h9k2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-table-label-6m3p7,
.mb-table-value-8l2k5 {
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

.mb-table-label-6m3p7 {
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  width: 40%;
}

.mb-table-value-8l2k5 {
  color: var(--color-text);
}

.mb-affiliate-link-9k4l3 {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.mb-affiliate-link-9k4l3:hover {
  color: #ffdd55;
}

/* ===========================================
   WINNERS SECTION
   =========================================== */
.mb-winners-section-9k7l3 {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.mb-winners-grid-5k2m8 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mb-winner-card-7h3k9 {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 3px solid var(--color-primary);
  transition: all 0.3s ease;
}

.mb-winner-card-7h3k9:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 212, 48, 0.2);
}

.mb-winner-name-5k2m8 {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.9rem;
}

.mb-winner-amount-3h8k4 {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===========================================
   BONUSES SECTION
   =========================================== */
.mb-bonuses-section-7h4k9 {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.mb-bonuses-slider-wrapper-3k8l2 {
  position: relative;
}

.mb-bonuses-grid-6m9p4 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mb-bonus-card-8h3k7 {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 212, 48, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mb-bonus-card-8h3k7:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(255, 212, 48, 0.3);
}

.mb-bonus-badge-5k2m9 {
  background-color: var(--color-danger);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.mb-bonus-title-7j4n2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.mb-bonus-desc-4k9l8 {
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.5;
  font-size: 0.9rem;
}

.mb-bonus-features-2h8k5 {
  list-style: none;
  margin-bottom: 1rem;
}

.mb-bonus-features-2h8k5 li {
  padding: 0.35rem 0;
  color: var(--color-text);
  font-size: 0.9rem;
}

.mb-bonus-btn-9k3l7 {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--color-danger);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.mb-bonus-btn-9k3l7:hover {
  background-color: #ff1a2d;
  transform: scale(1.02);
}

.mb-bonuses-nav-4k7m2 {
  display: none;
}

/* ===========================================
   SLOT GAME SECTION
   =========================================== */
.mb-slot-game-section-5k9m3 {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.mb-slot-machine-7h2k8 {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.mb-slot-display-4k9l3 {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.mb-slot-reel-6m3p9 {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.mb-slot-reel-6m3p9.mb-spinning {
  animation: mb-spin-reel 0.1s linear infinite;
}

@keyframes mb-spin-reel {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

.mb-slot-spin-btn-8h3k2 {
  padding: 0.75rem 2rem;
  background-color: var(--color-danger);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.mb-slot-spin-btn-8h3k2:hover {
  background-color: #ff1a2d;
  transform: scale(1.05);
}

.mb-slot-spin-btn-8h3k2:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.mb-slot-result-9k4l7 {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.mb-slot-result-9k4l7.mb-result-win {
  background-color: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.mb-slot-result-9k4l7.mb-result-lose {
  background-color: rgba(244, 67, 54, 0.2);
  color: #f44336;
}

.mb-claim-bonus-btn-4k8l3 {
  padding: 0.5rem 1.5rem;
  background-color: var(--color-primary);
  color: #000;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.mb-claim-bonus-btn-4k8l3:hover {
  background-color: #ffdd55;
  transform: scale(1.05);
}

/* ===========================================
   REVIEW SECTION
   =========================================== */
.mb-review-section-3k8l5 {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  overflow: hidden;
}

.mb-review-content-7h2k9 {
  line-height: 1.7;
  color: var(--color-text);
}

.mb-review-content-7h2k9 h1,
.mb-review-content-7h2k9 h2,
.mb-review-content-7h2k9 h3 {
  color: var(--color-primary);
  margin: 1.25rem 0 0.75rem 0;
  line-height: 1.3;
}

.mb-review-content-7h2k9 h1 {
  font-size: 1.5rem;
}
.mb-review-content-7h2k9 h2 {
  font-size: 1.3rem;
}
.mb-review-content-7h2k9 h3 {
  font-size: 1.1rem;
}

.mb-review-content-7h2k9 p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.mb-review-content-7h2k9 ul,
.mb-review-content-7h2k9 ol {
  margin: 1rem 0 1rem 1.5rem;
}

.mb-review-content-7h2k9 li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.mb-review-content-7h2k9 a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.mb-review-content-7h2k9 a:hover {
  color: #ffdd55;
}

/* ===========================================
   FAQ SECTION
   =========================================== */
.mb-faq-section-5k9m8 {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.mb-faq-list-7h4k3 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mb-faq-item-4k8l9 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.mb-faq-question-6m3p2 {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.mb-faq-question-6m3p2:hover {
  color: var(--color-primary);
}

.mb-faq-icon-2h9k7 {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mb-faq-item-4k8l9.mb-faq-open .mb-faq-icon-2h9k7 {
  transform: rotate(180deg);
}

.mb-faq-answer-8l2k5 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mb-faq-item-4k8l9.mb-faq-open .mb-faq-answer-8l2k5 {
  max-height: 500px;
  padding: 0 1rem 1rem 1rem;
}

.mb-faq-answer-8l2k5 div {
  color: var(--color-text-dark);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ===========================================
   AUTHOR SECTION
   =========================================== */
.mb-author-section-9k4l8 {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.mb-author-card-7h3k5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.mb-author-img-4k9l2 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-primary);
}

.mb-author-info-6m2p8 {
  flex: 1;
}

.mb-author-name-8l4k3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.mb-author-role-5k9m7 {
  color: var(--color-text-dark);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.mb-author-bio-3h8k2 {
  color: var(--color-text);
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.mb-author-social-7j2k9 {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.mb-social-link-4k8l5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.mb-social-link-4k8l5:hover {
  color: #ffdd55;
}

/* ===========================================
   FOOTER
   =========================================== */
.mb-footer-9k2l7 {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 212, 48, 0.2);
}

.mb-footer-grid-7h4k3 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mb-footer-col-8l2k9 {
  text-align: center;
}

.mb-footer-logo-4k9l5 {
  height: 40px;
  width: auto;
  margin: 0 auto 1rem;
}

.mb-footer-desc-6m3p8 {
  color: var(--color-text-dark);
  font-size: 0.9rem;
  line-height: 1.6;
}

.mb-footer-title-5k2m7 {
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mb-footer-links-3h8k4 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mb-footer-link-7j2k8 {
  color: var(--color-text-dark);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.mb-footer-link-7j2k8:hover {
  color: var(--color-primary);
}

.mb-footer-contact-9k4l6 {
  color: var(--color-text-dark);
  font-size: 0.9rem;
  line-height: 1.8;
}

.mb-footer-bottom-4k8l2 {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.mb-copyright-7h3k9 {
  color: var(--color-text);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.mb-disclaimer-5k9m4 {
  color: var(--color-text-dark);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ===========================================
   STICKY WIDGET
   =========================================== */
.mb-sticky-widget-8h3k2 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-danger) 0%, #cc0015 100%);
  padding: 0.75rem 1rem;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.mb-widget-content-7j2k9 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.mb-widget-text-4k9l5 {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.mb-widget-btn-6m3p8 {
  background-color: var(--color-primary);
  color: #000;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.mb-widget-btn-6m3p8:hover {
  background-color: #ffdd55;
  transform: scale(1.05);
}

/* ===========================================
   TABLET STYLES (768px+)
   =========================================== */
@media (min-width: 768px) {
  .mb-hero-section-9k4l7 {
    height: 450px;
  }

  .mb-hero-title-8l4n2 {
    font-size: 2rem;
  }

  .mb-hero-subtitle-5k9m3 {
    font-size: 1.15rem;
  }

  .mb-section-title-8h3k2 {
    font-size: 1.75rem;
  }

  .mb-toc-grid-7j2n8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .mb-winners-grid-5k2m8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .mb-bonuses-grid-6m9p4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .mb-author-card-7h3k5 {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
  }

  .mb-author-social-7j2k9 {
    justify-content: flex-start;
  }

  .mb-footer-grid-7h4k3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .mb-footer-col-8l2k9 {
    text-align: left;
  }

  .mb-footer-logo-4k9l5 {
    margin: 0 0 1rem 0;
  }

  .mb-slot-reel-6m3p9 {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }
}

/* ===========================================
   DESKTOP STYLES (1024px+)
   =========================================== */
@media (min-width: 1024px) {
  /* Скрываем бургер на десктопе */
  .mb-burger-btn-6k9p2 {
    display: none;
  }

  /* Показываем десктопную навигацию */
  .mb-nav-desktop-6l2m9 {
    display: flex;
  }

  /* Показываем кнопки авторизации */
  .mb-auth-buttons-5n8k3 {
    display: flex;
  }

  /* Скрываем мобильное меню на десктопе */
  .mb-mobile-menu-7l4n8 {
    display: none !important;
  }

  .mb-hero-section-9k4l7 {
    height: 500px;
  }

  .mb-hero-title-8l4n2 {
    font-size: 2.5rem;
  }

  .mb-hero-subtitle-5k9m3 {
    font-size: 1.25rem;
  }

  .mb-hero-cta-7h2k8 {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }

  .mb-section-title-8h3k2 {
    font-size: 2rem;
  }

  .mb-toc-grid-7j2n8 {
    grid-template-columns: repeat(3, 1fr);
  }

  .mb-winners-grid-5k2m8 {
    grid-template-columns: repeat(4, 1fr);
  }

  .mb-bonuses-grid-6m9p4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .mb-footer-grid-7h4k3 {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .mb-slot-reel-6m3p9 {
    width: 120px;
    height: 120px;
    font-size: 4rem;
  }
}

/* ===========================================
   LARGE DESKTOP (1280px+)
   =========================================== */
@media (min-width: 1280px) {
  .mb-hero-title-8l4n2 {
    font-size: 3rem;
  }

  .mb-hero-subtitle-5k9m3 {
    font-size: 1.5rem;
  }
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes mb-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mb-winner-appear {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.mb-winner-card-7h3k9 {
  animation: mb-winner-appear 0.5s ease;
}
