/* style/resources-bay789-bonuses.css */

.page-resources-bay789-bonuses {
  font-family: 'Arial', sans-serif;
  color: #1A202C; /* Main text color */
  background-color: #f8f8f8; /* Light background for readability */
}

.page-resources-bay789-bonuses .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-bay789-bonuses .hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #333d4f 50%, #FFD700 100%); /* Dark blue to gold gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

.page-resources-bay789-bonuses .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-bay789-bonuses .hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-resources-bay789-bonuses .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-resources-bay789-bonuses .primary-btn {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-bay789-bonuses .primary-btn:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-bay789-bonuses .secondary-btn {
  background-color: #1A202C; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-resources-bay789-bonuses .secondary-btn:hover {
  background-color: #2c3447;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Content Area */
.page-resources-bay789-bonuses .content-area {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-resources-bay789-bonuses .article-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-resources-bay789-bonuses .sidebar {
  flex: 0 0 280px; /* Fixed width for sidebar */
  position: sticky;
  top: 100px; /* Adjust based on header height */
  padding: 20px;
  background-color: #f0f2f5;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-resources-bay789-bonuses .table-of-contents {
  margin-bottom: 30px;
}

.page-resources-bay789-bonuses .toc-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-bay789-bonuses .table-of-contents ul {
  list-style: none;
  padding: 0;
}

.page-resources-bay789-bonuses .table-of-contents ul li {
  margin-bottom: 8px;
}

.page-resources-bay789-bonuses .table-of-contents ul li a {
  text-decoration: none;
  color: #4a5568;
  font-size: 1em;
  display: block;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.page-resources-bay789-bonuses .table-of-contents ul li a:hover,
.page-resources-bay789-bonuses .table-of-contents ul li.active a {
  color: #FFD700;
  font-weight: bold;
}

.page-resources-bay789-bonuses .table-of-contents ul ul {
  padding-left: 15px;
  margin-top: 5px;
}

.page-resources-bay789-bonuses .promo-card {
  background-color: #1A202C;
  color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #FFD700;
}

.page-resources-bay789-bonuses .promo-card-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-bay789-bonuses .promo-card-text {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.5;
}

.page-resources-bay789-bonuses .article-content {
  flex: 1;
  max-width: 800px; /* Optimal reading width */
  line-height: 1.7;
  font-size: 1.1em;
  color: #2d3748;
}

.page-resources-bay789-bonuses .article-content h1, 
.page-resources-bay789-bonuses .article-content h2, 
.page-resources-bay789-bonuses .article-content h3, 
.page-resources-bay789-bonuses .article-content h4 {
  color: #1A202C;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-resources-bay789-bonuses .article-content h2 {
  font-size: 2em;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-bay789-bonuses .article-content h3 {
  font-size: 1.6em;
  color: #333d4f;
}

.page-resources-bay789-bonuses .article-content p {
  margin-bottom: 1em;
}

.page-resources-bay789-bonuses .article-content ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 1em;
}

.page-resources-bay789-bonuses .article-content ol {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 1em;
}

.page-resources-bay789-bonuses .article-content li {
  margin-bottom: 0.5em;
}

.page-resources-bay789-bonuses .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-bay789-bonuses .btn-inline {
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-resources-bay789-bonuses .cta-final {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #f0f2f5;
  border-radius: 8px;
  border: 1px dashed #FFD700;
}

.page-resources-bay789-bonuses .cta-final-text {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-resources-bay789-bonuses .back-link-wrapper {
  margin-top: 40px;
  text-align: center;
}

.page-resources-bay789-bonuses .back-link {
  display: inline-block;
  color: #1A202C;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border: 1px solid #1A202C;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-resources-bay789-bonuses .back-link:hover {
  background-color: #1A202C;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-bay789-bonuses .article-container {
    flex-direction: column;
  }

  .page-resources-bay789-bonuses .sidebar {
    position: static;
    width: 100%;
    margin-bottom: 40px;
  }

  .page-resources-bay789-bonuses .hero-title {
    font-size: 2.5em;
  }

  .page-resources-bay789-bonuses .hero-description {
    font-size: 1.1em;
  }

  .page-resources-bay789-bonuses .article-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-resources-bay789-bonuses .hero-section {
    padding: 60px 0;
  }

  .page-resources-bay789-bonuses .hero-title {
    font-size: 2em;
  }

  .page-resources-bay789-bonuses .hero-description {
    font-size: 1em;
  }

  .page-resources-bay789-bonuses .content-area {
    padding: 40px 0;
  }

  .page-resources-bay789-bonuses .btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-bay789-bonuses .toc-title {
    font-size: 1.3em;
  }

  .page-resources-bay789-bonuses .article-content h2 {
    font-size: 1.8em;
  }

  .page-resources-bay789-bonuses .article-content h3 {
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  .page-resources-bay789-bonuses .hero-section {
    padding: 40px 0;
  }

  .page-resources-bay789-bonuses .hero-title {
    font-size: 1.8em;
  }

  .page-resources-bay789-bonuses .hero-description {
    font-size: 0.9em;
  }

  .page-resources-bay789-bonuses .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-resources-bay789-bonuses .article-content {
    font-size: 1em;
  }
}