:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1E90FF; /* Dodger Blue */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0a0a0a;
  --background-light: #f8f8f8;
  --border-color: #333333;
}

.page-resources-f1686-game-deep-dive {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark); /* Inherited from shared.css body */
}

.page-resources-f1686-game-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Fixed navigation bar padding */
.page-resources-f1686-game-deep-dive__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 60px;
  text-align: center;
  background: var(--background-dark);
  color: var(--text-light);
}

.page-resources-f1686-game-deep-dive__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-resources-f1686-game-deep-dive__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-resources-f1686-game-deep-dive__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--background-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.page-resources-f1686-game-deep-dive__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-f1686-game-deep-dive__cta-button--inline {
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.page-resources-f1686-game-deep-dive__cta-button--wide {
  width: auto;
  min-width: 250px;
  margin-top: 30px;
}

.page-resources-f1686-game-deep-dive__content-section {
  padding: 60px 0;
}

.page-resources-f1686-game-deep-dive__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-resources-f1686-game-deep-dive__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-f1686-game-deep-dive__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.page-resources-f1686-game-deep-dive__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-resources-f1686-game-deep-dive__sub-section-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-resources-f1686-game-deep-dive__dark-bg .page-resources-f1686-game-deep-dive__sub-section-title {
  color: var(--primary-color);
}

.page-resources-f1686-game-deep-dive__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-f1686-game-deep-dive__image-wrapper {
  margin: 30px auto;
  text-align: center;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.page-resources-f1686-game-deep-dive__image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-f1686-game-deep-dive__feature-list,
.page-resources-f1686-game-deep-dive__step-list,
.page-resources-f1686-game-deep-dive__advice-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-f1686-game-deep-dive__feature-item,
.page-resources-f1686-game-deep-dive__step-item,
.page-resources-f1686-game-deep-dive__advice-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

.page-resources-f1686-game-deep-dive__dark-bg .page-resources-f1686-game-deep-dive__feature-item,
.page-resources-f1686-game-deep-dive__dark-bg .page-resources-f1686-game-deep-dive__step-item,
.page-resources-f1686-game-deep-dive__dark-bg .page-resources-f1686-game-deep-dive__advice-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-f1686-game-deep-dive__feature-item:hover,
.page-resources-f1686-game-deep-dive__step-item:hover,
.page-resources-f1686-game-deep-dive__advice-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-f1686-game-deep-dive__feature-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-resources-f1686-game-deep-dive__dark-bg .page-resources-f1686-game-deep-dive__feature-title {
  color: var(--primary-color);
}

.page-resources-f1686-game-deep-dive__step-item strong {
  color: var(--secondary-color);
}

.page-resources-f1686-game-deep-dive__dark-bg .page-resources-f1686-game-deep-dive__step-item strong {
  color: var(--primary-color);
}

.page-resources-f1686-game-deep-dive__conclusion-section {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  background-color: var(--background-dark);
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-f1686-game-deep-dive__main-title {
    font-size: 2.8em;
  }
  .page-resources-f1686-game-deep-dive__section-title {
    font-size: 2.2em;
  }
  .page-resources-f1686-game-deep-dive__sub-section-title {
    font-size: 1.6em;
  }
  .page-resources-f1686-game-deep-dive__paragraph {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-resources-f1686-game-deep-dive__hero-section {
    padding-top: 100px !important; /* Mobile: Adjust based on fixed header height */
    padding-bottom: 40px;
  }

  .page-resources-f1686-game-deep-dive__main-title {
    font-size: 2.2em;
  }

  .page-resources-f1686-game-deep-dive__subtitle {
    font-size: 1.1em;
    margin-bottom: 30px;
  }

  .page-resources-f1686-game-deep-dive__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-f1686-game-deep-dive__cta-button--inline {
    margin: 10px 0 !important;
  }

  .page-resources-f1686-game-deep-dive__cta-button--wide {
    min-width: unset;
    width: 100% !important;
  }

  .page-resources-f1686-game-deep-dive__content-section {
    padding: 40px 0;
  }

  .page-resources-f1686-game-deep-dive__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-resources-f1686-game-deep-dive__sub-section-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-resources-f1686-game-deep-dive__paragraph {
    font-size: 0.95em;
  }

  .page-resources-f1686-game-deep-dive__image-wrapper {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-resources-f1686-game-deep-dive__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-f1686-game-deep-dive__feature-list,
  .page-resources-f1686-game-deep-dive__step-list,
  .page-resources-f1686-game-deep-dive__advice-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0;
  }

  .page-resources-f1686-game-deep-dive__feature-item,
  .page-resources-f1686-game-deep-dive__step-item,
  .page-resources-f1686-game-deep-dive__advice-item {
    padding: 20px;
  }

  .page-resources-f1686-game-deep-dive__feature-title {
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  .page-resources-f1686-game-deep-dive__container {
    padding: 0 15px;
  }

  .page-resources-f1686-game-deep-dive__conclusion-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .page-resources-f1686-game-deep-dive__main-title {
    font-size: 1.8em;
  }

  .page-resources-f1686-game-deep-dive__section-title {
    font-size: 1.6em;
  }

  .page-resources-f1686-game-deep-dive__sub-section-title {
    font-size: 1.2em;
  }
  .page-resources-f1686-game-deep-dive__cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}