.mc-home-page {
  --mc-green: #17b889;
  --mc-green-dark: #0d8f6b;
  --mc-mint: #dff8f0;
  --mc-text: #17231f;
  --mc-muted: #66756f;
  --mc-line: rgba(20, 139, 104, 0.14);
  --mc-shadow: 0 24px 80px rgba(30, 112, 91, 0.12);
  overflow: hidden;
  color: var(--mc-text);
  background:
    radial-gradient(circle at 82% 9%, rgba(42, 206, 165, 0.16), transparent 24%),
    radial-gradient(circle at 78% 32%, rgba(25, 187, 141, 0.1), transparent 20%),
    linear-gradient(180deg, #eefbf6 0, #ffffff 15%, #f8fcfb 62%, #ffffff 100%);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.mc-home-page * {
  box-sizing: border-box;
}

.mc-home-page a {
  text-decoration: none;
}

.mc-shell {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.mc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--mc-green-dark);
  font-size: 13px;
  font-weight: 700;
}

.mc-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mc-green);
  box-shadow: 0 0 0 6px rgba(23, 184, 137, 0.12);
}

.mc-hero {
  position: relative;
  padding: 96px 0 72px;
}

.mc-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -80px;
  width: 1180px;
  height: 430px;
  transform: translateX(-50%);
  border-radius: 0 0 120px 120px;
  background: linear-gradient(110deg, rgba(232, 250, 243, 0.9), rgba(245, 253, 250, 0.45));
  pointer-events: none;
}

.mc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 58px;
  align-items: center;
}

.mc-hero h1,
.mc-section h2,
.mc-pricing-intro h2 {
  margin: 0;
  color: #101b18;
  font-weight: 800;
  letter-spacing: 0;
}

.mc-hero h1 {
  font-size: 54px;
  line-height: 1.15;
}

.mc-hero h1 span,
.mc-section h2 span,
.mc-section-center h2 span {
  color: var(--mc-green);
}

.mc-hero-desc {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--mc-muted);
  font-size: 16px;
  line-height: 1.9;
}

.mc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 44px;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mc-btn:hover {
  transform: translateY(-2px);
}

.mc-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #18bd8c, #0fa476);
  box-shadow: 0 12px 26px rgba(18, 171, 127, 0.25);
}

.mc-btn-ghost {
  color: #12231f;
  background: #fff;
  border: 1px solid var(--mc-line);
}

.mc-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 38px;
}

.mc-hero-stats div,
.mc-proof-strip div {
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(20, 139, 104, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 32px rgba(43, 96, 83, 0.08);
}

.mc-hero-stats strong,
.mc-proof-strip strong {
  display: block;
  color: #10231e;
  font-size: 18px;
  line-height: 1.2;
}

.mc-hero-stats span,
.mc-proof-strip span {
  display: block;
  margin-top: 6px;
  color: #7a8984;
  font-size: 12px;
}

.mc-hero-visual {
  position: relative;
  display: flex;
  min-height: 500px;
  align-items: center;
  justify-content: center;
}

.mc-hero-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 480px;
  height: 96px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(42, 174, 139, 0.16);
  filter: blur(24px);
}

.mc-hero-cutout-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 650px);
  min-height: 500px;
  align-items: center;
  justify-content: center;
}

.mc-hero-cutout-wrap::before {
  content: "";
  position: absolute;
  inset: 14% 4% 8% 22%;
  z-index: -1;
  border-radius: 42% 58% 54% 46%;
  background: radial-gradient(circle, rgba(38, 210, 167, 0.18), rgba(38, 210, 167, 0));
  filter: blur(8px);
}

.mc-hero-cutout-image {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(16, 83, 68, 0.18));
}

.mc-feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.mc-feature-card,
.mc-capability-grid article,
.mc-price-card,
.mc-faq-list details {
  border: 1px solid rgba(20, 139, 104, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(44, 95, 83, 0.08);
}

.mc-feature-card {
  min-height: 154px;
  padding: 24px 22px;
}

.mc-feature-card i,
.mc-capability-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--mc-green-dark);
  font-style: normal;
  font-weight: 800;
  background: rgba(23, 184, 137, 0.1);
}

.mc-feature-card h3,
.mc-capability-grid h3,
.mc-price-card h3 {
  margin: 0;
  color: #13241f;
  font-size: 17px;
  line-height: 1.45;
}

.mc-feature-card p,
.mc-capability-grid p,
.mc-price-card p {
  margin: 10px 0 0;
  color: var(--mc-muted);
  font-size: 13px;
  line-height: 1.7;
}

.mc-section {
  padding: 86px 0;
}

.mc-split,
.mc-panel-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 58px;
  align-items: center;
}

.mc-section h2,
.mc-pricing-intro h2 {
  font-size: 38px;
  line-height: 1.24;
}

.mc-section-copy p,
.mc-section-head p,
.mc-section-center p,
.mc-pricing-intro p {
  margin: 18px 0 0;
  color: var(--mc-muted);
  font-size: 15px;
  line-height: 1.85;
}

.mc-check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 28px;
  padding: 0;
  color: #40534d;
  list-style: none;
  font-size: 14px;
}

.mc-check-list li {
  position: relative;
  padding-left: 24px;
}

.mc-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mc-green);
  box-shadow: 0 0 0 5px rgba(23, 184, 137, 0.1);
}

.mc-game-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(132px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.mc-game-card {
  position: relative;
  display: flex;
  min-height: 245px;
  overflow: hidden;
  padding: 18px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 10px;
  color: #fff;
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 46px rgba(26, 73, 62, 0.16);
}

.mc-game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.7)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 18px);
}

.mc-game-card span,
.mc-game-card strong {
  position: relative;
  z-index: 1;
}

.mc-game-card span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.mc-game-card strong {
  font-size: 19px;
  line-height: 1.35;
}

.mc-game-minecraft { background-image: url("../banner/game-minecraft.png"); }
.mc-game-palworld { background-image: url("../banner/game-palworld.png"); }
.mc-game-left4dead { background-image: url("../banner/game-left4dead.png"); }
.mc-game-terraria { background-image: url("../banner/game-terraria.png"); }
.mc-game-dontstarve { background-image: url("../banner/game-dontstarve.png"); }

.mc-capability {
  background:
    radial-gradient(circle at 88% 2%, rgba(30, 210, 168, 0.15), transparent 20%),
    linear-gradient(180deg, rgba(247, 253, 251, 0), #f6fcfa 38%, #ffffff 100%);
}

.mc-section-head {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: center;
  margin-bottom: 34px;
}

.mc-cloud-illustration {
  height: 210px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 54% 30%, rgba(50, 211, 175, 0.3), transparent 24%),
    linear-gradient(145deg, rgba(236, 252, 247, 0.95), rgba(255, 255, 255, 0.78));
}

.mc-cloud-stack {
  position: relative;
  width: 154px;
  height: 118px;
  margin: 44px auto 0;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #d9f8ef);
  box-shadow: 0 24px 52px rgba(13, 143, 107, 0.18);
}

.mc-cloud-stack::before,
.mc-cloud-stack::after {
  content: "";
  position: absolute;
  border-radius: 16px;
  background: rgba(23, 184, 137, 0.18);
}

.mc-cloud-stack::before {
  left: -42px;
  bottom: -28px;
  width: 76px;
  height: 52px;
}

.mc-cloud-stack::after {
  right: -52px;
  top: 24px;
  width: 84px;
  height: 64px;
}

.mc-capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.mc-capability-grid article {
  min-height: 160px;
  padding: 22px;
}

.mc-panel {
  padding-top: 72px;
}

.mc-panel-grid {
  grid-template-columns: 0.66fr 1.34fr;
}

.mc-dashboard {
  display: grid;
  grid-template-columns: 82px 1fr;
  min-height: 300px;
  overflow: hidden;
  border-radius: 14px;
  background: #10241e;
  box-shadow: 0 34px 76px rgba(9, 38, 31, 0.28);
}

.mc-dashboard-sidebar {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 26px 16px;
  background: #0b1a16;
}

.mc-dashboard-sidebar span {
  height: 22px;
  border-radius: 5px;
  background: rgba(39, 211, 161, 0.14);
}

.mc-dashboard-main {
  padding: 28px;
}

.mc-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #dff8f0;
}

.mc-dashboard-top em {
  padding: 6px 12px;
  border-radius: 999px;
  color: #8af3cf;
  font-size: 12px;
  font-style: normal;
  background: rgba(36, 205, 154, 0.12);
}

.mc-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.mc-dashboard-metrics div {
  padding: 18px;
  border: 1px solid rgba(83, 236, 189, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.mc-dashboard-metrics b,
.mc-dashboard-metrics span {
  display: block;
}

.mc-dashboard-metrics b {
  color: #fff;
  font-size: 18px;
}

.mc-dashboard-metrics span {
  margin-top: 6px;
  color: rgba(223, 248, 240, 0.58);
  font-size: 12px;
}

.mc-dashboard-chart {
  position: relative;
  height: 112px;
  margin-top: 26px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(45, 214, 160, 0.08) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(0deg, rgba(45, 214, 160, 0.08) 1px, transparent 1px) 0 0 / 48px 48px,
    rgba(29, 107, 83, 0.28);
}

.mc-dashboard-chart span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 60px;
  background: linear-gradient(135deg, rgba(48, 222, 167, 0.5), rgba(48, 222, 167, 0));
  clip-path: polygon(0 76%, 13% 52%, 26% 68%, 40% 32%, 55% 48%, 70% 22%, 85% 38%, 100% 18%, 100% 100%, 0 100%);
}

.mc-proof-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.mc-pricing-band {
  position: relative;
  padding: 92px 0 56px;
  background:
    radial-gradient(circle at 12% 38%, rgba(255, 255, 255, 0.24), transparent 22%),
    linear-gradient(135deg, #0a8f6b 0%, #1cbd8f 54%, #dff8f0 100%);
}

.mc-pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 0.86fr));
  gap: 22px;
  align-items: end;
}

.mc-pricing-intro {
  min-height: 420px;
  padding: 42px;
  border-radius: 14px;
  color: #fff;
  background: rgba(5, 81, 62, 0.34);
  box-shadow: 0 26px 70px rgba(4, 73, 55, 0.2);
  backdrop-filter: blur(12px);
}

.mc-pricing-intro .mc-eyebrow,
.mc-pricing-intro h2,
.mc-pricing-intro p {
  color: #fff;
}

.mc-price-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.mc-price-points span {
  padding: 12px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
}

.mc-price-card {
  position: relative;
  min-height: 380px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.94);
}

.mc-price-card-hot {
  min-height: 420px;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 32px 84px rgba(3, 84, 64, 0.22);
}

.mc-hot-tag {
  position: absolute;
  left: 50%;
  top: -16px;
  padding: 7px 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background: #13aa7d;
}

.mc-price {
  margin: 26px 0;
  color: #0f8f6c;
}

.mc-price strong {
  font-size: 48px;
  line-height: 1;
}

.mc-price span {
  margin-left: 6px;
  color: #5c706a;
}

.mc-price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  color: #40534d;
  list-style: none;
  font-size: 14px;
}

.mc-price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--mc-green);
  font-weight: 800;
}

.mc-price-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 7px;
  color: #0f8f6c;
  font-weight: 700;
  border: 1px solid rgba(15, 143, 108, 0.22);
}

.mc-price-card-hot a {
  color: #fff;
  background: var(--mc-green);
  border-color: var(--mc-green);
}

.mc-service-strip {
  display: flex;
  justify-content: center;
  gap: 58px;
  margin-top: 42px;
  color: rgba(9, 54, 43, 0.78);
  font-weight: 700;
}

.mc-section-center {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.mc-faq {
  background: #fbfdfc;
}

.mc-faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.mc-faq-list details {
  padding: 0 24px;
}

.mc-faq-list summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  color: #16241f;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.mc-faq-list summary::-webkit-details-marker {
  display: none;
}

.mc-faq-list summary::after {
  content: "+";
  color: var(--mc-green);
  font-size: 22px;
  font-weight: 500;
}

.mc-faq-list details[open] summary::after {
  content: "-";
}

.mc-faq-list p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--mc-muted);
  font-size: 14px;
  line-height: 1.8;
}

.mc-footer {
  padding: 62px 0 28px;
  border-top: 1px solid rgba(20, 139, 104, 0.08);
  background: #fff;
}

.mc-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 54px;
}

.mc-footer-brand img {
  max-width: 140px;
  max-height: 44px;
  object-fit: contain;
}

.mc-footer-brand p,
.mc-footer h4 {
  margin: 18px 0 12px;
  color: #13241f;
  font-weight: 800;
}

.mc-footer-brand span,
.mc-footer a {
  display: block;
  color: #64766f;
  font-size: 14px;
  line-height: 2;
}

.mc-footer a:hover {
  color: var(--mc-green-dark);
}

.mc-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 139, 104, 0.08);
  color: #8a9793;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .mc-feature-strip,
  .mc-capability-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mc-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .mc-shell {
    width: min(100% - 32px, 680px);
  }

  .mc-hero {
    padding: 72px 0 48px;
  }

  .mc-hero-grid,
  .mc-split,
  .mc-panel-grid,
  .mc-section-head,
  .mc-footer-grid {
    grid-template-columns: 1fr;
  }

  .mc-hero h1 {
    font-size: 40px;
  }

  .mc-section h2,
  .mc-pricing-intro h2 {
    font-size: 30px;
  }

  .mc-hero-stats,
  .mc-proof-strip,
  .mc-feature-strip,
  .mc-capability-grid,
  .mc-game-row,
  .mc-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc-hero-visual,
  .mc-hero-cutout-wrap {
    min-height: 320px;
  }

  .mc-service-strip {
    flex-wrap: wrap;
    gap: 16px 28px;
  }
}

@media (max-width: 560px) {
  .mc-shell {
    width: calc(100% - 24px);
  }

  .mc-hero h1 {
    font-size: 32px;
  }

  .mc-hero-actions,
  .mc-footer-bottom {
    flex-direction: column;
  }

  .mc-btn {
    width: 100%;
  }

  .mc-hero-stats,
  .mc-proof-strip,
  .mc-feature-strip,
  .mc-capability-grid,
  .mc-game-row,
  .mc-pricing-grid,
  .mc-dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .mc-dashboard {
    grid-template-columns: 1fr;
  }

  .mc-dashboard-sidebar {
    display: none;
  }

  .mc-pricing-intro,
  .mc-price-card {
    min-height: 0;
  }
}
