/* style/resources-loto188-live-deep-analysis.css */

:root {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000000;
  --bg-light: #f9f9f9;
  --card-bg-dark: rgba(255, 255, 255, 0.08);
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-resources-loto188-live-deep-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Inherited from body, but good to reinforce */
  padding-top: 120px; /* Fixed header spacing for desktop */
}

.page-resources-loto188-live-deep-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-loto188-live-deep-analysis__section {
  padding: 60px 0;
}

.page-resources-loto188-live-deep-analysis__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-loto188-live-deep-analysis__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-resources-loto188-live-deep-analysis__main-title {
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-resources-loto188-live-deep-analysis__hero-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-resources-loto188-live-deep-analysis__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
}

.page-resources-loto188-live-deep-analysis__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.page-resources-loto188-live-deep-analysis__sub-title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 20px;
  color: inherit;
}

.page-resources-loto188-live-deep-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-loto188-live-deep-analysis__cta-buttons--center {
  margin-top: 50px;
}

.page-resources-loto188-live-deep-analysis__cta-button,
.page-resources-loto188-live-deep-analysis__btn-primary,
.page-resources-loto188-live-deep-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-loto188-live-deep-analysis__btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-loto188-live-deep-analysis__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-loto188-live-deep-analysis__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-loto188-live-deep-analysis__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Content Grid */
.page-resources-loto188-live-deep-analysis__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-resources-loto188-live-deep-analysis__text-block p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: inherit;
}

.page-resources-loto188-live-deep-analysis__full-width {
  grid-column: 1 / -1;
  margin-top: 40px;
}

.page-resources-loto188-live-deep-analysis__image-wrapper {
  text-align: center;
}

.page-resources-loto188-live-deep-analysis__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Product Grid */
.page-resources-loto188-live-deep-analysis__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-loto188-live-deep-analysis__product-card {
  background-color: var(--card-bg-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
}

.page-resources-loto188-live-deep-analysis__product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-loto188-live-deep-analysis__product-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-loto188-live-deep-analysis__product-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-resources-loto188-live-deep-analysis__product-description {
  font-size: 16px;
  margin-bottom: 25px;
  flex-grow: 1;
  color: var(--text-light);
}

/* Feature Grid */
.page-resources-loto188-live-deep-analysis__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-loto188-live-deep-analysis__feature-card {
  background-color: var(--card-bg-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  transition: transform 0.3s ease;
}

.page-resources-loto188-live-deep-analysis__feature-card:hover {
  transform: translateY(-3px);
}

.page-resources-loto188-live-deep-analysis__feature-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Promotion Grid */
.page-resources-loto188-live-deep-analysis__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-loto188-live-deep-analysis__promo-card {
  background-color: var(--card-bg-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
}

.page-resources-loto188-live-deep-analysis__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-loto188-live-deep-analysis__promo-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-loto188-live-deep-analysis__promo-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

/* Service Points */
.page-resources-loto188-live-deep-analysis__service-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-loto188-live-deep-analysis__service-item {
  background-color: var(--card-bg-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.page-resources-loto188-live-deep-analysis__service-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Steps Grid */
.page-resources-loto188-live-deep-analysis__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-loto188-live-deep-analysis__step-card {
  background-color: var(--card-bg-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
}

.page-resources-loto188-live-deep-analysis__step-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-loto188-live-deep-analysis__main-title {
    font-size: 38px;
  }
  .page-resources-loto188-live-deep-analysis__section-title {
    font-size: 32px;
  }
  .page-resources-loto188-live-deep-analysis__sub-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .page-resources-loto188-live-deep-analysis {
    padding-top: 100px !important; /* Fixed header spacing for mobile */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-loto188-live-deep-analysis__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-loto188-live-deep-analysis__section {
    padding: 40px 0;
  }

  .page-resources-loto188-live-deep-analysis__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-resources-loto188-live-deep-analysis__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-resources-loto188-live-deep-analysis__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-resources-loto188-live-deep-analysis__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-resources-loto188-live-deep-analysis__sub-title {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .page-resources-loto188-live-deep-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-resources-loto188-live-deep-analysis__cta-button,
  .page-resources-loto188-live-deep-analysis__btn-primary,
  .page-resources-loto188-live-deep-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-loto188-live-deep-analysis__content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-resources-loto188-live-deep-analysis__image,
  .page-resources-loto188-live-deep-analysis__product-image,
  .page-resources-loto188-live-deep-analysis__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  
  .page-resources-loto188-live-deep-analysis__image-wrapper,
  .page-resources-loto188-live-deep-analysis__product-card,
  .page-resources-loto188-live-deep-analysis__promo-card,
  .page-resources-loto188-live-deep-analysis__feature-card,
  .page-resources-loto188-live-deep-analysis__service-item,
  .page-resources-loto188-live-deep-analysis__step-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-resources-loto188-live-deep-analysis__product-grid,
  .page-resources-loto188-live-deep-analysis__feature-grid,
  .page-resources-loto188-live-deep-analysis__promo-grid,
  .page-resources-loto188-live-deep-analysis__service-points,
  .page-resources-loto188-live-deep-analysis__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-resources-loto188-live-deep-analysis__product-title,
  .page-resources-loto188-live-deep-analysis__promo-title,
  .page-resources-loto188-live-deep-analysis__step-title {
    font-size: 20px;
  }

  .page-resources-loto188-live-deep-analysis__feature-title,
  .page-resources-loto188-live-deep-analysis__service-title {
    font-size: 18px;
  }
}

/* Color Contrast Fixes (if needed, though primary/secondary colors are chosen for contrast) */
.page-resources-loto188-live-deep-analysis__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-resources-loto188-live-deep-analysis__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}