/* Base styles for the mv88 apk page */
.page-mv88apk {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text on light background */
  background-color: #f9f9f9;
}

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

.page-mv88apk__section-title {
  font-size: 2.5em;
  color: #2563eb;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-mv88apk__text-block {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Hero Section */
.page-mv88apk__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #f0f8ff;
}

.page-mv88apk__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-mv88apk__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-mv88apk__hero-content {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-mv88apk__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #2563eb;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
}

.page-mv88apk__tagline {
  font-size: 1.3em;
  color: #64748b;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* CTA Buttons */
.page-mv88apk__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-mv88apk__cta-buttons--centered {
  margin-top: 40px;
}

.page-mv88apk__btn-primary,
.page-mv88apk__btn-secondary,
.page-mv88apk__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-mv88apk__btn-primary:hover {
  background-color: #1e40af;
  border-color: #1e40af;
  transform: translateY(-2px);
}

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

.page-mv88apk__btn-secondary:hover {
  background-color: #e0f2fe;
  transform: translateY(-2px);
}

.page-mv88apk__btn-small {
  padding: 10px 20px;
  font-size: 0.95em;
  background-color: #64748b;
  color: #ffffff;
  border: 2px solid #64748b;
}

.page-mv88apk__btn-small:hover {
  background-color: #475569;
  border-color: #475569;
}

/* About Section */
.page-mv88apk__about-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

/* Features Section */
.page-mv88apk__features-section {
  padding: 60px 0;
  background-color: #2563eb;
  color: #ffffff;
}

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

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

.page-mv88apk__feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.page-mv88apk__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-mv88apk__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
}

.page-mv88apk__feature-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Games Section */
.page-mv88apk__games-section {
  padding: 60px 0;
  background-color: #f0f8ff;
  color: #333333;
}

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

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

.page-mv88apk__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-mv88apk__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-mv88apk__game-title {
  font-size: 1.4em;
  color: #2563eb;
  margin-bottom: 10px;
  padding: 0 15px;
  font-weight: 600;
}

.page-mv88apk__game-description {
  font-size: 0.95em;
  color: #64748b;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* Download Guide Section */
.page-mv88apk__download-guide {
  padding: 60px 0;
  background-color: #1a202c;
  color: #ffffff;
}

.page-mv88apk__download-guide .page-mv88apk__section-title {
  color: #ffffff;
}

.page-mv88apk__download-guide .page-mv88apk__text-block {
  color: #e0e0e0;
}

.page-mv88apk__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-mv88apk__step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.page-mv88apk__step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: 700;
}

.page-mv88apk__step-content {
  flex-grow: 1;
}

.page-mv88apk__step-title {
  font-size: 1.6em;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-mv88apk__step-description {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-mv88apk__step-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-top: 15px;
}

/* Registration Section */
.page-mv88apk__registration-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-mv88apk__registration-steps {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #333333;
  box-sizing: border-box;
}

.page-mv88apk__registration-steps li {
  margin-bottom: 10px;
  line-height: 1.7;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* FAQ Section */
.page-mv88apk__faq-section {
  padding: 60px 0;
  background-color: #2563eb;
  color: #ffffff;
}

.page-mv88apk__faq-section .page-mv88apk__section-title {
  color: #ffffff;
}

.page-mv88apk__faq-list {
  margin-top: 40px;
}

.page-mv88apk__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}