:root {
  --bg: #06121c;
  --header: #0a0c0f;
  --btn-primary: #6d261b;
  --btn-secondary: #df7b10;
  --text: #e8edf2;
  --text-muted: #9aaab8;
  --border: #1c2e3e;
  --card: #0d1e2b;
  --card2: #111f2d;
  --accent: #df7b10;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #f5922a;
}
.xb7k2-wrap {
  width: 100%;
  margin: 0 auto;
}
.xb7k2-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.mw-section {
  padding: 60px 0;
}
.mw-section-sm {
  padding: 36px 0;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.25;
  font-weight: 700;
}
h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}
h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 24px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
p {
  margin-bottom: 14px;
}
p:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.15s;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.4px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  filter: brightness(1.08);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: var(--btn-primary);
  color: #fff;
}
.btn-secondary {
  background: var(--btn-secondary);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}
.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
}
.btn-pulse {
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(109, 38, 27, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(109, 38, 27, 0);
  }
}

.mw-header {
  background: var(--header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.mw-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.mw-logo img {
  height: 44px;
  width: auto;
}
.mw-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.mw-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 600;
  transition:
    background 0.2s,
    color 0.2s;
}
.mw-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent);
}
.mw-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.mw-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mw-online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.mw-online-dot {
  width: 8px;
  height: 8px;
  background: #27c769;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.mw-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.mw-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.mw-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mw-burger.open span:nth-child(2) {
  opacity: 0;
}
.mw-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mw-mobile-nav {
  display: none;
  background: var(--header);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  flex-direction: column;
  gap: 8px;
}
.mw-mobile-nav.open {
  display: flex;
}
.mw-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}
.mw-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.mw-hero {
  position: relative;
  overflow: hidden;
  background: var(--header);
}
.mw-slider {
  position: relative;
  height: 520px;
}
.mw-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: flex;
  align-items: center;
}
.mw-slide.active {
  opacity: 1;
  z-index: 1;
}
.mw-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.mw-slide-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.mw-slide-content h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
.mw-slide-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  max-width: 520px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.mw-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.mw-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
  border: none;
}
.mw-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}
.mw-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mw-slider-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}
.mw-slider-arrow.prev {
  left: 20px;
}
.mw-slider-arrow.next {
  right: 20px;
}

.mw-block {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.mw-block-alt {
  background: var(--card2);
}
.mw-block-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.mw-block-title svg {
  color: var(--accent);
}

.mw-info-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.mw-info-table tr {
  border-bottom: 1px solid var(--border);
}
.mw-info-table tr:last-child {
  border-bottom: none;
}
.mw-info-table td {
  padding: 12px 10px;
  font-size: 0.88rem;
  vertical-align: middle;
}
.mw-info-table td:first-child {
  color: var(--text-muted);
  width: 46%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.mw-info-table td:first-child svg {
  color: var(--accent);
  flex-shrink: 0;
}
.mw-info-table td:last-child {
  color: var(--text);
  font-weight: 500;
}
.mw-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.mw-mirror-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.mw-mirror-table th {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mw-mirror-table td {
  padding: 11px 14px;
  font-size: 0.87rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.mw-mirror-table tr:last-child td {
  border-bottom: none;
}
.mw-mirror-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.mw-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 700;
}
.mw-badge-green {
  background: rgba(39, 199, 105, 0.15);
  color: #27c769;
}
.mw-mirror-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mw-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.mw-app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.mw-app-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.mw-app-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--accent);
  color: var(--text);
}
.mw-app-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--accent);
}
.mw-app-btn-text {
  display: flex;
  flex-direction: column;
}
.mw-app-btn-text small {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.mw-app-btn-text strong {
  font-size: 0.92rem;
}

.mw-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  overflow: hidden;
}
.mw-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.mw-slot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mw-reels {
  display: flex;
  gap: 12px;
  background: #060f18;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 30px;
}
.mw-reel {
  width: 90px;
  height: 90px;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.1s;
  user-select: none;
}
.mw-reel.spin {
  animation: reel-spin 0.15s linear infinite;
}
@keyframes reel-spin {
  0% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(-6px);
  }
}
.mw-slot-result {
  text-align: center;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mw-slot-win {
  font-size: 1.1rem;
  font-weight: 700;
  color: #27c769;
}
.mw-slot-lose {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.mw-review-content {
  line-height: 1.85;
  font-size: 0.95rem;
}
.mw-review-content h2,
.mw-review-content h3,
.mw-review-content h4 {
  color: var(--text);
  margin: 28px 0 12px;
}
.mw-review-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.mw-review-content a {
  color: var(--accent);
}
.mw-review-content ul,
.mw-review-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--text-muted);
}
.mw-review-content li {
  margin-bottom: 6px;
}
.mw-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.87rem;
}
.mw-review-content table th {
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border);
  font-weight: 700;
}
.mw-review-content table td {
  padding: 9px 14px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.mw-review-content strong {
  color: var(--text);
}
.mw-review-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
  font-style: italic;
}

.mw-author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 28px;
}
.mw-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}
.mw-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.mw-author-bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.mw-author-link {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 4px;
  display: inline-block;
}

.mw-rg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.mw-rg-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s;
}
.mw-rg-card:hover {
  border-color: var(--accent);
}
.mw-rg-card svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin: 0 auto 12px;
}
.mw-rg-card h4 {
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.mw-rg-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.mw-comments-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.mw-comment {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.mw-comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.mw-comment-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.mw-comment-date {
  font-size: 0.77rem;
  color: var(--text-muted);
}
.mw-comment-stars {
  color: var(--accent);
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.mw-comment-text {
  font-size: 0.87rem;
  color: var(--text-muted);
}

.mw-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mw-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mw-form label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
}
.mw-form input,
.mw-form textarea,
.mw-form select {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 11px 14px;
  border-radius: var(--radius);
  transition: border-color 0.2s;
  width: 100%;
}
.mw-form input:focus,
.mw-form textarea:focus,
.mw-form select:focus {
  outline: none;
  border-color: var(--accent);
}
.mw-form textarea {
  resize: vertical;
  min-height: 100px;
}
.mw-stars-input {
  display: flex;
  gap: 6px;
  font-size: 1.4rem;
  cursor: pointer;
}
.mw-stars-input span {
  transition: transform 0.15s;
}
.mw-stars-input span:hover {
  transform: scale(1.2);
}

.mw-footer {
  background: var(--header);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.mw-footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.mw-footer-brand .mw-logo img {
  height: 40px;
}
.mw-footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}
.mw-footer-nav h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.mw-footer-nav a {
  display: block;
  color: var(--text-muted);
  font-size: 0.83rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.mw-footer-nav a:hover {
  color: var(--accent);
}
.mw-footer-bottom {
  padding-top: 24px;
}
.mw-footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}
.mw-footer-logo-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mw-footer-logo-item svg {
  width: 16px;
  height: 16px;
}
.mw-footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.mw-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition:
    background 0.2s,
    color 0.2s;
}
.mw-social-link:hover {
  background: var(--accent);
  color: #fff;
}
.mw-social-link svg {
  width: 16px;
  height: 16px;
}
.mw-footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.mw-footer-legal a {
  color: var(--text-muted);
}
.mw-footer-legal a:hover {
  color: var(--accent);
}
.mw-footer-flag {
  display: inline;
  margin-left: 6px;
}
.mw-copyright {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.mw-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  background: linear-gradient(90deg, #1a0a08, #0e1a26);
  border-top: 2px solid var(--btn-primary);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.mw-widget.visible {
  transform: translateY(0);
}
.mw-widget-text {
  font-size: 0.88rem;
  color: var(--text);
}
.mw-widget-text strong {
  color: var(--accent);
  font-size: 1rem;
}
.mw-widget-promo {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px dashed var(--accent);
  border-radius: 8px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--accent);
}
.mw-widget-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  line-height: 1;
}
.mw-widget-close:hover {
  color: var(--text);
}

.mw-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 8px 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.mw-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mw-faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.mw-faq-q {
  padding: 16px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mw-faq-q::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.3s;
}
.mw-faq-item.open .mw-faq-q::after {
  transform: rotate(45deg);
}
.mw-faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.mw-faq-item.open .mw-faq-a {
  max-height: 300px;
}
.mw-faq-a p {
  padding: 0 18px 16px;
  font-size: 0.87rem;
  color: var(--text-muted);
}

.mw-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  align-items: center;
  padding: 16px 0;
}
.mw-breadcrumb a {
  color: var(--text-muted);
}
.mw-breadcrumb a:hover {
  color: var(--accent);
}
.mw-breadcrumb span {
  color: var(--border);
}

.xq9r4-unused {
  display: none;
  font-variant: small-caps;
  border-spacing: 4px;
}
.f3w8z-ghost {
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  left: -9999px;
}
.k2m7p-phantom::before {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.wp-block-group {
  box-sizing: inherit;
}
.wp-block-columns {
  flex-wrap: wrap;
}
.elementor-section {
  position: relative;
}
.e-container {
  display: flex;
  flex-direction: column;
}
#wpadminbar {
  display: none;
}
.wp-caption {
  max-width: 100%;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}

@media (max-width: 1024px) {
  .mw-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mw-app-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .mw-header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .mw-header-actions .btn-secondary {
    display: none;
  }
  .mw-nav {
    display: none;
  }
  .mw-burger {
    display: flex;
  }
  .mw-slider {
    height: 380px;
  }
  .mw-slide-content h2 {
    font-size: 1.5rem;
  }
  .mw-block {
    padding: 20px 16px;
  }
  .mw-footer-grid {
    grid-template-columns: 1fr;
  }
  .mw-reels {
    gap: 8px;
    padding: 14px 16px;
  }
  .mw-reel {
    width: 72px;
    height: 72px;
    font-size: 2.4rem;
  }
  .mw-widget {
    flex-direction: column;
    text-align: center;
  }
  .mw-info-table td:first-child {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .mw-slider {
    height: 300px;
  }
  .mw-section {
    padding: 36px 0;
  }
  .mw-reels {
    gap: 6px;
    padding: 12px;
  }
  .mw-reel {
    width: 62px;
    height: 62px;
    font-size: 2rem;
  }
}
