.page-dai-ly-m8win {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #333333);
  background-color: var(--background-color, #F5F7FA);
}

.page-dai-ly-m8win__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-dai-ly-m8win__section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color, #E53935);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-dai-ly-m8win__text-block {
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-dai-ly-m8win__btn-primary,
.page-dai-ly-m8win__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-dai-ly-m8win__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: none;
}

.page-dai-ly-m8win__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-dai-ly-m8win__btn-secondary {
  background: #ffffff;
  color: var(--primary-color, #E53935);
  border: 2px solid var(--primary-color, #E53935);
}

.page-dai-ly-m8win__btn-secondary:hover {
  background: var(--primary-color, #E53935);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero Section */
.page-dai-ly-m8win__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  background-color: var(--background-color, #F5F7FA);
}

.page-dai-ly-m8win__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-dai-ly-m8win__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-dai-ly-m8win__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 20px 0;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-dai-ly-m8win__main-title {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-dai-ly-m8win__hero-description {
  font-size: clamp(16px, 1.8vw, 22px);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-dai-ly-m8win__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Intro Section */
.page-dai-ly-m8win__intro-section {
  padding: 80px 0;
  background-color: var(--card-bg-color, #FFFFFF);
  color: var(--text-main-color, #333333);
}

.page-dai-ly-m8win__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-dai-ly-m8win__feature-card {
  background: var(--card-bg-color, #FFFFFF);
  border: 1px solid var(--border-color, #E0E0E0);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-dai-ly-m8win__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-dai-ly-m8win__feature-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.page-dai-ly-m8win__feature-card h3 {
  font-size: 24px;
  color: var(--primary-color, #E53935);
  margin-bottom: 15px;
}

.page-dai-ly-m8win__feature-card p {
  font-size: 16px;
  color: var(--text-main-color, #333333);
}

/* Why Choose Section */
.page-dai-ly-m8win__why-choose-section {
  padding: 80px 0;
  background-color: var(--primary-color, #E53935);
  color: #ffffff;
}

.page-dai-ly-m8win__why-choose-section .page-dai-ly-m8win__section-title {
  color: #ffffff;
}

.page-dai-ly-m8win__why-choose-section .page-dai-ly-m8win__text-block {
  color: #f0f0f0;
}

.page-dai-ly-m8win__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-dai-ly-m8win__benefit-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-dai-ly-m8win__benefit-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-dai-ly-m8win__benefit-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #f0f0f0;
}

/* Commission Structure */
.page-dai-ly-m8win__commission-structure {
  padding: 80px 0;
  background-color: var(--background-color, #F5F7FA);
  color: var(--text-main-color, #333333);
}

.page-dai-ly-m8win__commission-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  margin-bottom: 30px;
  border: 1px solid var(--border-color, #E0E0E0);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-dai-ly-m8win__commission-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.page-dai-ly-m8win__commission-table th,
.page-dai-ly-m8win__commission-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color, #E0E0E0);
}

.page-dai-ly-m8win__commission-table th {
  background-color: var(--accent-color, #FF5A4F);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
}

.page-dai-ly-m8win__commission-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.page-dai-ly-m8win__commission-table tbody tr:hover {
  background-color: #f0f0f0;
}

/* Requirements Section */
.page-dai-ly-m8win__requirements-section {
  padding: 80px 0;
  background-color: var(--primary-color, #E53935);
  color: #ffffff;
}

.page-dai-ly-m8win__requirements-section .page-dai-ly-m8win__section-title {
  color: #ffffff;
}

.page-dai-ly-m8win__requirements-section .page-dai-ly-m8win__text-block {
  color: #f0f0f0;
}

.page-dai-ly-m8win__requirements-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-dai-ly-m8win__requirements-list li {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
}

.page-dai-ly-m8win__requirements-list li::before {
  content: '✓';
  color: var(--accent-color, #FF5A4F);
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

/* Registration Process */
.page-dai-ly-m8win__registration-process {
  padding: 80px 0;
  background-color: var(--background-color, #F5F7FA);
  color: var(--text-main-color, #333333);
}

.page-dai-ly-m8win__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-dai-ly-m8win__step-card {
  background: var(--card-bg-color, #FFFFFF);
  border: 1px solid var(--border-color, #E0E0E0);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  padding-top: 60px;
}

.page-dai-ly-m8win__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-dai-ly-m8win__step-number {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color, #FF5A4F);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-dai-ly-m8win__step-card h3 {
  font-size: 24px;
  color: var(--primary-color, #E53935);
  margin-bottom: 15px;
}

.page-dai-ly-m8win__step-card p {
  font-size: 16px;
  color: var(--text-main-color, #333333);
  margin-bottom: 20px;
}

.page-dai-ly-m8win__step-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  min-height: 200px;
  object-fit: cover;
  display: block;
}