.page-mv66code {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-mv66code__section-spacing {
  padding: 40px 0;
}

.page-mv66code__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-mv66code__section-title {
  font-size: 32px;
  font-weight: 700;
  color: #2563eb;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-mv66code__section-title--light {
  color: #ffffff;
}

.page-mv66code__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-mv66code__text-block--light {
  color: #f0f0f0;
}

.page-mv66code__highlight {
  color: #2563eb;
  font-weight: bold;
}

.page-mv66code__text-link {
  color: #2563eb;
  text-decoration: underline;
}

.page-mv66code__text-link--light {
  color: #f0f0f0;
}

.page-mv66code__btn-primary,
.page-mv66code__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-mv66code__btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  border: 2px solid #2563eb;
}

.page-mv66code__btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.page-mv66code__btn-secondary {
  background-color: #ffffff;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.page-mv66code__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #1d4ed8;
}

.page-mv66code__button-center {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 300px;
}

.page-mv66code__button-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-mv66code__button-group--center {
  justify-content: center;
}

.page-mv66code__button-group .page-mv66code__btn-primary,
.page-mv66code__button-group .page-mv66code__btn-secondary {
  flex-grow: 1;
  max-width: 250px;
}

.page-mv66code__image-center {
  display: block;
  margin: 0 auto 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.page-mv66code__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  background-color: #f8f8f8;
}

.page-mv66code__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  max-height: 600px;
}

.page-mv66code__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
  margin-top: -20px;
  border-radius: 15px 15px 0 0;
}

.page-mv66code__hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-mv66code__hero-description {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-mv66code__hero-button {
  padding: 15px 35px;
  font-size: 20px;
  border-radius: 10px;
}

/* Floating Login Button */
.page-mv66code__floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ef4444;
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  word-wrap: break-word;
  max-width: calc(100% - 40px);
  box-sizing: border-box;
}

.page-mv66code__floating-button:hover {
  background-color: #dc2626;
  transform: translateY(-3px);
}

/* Benefits Section */
.page-mv66code__dark-section {
  background-color: #2563eb;
  color: #ffffff;
}

.page-mv66code__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-mv66code__benefit-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-mv66code__benefit-item:hover {
  transform: translateY(-5px);
}

.page-mv66code__benefit-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-mv66code__benefit-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-mv66code__benefit-description {
  font-size: 15px;
  color: #f0f0f0;
}

/* Guide Section */
.page-mv66code__steps-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-mv66code__step-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.page-mv66code__step-title {
  font-size: 20px;
  font-weight: 600;
  color: #2563eb;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-mv66code__step-description {
  font-size: 15px;
  color: #555555;
}

/* Game Showcase */
.page-mv66code__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-mv66code__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-mv66code__game-card:hover {
  transform: translateY(-5px);
}

.page-mv66code__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-mv66code__game-title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin: 15px 10px 5px 10px;
}

.page-mv66code__game-description {
  font-size: 14px;
  color: #666666;
  padding: 0 15px 10px 15px;
}

.page-mv66code__game-card .page-mv66code__text-link {
  display: block;
  padding: 10px 15px 15px;
  font-size: 14px;
  color: #2563eb;
  text-decoration: none;
}

.page-mv66code__game-card .page-mv66code__text-link:hover {
  text-decoration: underline;
}

/* App Download */
.page-mv66code__download-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-mv66code__download-options .page-mv66code__btn-primary {
  max-width: 250px;
  flex-grow: 1;
}

/* Payment Guide */
.page-mv66code__payment-methods {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.page-mv66code__payment-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  font-size: 15px;
  color: #555555;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

/* Promotions Section */
.page-mv66code__promotions-list {
  list-style: disc;
  padding-left: 20px;
  margin: 30px 0;
  color: #f0f0f0;
}

.page-mv66code__promotion-item {
  margin-bottom: 10px;
  font-size: 16px;
}

/* FAQ Section */
details.page-mv66code__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-mv66code__faq-item summary.page-mv66code__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-mv66code__faq-item summary.page-mv66code__faq-question::-webkit-details-marker {
  display: none;
}
details.page-mv66code__faq-item summary.page-mv66code__faq-question:hover {
  background: #f5f5f5;
}
.page-mv66code__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.page-mv66code__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-mv66code__faq-item .page-mv66code__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-mv66code__hero-title {
    font-size: 38px;
  }
  .page-mv66code__hero-description {
    font-size: 17px;
  }
  .page-mv66code__section-title {
    font-size: 28px;
  }
  .page-mv66code__benefits-grid,
  .page-mv66code__games-grid,
  .page-mv66code__payment-methods {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 849px) {
  .page-mv66code__hero-image {
    object-fit: contain;
    max-height: 450px;
  }
}

@media (max-width: 768px) {
  .page-mv66code__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-mv66code__section-spacing {
    padding: 30px 0;
  }

  .page-mv66code__hero-section {
    padding-top: 10px; /* Still small top padding */
  }

  .page-mv66code__hero-content {
    padding: 30px 15px;
  }

  .page-mv66code__hero-title {
    font-size: 32px;
  }

  .page-mv66code__hero-description {
    font-size: 16px;
  }

  .page-mv66code__hero-button {
    padding: 12px 25px;
    font-size: 18px;
  }

  .page-mv66code__floating-button {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px;
    font-size: 16px;
    max-width: calc(100% - 30px) !important;
  }

  .page-mv66code__section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-mv66code__text-block {
    font-size: 15px;
  }

  .page-mv66code__benefits-grid,
  .page-mv66code__games-grid,
  .page-mv66code__payment-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-mv66code__benefit-item,
  .page-mv66code__step-item,
  .page-mv66code__game-card,
  .page-mv66code__payment-item {
    padding: 15px;
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-mv66code__benefit-title {
    font-size: 20px;
  }

  .page-mv66code__step-title {
    font-size: 18px;
  }

  .page-mv66code__game-title {
    font-size: 18px;
  }

  .page-mv66code__image-center {
    margin-bottom: 20px;
  }

  .page-mv66code__download-options {
    flex-direction: column;
    gap: 15px;
  }

  .page-mv66code__download-options .page-mv66code__btn-primary {
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-mv66code__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-mv66code__button-group .page-mv66code__btn-primary,
  .page-mv66code__button-group .page-mv66code__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* General image responsive */
  .page-mv66code img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-mv66code__section,
  .page-mv66code__card,
  .page-mv66code__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* FAQ responsive */
  details.page-mv66code__faq-item summary.page-mv66code__faq-question { padding: 15px; }
  .page-mv66code__faq-qtext { font-size: 15px; }
  details.page-mv66code__faq-item .page-mv66code__faq-answer {
    padding: 0 15px 15px;
  }

  /* List items responsive */
  .page-mv66code__steps-list .page-mv66code__step-item,
  .page-mv66code__payment-methods .page-mv66code__payment-item,
  .page-mv66code__promotions-list .page-mv66code__promotion-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 15px;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  .page-mv66code__promotions-list {
    padding-left: 15px !important;
  }
}