/* style/resources-how-to-use-new88-images.css */

/* Variables (for consistency with shared.css if needed) */
:root {
  --primary-color: #FFD700;
  --secondary-color: #1A1A1A;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0d0d0d;
  --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly lighter than body for contrast */
  --border-color-dark: rgba(255, 255, 255, 0.15);
}

.page-resources-how-to-use-new88-images {
  color: var(--text-light); /* Light text for dark body background */
  background-color: var(--background-dark); /* Ensure background is dark */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Fixed Header Spacing */
.page-resources-how-to-use-new88-images__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop and mobile */
}

.page-resources-how-to-use-new88-images__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-how-to-use-new88-images__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.page-resources-how-to-use-new88-images__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background: var(--secondary-color); /* Dark background for hero */
}

.page-resources-how-to-use-new88-images__hero-content {
  max-width: 800px;
  z-index: 1;
  padding: 20px;
}

.page-resources-how-to-use-new88-images__main-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-use-new88-images__hero-description {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-how-to-use-new88-images__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--primary-color);
  color: var(--secondary-color); /* Dark text on gold button for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-resources-how-to-use-new88-images__cta-button:hover {
  background: #E6B800; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-use-new88-images__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 1000px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}