.page-privacy-policy {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #FFFFFF; /* Body background is light, so use a light background for main content */
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text for dark background */
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-privacy-policy__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Highlight with login color */
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #F0F0F0;
}

.page-privacy-policy__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-privacy-policy__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-privacy-policy__button--register {
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Dark text for light button */
  border: 2px solid #FFFFFF;
}

.page-privacy-policy__button--register:hover {
  background-color: #F0F0F0;
  transform: translateY(-3px);
}

.page-privacy-policy__button--learn-more {
  background-color: transparent;
  color: #FCBC45; /* Login color for secondary action */
  border: 2px solid #FCBC45;
}

.page-privacy-policy__button--learn-more:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-3px);
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  color: #000000; /* Main color */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 3px solid #FCBC45;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.8em;
  color: #000000; /* Main color */
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-privacy-policy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-privacy-policy__list-item strong {
  color: #000000;
}

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Ensure images don't stretch too wide in content area */
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__link {
  color: #FCBC45; /* Use accent color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #000000;
  text-decoration: underline;
}

.page-privacy-policy__contact-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-privacy-policy__contact-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-privacy-policy__cta-block {
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  padding: 50px 30px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-privacy-policy__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #F0F0F0;
}

.page-privacy-policy__button--play-now {
  background-color: #FCBC45; /* Login color for CTA button */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-privacy-policy__button--play-now:hover {
  background-color: #F0F0F0;
  border-color: #F0F0F0;
  transform: translateY(-3px);
}

.page-privacy-policy__related-links {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.page-privacy-policy__links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-privacy-policy__link-card {
  background-color: #F5F5F5; /* Light background for cards */
  padding: 30px;
  border-radius: 10px;
  text-decoration: none;
  color: #000000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-privacy-policy__link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__link-card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #000000;
  font-weight: bold;
}

.page-privacy-policy__link-card-description {
  font-size: 1em;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy__hero-title {
    font-size: 2.2em;
  }

  .page-privacy-policy__hero-description,
  .page-privacy-policy__cta-description {
    font-size: 1em;
  }

  .page-privacy-policy__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-privacy-policy__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-privacy-policy__section-title {
    font-size: 2em;
  }

  .page-privacy-policy__sub-section-title {
    font-size: 1.5em;
  }

  .page-privacy-policy__text-block,
  .page-privacy-policy__list-item {
    font-size: 0.95em;
  }

  .page-privacy-policy__cta-title {
    font-size: 2em;
  }

  .page-privacy-policy__links-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile content area image overflow prevention */
  .page-privacy-policy__hero-image,
  .page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    width: 100%; /* Ensure content images scale down */
  }
  
  /* Ensure all images within the main content area are responsive and do not cause overflow */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__hero-description {
    font-size: 0.9em;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}