/* style/resources-68gb-bonus-analysis.css */

:root {
  --primary-color: #1A2E4E;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark-section: #1A2E4E;
  --bg-light-section: #ffffff;
  --card-bg: #283e60;
  --button-hover-dark: #0056b3;
  --button-hover-light: #e0a800;
  --border-color: #e0e0e0;
}

.page-resources-68gb-bonus-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default to light text for dark body background */
  background-color: var(--dark-bg-1, #0d0d0d); /* Assuming shared.css defines --dark-bg-1 as dark */
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

.page-resources-68gb-bonus-analysis__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  text-align: center;
  background: var(--bg-dark-section); /* Use brand primary color for hero */
  color: var(--text-light);
}

.page-resources-68gb-bonus-analysis__hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-68gb-bonus-analysis__main-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-resources-68gb-bonus-analysis__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-68gb-bonus-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-68gb-bonus-analysis__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-68gb-bonus-analysis__cta-button:hover {
  background: var(--button-hover-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-68gb-bonus-analysis__cta-button--secondary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
}

.page-resources-68gb-bonus-analysis__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-68gb-bonus-analysis__content-section {
  padding: 60px 20px;
}

.page-resources-68gb-bonus-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-68gb-bonus-analysis__light-bg {
  background: var(--bg-light-section);
  color: var(--text-dark);
}

.page-resources-68gb-bonus-analysis__dark-bg {
  background: var(--bg-dark-section);
  color: var(--text-light);
}

.page-resources-68gb-bonus-analysis__section-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-resources-68gb-bonus-analysis__dark-bg .page-resources-68gb-bonus-analysis__section-title {
  color: var(--secondary-color);
}

.page-resources-68gb-bonus-analysis p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
  color: inherit;
}

.page-resources-68gb-bonus-analysis__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.page-resources-68gb-bonus-analysis__card {
  background: var(--card-bg);
  color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-68gb-bonus-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-68gb-bonus-analysis__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-68gb-bonus-analysis__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-resources-68gb-bonus-analysis__card p {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-68gb-bonus-analysis__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-68gb-bonus-analysis__btn-primary:hover {
  background: var(--button-hover-light);
  transform: translateY(-2px);
}

.page-resources-68gb-bonus-analysis__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  border: 1px solid var(--secondary-color);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-68gb-bonus-analysis__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.page-resources-68gb-bonus-analysis__numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-resources-68gb-bonus-analysis__numbered-list li {
  margin-bottom: 25px;
  padding-left: 50px;
  position: relative;
  color: var(--text-dark);
}

.page-resources-68gb-bonus-analysis__numbered-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-resources-68gb-bonus-analysis__list-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-resources-68gb-bonus-analysis__bullet-list {
  list-style: none;
  padding-left: 0;
}

.page-resources-68gb-bonus-analysis__bullet-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: inherit;
}

.page-resources-68gb-bonus-analysis__bullet-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.page-resources-68gb-bonus-analysis__cta-final-section {
  padding: 80px 20px;
  text-align: center;
  background: var(--bg-dark-section);
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-68gb-bonus-analysis__main-title {
    font-size: 2.8em;
  }
  .page-resources-68gb-bonus-analysis__section-title {
    font-size: 2em;
  }
  .page-resources-68gb-bonus-analysis__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-68gb-bonus-analysis {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-68gb-bonus-analysis__hero-section,
  .page-resources-68gb-bonus-analysis__content-section,
  .page-resources-68gb-bonus-analysis__cta-final-section {
    padding: 40px 15px;
  }

  .page-resources-68gb-bonus-analysis__hero-container,
  .page-resources-68gb-bonus-analysis__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-resources-68gb-bonus-analysis__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-resources-68gb-bonus-analysis__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-resources-68gb-bonus-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-68gb-bonus-analysis__cta-button,
  .page-resources-68gb-bonus-analysis__btn-primary,
  .page-resources-68gb-bonus-analysis__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-68gb-bonus-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-resources-68gb-bonus-analysis__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-resources-68gb-bonus-analysis__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-68gb-bonus-analysis__card {
    padding: 20px;
  }

  .page-resources-68gb-bonus-analysis__card-image {
    height: 180px;
  }

  .page-resources-68gb-bonus-analysis__card-title {
    font-size: 1.3em;
  }

  .page-resources-68gb-bonus-analysis__numbered-list li {
    padding-left: 45px;
  }

  .page-resources-68gb-bonus-analysis__numbered-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }

  .page-resources-68gb-bonus-analysis__list-title {
    font-size: 1.1em;
  }

  .page-resources-68gb-bonus-analysis__bullet-list li {
    padding-left: 25px;
  }
}

@media (max-width: 480px) {
  .page-resources-68gb-bonus-analysis__main-title {
    font-size: 1.8em;
  }
  .page-resources-68gb-bonus-analysis__hero-description {
    font-size: 0.95em;
  }
  .page-resources-68gb-bonus-analysis__section-title {
    font-size: 1.6em;
  }
}