*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #0f0f0f;
  color: #e8e8e8;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}
ul {
  list-style: none;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0f0f0f;
}
::-webkit-scrollbar-thumb {
  background: #2a2a2d;
  border-radius: 3px;
}
.mc-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.mc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .mc-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .mc-container {
    padding: 0 2rem;
  }
}

.mc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition:
    background 0.3s,
    padding 0.3s,
    box-shadow 0.3s;
  padding: 1.25rem 0;
}
.mc-header.scrolled {
  background: #161619;
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.mc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mc-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #f6b35b;
  letter-spacing: 0.1em;
}
.mc-logo svg {
  width: 24px;
  height: 24px;
  fill: #f6b35b;
}
.mc-nav {
  display: none;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .mc-nav {
    display: flex;
    align-items: center;
  }
}
.mc-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #aaaaaa;
  transition: color 0.2s;
}
.mc-nav a:hover {
  color: #f6b35b;
}
.mc-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mc-online {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: #1e1e21;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #2a2a2d;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .mc-online {
    display: flex;
  }
}
.mc-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.mc-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.mc-btn-secondary {
  background: #1e1e21;
  color: #fff;
}
.mc-btn-secondary:hover {
  background: #2a2a2d;
}
.mc-btn-primary {
  background: #f6b35b;
  color: #0f0f0f;
  font-weight: 700;
}
.mc-btn-primary:hover {
  background: #f5c77e;
  transform: scale(1.03);
}
.mc-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #e8e8e8;
  padding: 0.25rem;
  margin-left: 0.5rem;
}
@media (min-width: 1024px) {
  .mc-burger {
    display: none;
  }
}
.mc-burger svg {
  width: 24px;
  height: 24px;
}
.mc-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: #161619;
  border-top: 1px solid #2a2a2d;
  padding: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.mc-mobile-menu.open {
  display: flex;
}
.mc-mobile-online {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: #1e1e21;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #2a2a2d;
}
@media (min-width: 768px) {
  .mc-mobile-online {
    display: none;
  }
}
.mc-mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: #aaaaaa;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(42, 42, 45, 0.5);
  transition: color 0.2s;
}
.mc-mobile-menu a:hover {
  color: #f6b35b;
}

.mc-hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, #1a0a00 0%, #0f0f0f 70%);
}
@media (min-width: 1024px) {
  .mc-hero {
    padding: 12rem 0 8rem;
  }
}
.mc-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.mc-particle {
  position: absolute;
  bottom: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(246, 179, 91, 0.3);
  animation: float-up linear infinite;
}
@keyframes float-up {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-110vh) scale(0.2);
    opacity: 0;
  }
}
.mc-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}
.mc-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}
@media (min-width: 640px) {
  .mc-hero h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .mc-hero h1 {
    font-size: 4.5rem;
  }
}
.mc-hero h1 span {
  color: #f6b35b;
}
.mc-hero-sub {
  font-size: 1.125rem;
  color: #aaaaaa;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .mc-hero-sub {
    font-size: 1.25rem;
  }
}
.mc-promo-box {
  display: inline-flex;
  align-items: center;
  background: #161619;
  border: 1px solid #2a2a2d;
  border-radius: 0.5rem;
  padding: 0.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}
.mc-promo-label {
  font-size: 0.875rem;
  color: #aaaaaa;
  padding: 0.5rem 1rem;
}
.mc-promo-code {
  font-family: monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f6b35b;
  padding: 0.5rem 0.75rem;
  letter-spacing: 0.15em;
}
.mc-promo-copy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #1e1e21;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.mc-promo-copy:hover {
  background: #2a2a2d;
}
.mc-promo-copy.copied {
  color: #22c55e;
}
.mc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.mc-cta-main {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  background: #f6b35b;
  color: #0f0f0f;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(246, 179, 91, 0.3);
}
.mc-cta-main:hover {
  background: #f5c77e;
  transform: scale(1.03);
}
.mc-cta-sec {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  background: #1e1e21;
  color: #fff;
  border-radius: 0.5rem;
  border: 1px solid #f6b35b;
  cursor: pointer;
  transition: all 0.2s;
}
.mc-cta-sec:hover {
  background: #2a2a2d;
}
.mc-hero-note {
  font-size: 0.875rem;
  color: #aaaaaa;
}
.mc-hero-note strong {
  color: #fff;
}

.mc-section {
  padding: 5rem 0;
}
.mc-section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.mc-section-title h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .mc-section-title h2 {
    font-size: 2.5rem;
  }
}
.mc-section-title h2 span {
  color: #f6b35b;
}
.mc-section-title .mc-divider {
  width: 6rem;
  height: 4px;
  background: #f6b35b;
  margin: 0.75rem auto 0;
  border-radius: 9999px;
}
.mc-section-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.mc-section-heading h2 {
  font-size: 2rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .mc-section-heading h2 {
    font-size: 2.5rem;
  }
}
.mc-section-heading h2 span {
  color: #f6b35b;
}

.mc-advantages-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .mc-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .mc-advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.mc-advantage-card {
  background: #161619;
  border: 1px solid #2a2a2d;
  padding: 2rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.mc-advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(246, 179, 91, 0.15);
  border-color: rgba(246, 179, 91, 0.4);
}
.mc-advantage-icon {
  background: #1e1e21;
  border: 1px solid #2a2a2d;
  padding: 0.75rem;
  border-radius: 0.5rem;
  display: inline-flex;
  width: fit-content;
}
.mc-advantage-icon svg {
  width: 32px;
  height: 32px;
  stroke: #f6b35b;
  fill: none;
  stroke-width: 1.5;
}
.mc-advantage-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.mc-advantage-card p {
  color: #aaaaaa;
  line-height: 1.7;
}

.mc-jackpot-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .mc-jackpot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.mc-jackpot-card {
  background: #161619;
  border: 1px solid #2a2a2d;
  border-radius: 0.75rem;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.mc-jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(246, 179, 91, 0.15);
}
.mc-jackpot-bar {
  height: 6px;
  width: 100%;
}
.mc-jackpot-bar.gold {
  background: linear-gradient(90deg, #f6d35b, #f6b35b);
}
.mc-jackpot-bar.purple {
  background: linear-gradient(90deg, #a855f7, #7c3aed);
}
.mc-jackpot-bar.green {
  background: linear-gradient(90deg, #4ade80, #16a34a);
}
.mc-jackpot-body {
  padding: 1.5rem;
}
.mc-jackpot-provider {
  font-size: 0.75rem;
  color: #aaaaaa;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.mc-jackpot-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
.mc-jackpot-amount-box {
  background: #0f0f0f;
  border: 1px solid #2a2a2d;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s;
}
.mc-jackpot-card:hover .mc-jackpot-amount-box {
  border-color: rgba(246, 179, 91, 0.3);
}
.mc-jackpot-amount-label {
  font-size: 0.75rem;
  color: #aaaaaa;
  margin-bottom: 0.25rem;
}
.mc-jackpot-amount {
  font-size: 1.75rem;
  font-weight: 900;
  color: #f6b35b;
  letter-spacing: -0.02em;
}

.mc-slider-wrap {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.mc-slider-wrap::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .mc-slider-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
  }
}
.mc-tournament-card {
  min-width: 85vw;
  scroll-snap-align: center;
  background: #161619;
  border: 1px solid #2a2a2d;
  border-left: 4px solid #f6b35b;
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .mc-tournament-card {
    min-width: 400px;
  }
}
@media (min-width: 768px) {
  .mc-tournament-card {
    min-width: 0;
  }
}
.mc-tournament-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.mc-tournament-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.mc-countdown {
  background: #1e1e21;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid #2a2a2d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.mc-countdown svg {
  width: 16px;
  height: 16px;
  stroke: #f6b35b;
  fill: none;
  stroke-width: 2;
}
.mc-countdown-val {
  font-family: monospace;
  font-size: 0.875rem;
  color: #f6b35b;
  font-weight: 700;
}
.mc-tournament-desc {
  font-size: 0.875rem;
  color: #aaaaaa;
  margin-bottom: 1.5rem;
  flex: 1;
}
.mc-tournament-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #2a2a2d;
  padding-top: 1rem;
}
.mc-tournament-prize-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaaaaa;
  margin-bottom: 0.25rem;
}
.mc-tournament-prize {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.mc-tournament-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: #f6b35b;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.mc-tournament-cta:hover {
  color: #fff;
}

.mc-bonuses-slider {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.mc-bonuses-slider::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .mc-bonuses-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
  }
}
.mc-bonus-wrap {
  min-width: 85vw;
  scroll-snap-align: center;
  padding: 1px;
  border-radius: 0.75rem;
  background: linear-gradient(160deg, rgba(246, 179, 91, 0.5), #2a2a2d);
}
@media (min-width: 640px) {
  .mc-bonus-wrap {
    min-width: 320px;
  }
}
@media (min-width: 768px) {
  .mc-bonus-wrap {
    min-width: 0;
  }
}
.mc-bonus-inner {
  background: #161619;
  border-radius: 0.6875rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mc-bonus-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.mc-bonus-subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  color: #f6b35b;
  margin-bottom: 1rem;
}
.mc-bonus-desc {
  font-size: 0.875rem;
  color: #aaaaaa;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 2rem;
}
.mc-bonus-btn {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid #f6b35b;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.mc-bonus-wrap:hover .mc-bonus-btn {
  background: #f6b35b;
  color: #0f0f0f;
}

.mc-video-section {
  padding: 5rem 0;
  margin: 2.5rem 0;
}
.mc-video-inner {
  background: rgba(22, 22, 25, 0.5);
  border: 1px solid #2a2a2d;
  border-radius: 1rem;
  padding: 2rem;
}
.mc-video-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.mc-video-title h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .mc-video-title h2 {
    font-size: 2.5rem;
  }
}
.mc-video-title p {
  color: #aaaaaa;
}
.mc-video-embed {
  max-width: 56rem;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  border: 1px solid #2a2a2d;
}
.mc-video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.mc-wheel-section {
  padding: 5rem 0;
  text-align: center;
}
.mc-wheel-title {
  margin-bottom: 2.5rem;
}
.mc-wheel-title h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .mc-wheel-title h2 {
    font-size: 2.5rem;
  }
}
.mc-wheel-title p {
  color: #aaaaaa;
}
.mc-wheel-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}
.mc-wheel-pointer {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid #f6b35b;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.mc-wheel-canvas {
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(246, 179, 91, 0.2);
}
.mc-wheel-btn {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  background: #f6b35b;
  color: #0f0f0f;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(246, 179, 91, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.mc-wheel-btn:hover {
  background: #f5c77e;
  transform: scale(1.03);
}
.mc-wheel-btn:disabled {
  background: #4b4b4b;
  color: #888;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.mc-wheel-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  padding: 1rem;
  display: none;
}
.mc-wheel-modal.open {
  display: flex;
}
.mc-wheel-modal-box {
  background: #161619;
  border: 1px solid #f6b35b;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 360px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.mc-wheel-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #aaaaaa;
  cursor: pointer;
  font-size: 1.25rem;
  transition: color 0.2s;
}
.mc-wheel-modal-close:hover {
  color: #fff;
}
.mc-wheel-modal-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.mc-wheel-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.mc-wheel-modal-sub {
  color: #aaaaaa;
  margin-bottom: 0.5rem;
}
.mc-wheel-modal-prize {
  font-size: 2rem;
  font-weight: 900;
  color: #f6b35b;
  margin-bottom: 2rem;
}
.mc-wheel-modal-action {
  width: 100%;
  padding: 0.75rem;
  font-weight: 700;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 1rem;
}
.mc-wheel-modal-action.win {
  background: #f6b35b;
  color: #0f0f0f;
}
.mc-wheel-modal-action.win:hover {
  background: #f5c77e;
}
.mc-wheel-modal-action.lose {
  background: #1e1e21;
  color: #fff;
  border: 1px solid #2a2a2d;
}
.mc-wheel-modal-action.lose:hover {
  background: #2a2a2d;
}

.mc-review-section {
  padding: 5rem 0;
}
.mc-review-box {
  background: #161619;
  border: 1px solid #2a2a2d;
  border-radius: 1rem;
  padding: 2rem;
}
@media (min-width: 640px) {
  .mc-review-box {
    padding: 2.5rem;
  }
}
.mc-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #2a2a2d;
}
.mc-author-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f6b35b;
  flex-shrink: 0;
}
.mc-author-name {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.mc-author-bio {
  font-size: 0.875rem;
  color: #aaaaaa;
}
.mc-review-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}
.mc-review-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.mc-review-content p {
  color: #aaaaaa;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.mc-review-content ul,
.mc-review-content ol {
  padding-left: 1.5rem;
  color: #aaaaaa;
  margin-bottom: 1rem;
}
.mc-review-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.mc-review-content ul li {
  list-style: disc;
}
.mc-review-content ol li {
  list-style: decimal;
}
.mc-review-content strong {
  color: #e8e8e8;
  font-weight: 600;
}
.mc-review-content a {
  color: #f6b35b;
}
.mc-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  overflow-x: auto;
  display: block;
}
.mc-review-content th,
.mc-review-content td {
  padding: 0.75rem 1rem;
  border: 1px solid #2a2a2d;
  text-align: left;
  color: #aaaaaa;
}
.mc-review-content th {
  background: #0f0f0f;
  color: #e8e8e8;
  font-weight: 600;
}
.mc-content-placeholder {
  color: #666;
  font-style: italic;
  padding: 2rem;
  border: 2px dashed #2a2a2d;
  border-radius: 0.5rem;
  text-align: center;
}

.mc-faq-section {
  padding: 5rem 0;
}
.mc-faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mc-faq-item {
  background: #161619;
  border: 1px solid #2a2a2d;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.3s;
}
.mc-faq-item.open {
  border-color: #f6b35b;
  border-left-width: 4px;
}
.mc-faq-btn {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}
.mc-faq-q {
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}
.mc-faq-item.open .mc-faq-q {
  color: #f6b35b;
}
.mc-faq-chevron {
  width: 20px;
  height: 20px;
  stroke: #aaaaaa;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    stroke 0.3s;
}
.mc-faq-item.open .mc-faq-chevron {
  transform: rotate(180deg);
  stroke: #f6b35b;
}
.mc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease;
  opacity: 0;
}
.mc-faq-item.open .mc-faq-answer {
  max-height: 300px;
  opacity: 1;
}
.mc-faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: #aaaaaa;
  line-height: 1.7;
}

.mc-reg-section {
  padding: 5rem 0;
}
.mc-reg-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .mc-reg-steps {
    flex-direction: row;
  }
}
.mc-reg-line {
  display: none;
}
@media (min-width: 768px) {
  .mc-reg-line {
    display: block;
    position: absolute;
    top: 3rem;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #2a2a2d;
    z-index: 0;
  }
}
.mc-reg-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.mc-reg-icon-wrap {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.5rem;
  background: #161619;
  border: 1px solid #2a2a2d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mc-reg-icon-wrap svg {
  width: 40px;
  height: 40px;
  stroke: #f6b35b;
  fill: none;
  stroke-width: 1.5;
}
.mc-reg-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: #f6b35b;
  color: #0f0f0f;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mc-reg-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.mc-reg-step p {
  font-size: 0.875rem;
  color: #aaaaaa;
  line-height: 1.7;
  padding: 0 1rem;
}
.mc-reg-cta {
  text-align: center;
}
.mc-reg-cta-btn {
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  background: #f6b35b;
  color: #0f0f0f;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 30px rgba(246, 179, 91, 0.2);
}
.mc-reg-cta-btn:hover {
  background: #f5c77e;
  transform: scale(1.03);
}

.mc-footer {
  background: #161619;
  border-top: 1px solid #2a2a2d;
  padding: 4rem 0 6rem;
}
.mc-footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #2a2a2d;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .mc-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .mc-footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.mc-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #f6b35b;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.mc-footer-logo svg {
  width: 24px;
  height: 24px;
  fill: #f6b35b;
}
.mc-footer-desc {
  font-size: 0.875rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.mc-footer-locale {
  font-size: 0.875rem;
  color: #aaaaaa;
}
.mc-footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
.mc-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mc-footer-col ul li a {
  font-size: 0.875rem;
  color: #888;
  transition: color 0.2s;
}
.mc-footer-col ul li a:hover {
  color: #f6b35b;
}
.mc-footer-contact-email {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 0.75rem;
  display: block;
  transition: color 0.2s;
}
.mc-footer-contact-email:hover {
  color: #f6b35b;
}
.mc-footer-contact-note {
  font-size: 0.875rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mc-footer-contact-note svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.mc-footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.mc-footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e1e21;
  border: 1px solid #2a2a2d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaaaaa;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.mc-footer-social svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.mc-footer-social:hover {
  color: #f6b35b;
  border-color: #f6b35b;
}
.mc-footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #666;
}
.mc-footer-providers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.mc-footer-providers span {
  font-weight: 700;
  color: #888;
}
.mc-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.mc-footer-badge {
  padding: 0.25rem 0.75rem;
  border: 1px solid #2a2a2d;
  border-radius: 0.25rem;
  background: #0f0f0f;
  font-size: 0.75rem;
  color: #888;
}
.mc-footer-legal {
  text-align: center;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.8;
  padding-bottom: 2.5rem;
}
.mc-footer-legal p {
  margin-bottom: 0.5rem;
}
.mc-footer-legal .mc-footer-disclaimer {
  max-width: 64rem;
  margin: 0.75rem auto 0;
  font-style: italic;
  border-top: 1px solid #2a2a2d;
  padding-top: 0.75rem;
}

.mc-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 150;
  background: #f6b35b;
  color: #0f0f0f;
  box-shadow: 0 -10px 30px rgba(246, 179, 91, 0.2);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mc-widget.show {
  transform: translateY(0);
}
.mc-widget-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 3.5rem 0.75rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  text-align: center;
  position: relative;
}
@media (min-width: 640px) {
  .mc-widget-inner {
    text-align: left;
    padding: 0.75rem 3.5rem;
  }
}
.mc-widget-emoji {
  font-size: 1.25rem;
}
.mc-widget-text {
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 640px) {
  .mc-widget-text {
    font-size: 1rem;
  }
}
.mc-widget-text strong {
  font-weight: 700;
}
.mc-widget-link {
  font-weight: 700;
  color: #0f0f0f;
  text-decoration: none;
  font-size: 0.875rem;
  background: rgba(0, 0, 0, 0.1);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: transform 0.2s;
}
@media (min-width: 640px) {
  .mc-widget-link {
    font-size: 1rem;
  }
}
.mc-widget-link:hover {
  transform: scale(1.05);
}
.mc-widget-close {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 50%;
  transition: background 0.2s;
  color: #0f0f0f;
}
.mc-widget-close:hover {
  background: rgba(0, 0, 0, 0.1);
}
.mc-widget-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

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

.mc-info-content {
  max-width: 56rem;
  margin: 8rem auto 4rem;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .mc-info-content {
    padding: 0 1.5rem;
  }
}
.mc-info-content h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #fff;
}
.mc-info-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}
.mc-info-content p {
  color: #aaaaaa;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.mc-info-content ul,
.mc-info-content ol {
  padding-left: 1.5rem;
  color: #aaaaaa;
  margin-bottom: 1rem;
}
.mc-info-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  list-style: disc;
}
.mc-info-content strong {
  color: #e8e8e8;
}
.mc-info-content a {
  color: #f6b35b;
}

.wp-link-checker {
  display: none !important;
  visibility: hidden !important;
}
.elementor-hidden-widget {
  display: none !important;
}
.woocommerce-product-gallery {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.site-footer-widget-area {
  display: none !important;
}
.mc4wp-form-fields {
  display: none !important;
}
.wp-caption-text {
  display: none !important;
}

.mc-hero {
  background:
    linear-gradient(90deg, rgba(10, 10, 12, 0.90) 0%, rgba(10, 10, 12, 0.74) 48%, rgba(10, 10, 12, 0.58) 100%),
    url('/maban.jpg') center center / cover no-repeat !important;
}

.mc-info-content {
  width: calc(100% - 2rem) !important;
  max-width: 56rem !important;
  margin: 8rem auto 4rem !important;
  padding: 2rem !important;
  box-sizing: border-box !important;
  background: #161619 !important;
  border: 1px solid #2a2a2d !important;
  border-radius: 1rem !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24) !important;
  overflow: hidden !important;
}

.mc-info-content table {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
}

.mc-info-content img,
.mc-info-content iframe,
.mc-info-content video {
  max-width: 100% !important;
  height: auto !important;
}

@media (max-width: 767px) {
  .mc-header-right > .mc-btn-secondary {
    display: none !important;
  }

  .mc-header-right > .mc-btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mc-header-inner {
    flex-wrap: nowrap !important;
  }

  .mc-info-content {
    width: calc(100% - 1.5rem) !important;
    margin: 6.5rem auto 2.5rem !important;
    padding: 1.25rem !important;
  }

  .mc-hero {
    background-position: center center !important;
  }
}

@media (max-width: 420px) {
  .mc-header-right > .mc-btn-primary {
    padding: 0.45rem 0.7rem !important;
    font-size: 0.78rem !important;
  }

  .mc-info-content {
    width: calc(100% - 1rem) !important;
    padding: 1rem !important;
  }
}

@media (max-width: 767px) {
  .mc-registration-section,
  .mc-registration-section .mc-container {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .mc-reg-steps {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .mc-reg-step {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0 0.75rem !important;
    box-sizing: border-box !important;
  }

  .mc-reg-step p {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-wrap: anywhere !important;
  }

  .mc-reg-cta {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .mc-reg-cta-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 58px !important;
    padding: 0.9rem 1rem !important;
    box-sizing: border-box !important;
    font-size: 1rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }
}

@media (max-width: 420px) {
  .mc-reg-cta {
    padding: 0 0.5rem !important;
  }

  .mc-reg-cta-btn {
    font-size: 0.9rem !important;
    padding: 0.8rem 0.75rem !important;
  }
}
