:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Navy Blue */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #0d0d0d; /* Assuming shared.css var(--dark-bg-1) is dark */
  --border-color: #e0e0e0;
}

/* Base styles for the page content, ensuring contrast with assumed dark body background */
.page-resources-about-sun-52-club {
  color: var(--text-light); /* Light text for dark body background */
  background-color: transparent; /* Inherit from body or shared.css */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-resources-about-sun-52-club__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-about-sun-52-club__hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0a40 100%);
  padding: 120px 0 80px 0; /* Adjusted padding-top for fixed header */
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.page-resources-about-sun-52-club__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-resources-about-sun-52-club__description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-resources-about-sun-52-club__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-about-sun-52-club__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-about-sun-52-club__cta-button--primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-about-sun-52-club__cta-button--primary:hover {
  background-color: darken(var(--primary-color), 10%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-about-sun-52-club__cta-button--secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-about-sun-52-club__cta-button--secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-about-sun-52-club__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-resources-about-sun-52-club__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-resources-about-sun-52-club__sub-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-about-sun-52-club__brand-intro-section,
.page-resources-about-sun-52-club__why-choose-us-section,
.page-resources-about-sun-52-club__games-section,
.page-resources-about-sun-52-club__security-section,
.page-resources-about-sun-52-club__faq-section,
.page-resources-about-sun-52-club__cta-bottom-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-resources-about-sun-52-club__brand-intro-section,
.page-resources-about-sun-52-club__security-section {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-resources-about-sun-52-club__why-choose-us-section,
.page-resources-about-sun-52-club__games-section,
.page-resources-about-sun-52-club__faq-section,
.page-resources-about-sun-52-club__cta-bottom-section {
  background-color: #0a0a40;
  color: var(--text-light);
}

.page-resources-about-sun-52-club__intro-grid,
.page-resources-about-sun-52-club__security-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-resources-about-sun-52-club__intro-grid {
  flex-direction: row;
}

.page-resources-about-sun-52-club__security-content {
  flex-direction: row-reverse;
}

.page-resources-about-sun-52-club__intro-content,
.page-resources-about-sun-52-club__security-text {
  flex: 1;
}

.page-resources-about-sun-52-club__intro-image-wrapper,
.page-resources-about-sun-52-club__security-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-about-sun-52-club__intro-image,
.page-resources-about-sun-52-club__security-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-resources-about-sun-52-club__value-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-resources-about-sun-52-club__value-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  display: flex;
  align-items: flex-start;
}

.page-resources-about-sun-52-club__value-icon {
  color: var(--primary-color);
  font-size: 1.2em;
  margin-right: 10px;
  line-height: 1.6;
  flex-shrink: 0;
}

.page-resources-about-sun-52-club__features-grid,
.page-resources-about-sun-52-club__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-about-sun-52-club__feature-card,
.page-resources-about-sun-52-club__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-about-sun-52-club__feature-card:hover,
.page-resources-about-sun-52-club__game-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-about-sun-52-club__feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  object-fit: contain;
  display: block;
}

.page-resources-about-sun-52-club__feature-title,
.page-resources-about-sun-52-club__game-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-about-sun-52-club__feature-text,
.page-resources-about-sun-52-club__game-text {
  font-size: 1em;
  color: #e0e0e0;
  flex-grow: 1;
}

.page-resources-about-sun-52-club__game-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-resources-about-sun-52-club__game-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-about-sun-52-club__game-link:hover {
  background-color: darken(var(--primary-color), 10%);
}

/* FAQ Section Styles */
.page-resources-about-sun-52-club__faq-list {
  margin-top: 40px;
}

.page-resources-about-sun-52-club__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-about-sun-52-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--secondary-color);
  border: 1px solid #000060;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-resources-about-sun-52-club__faq-question:hover {
  background: #000060;
  border-color: #000040;
}

.page-resources-about-sun-52-club__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-resources-about-sun-52-club__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-resources-about-sun-52-club__faq-item.active .page-resources-about-sun-52-club__faq-toggle {
  color: var(--text-light);
  transform: rotate(45deg);
}

.page-resources-about-sun-52-club__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #0a0a40;
  color: #e0e0e0;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.page-resources-about-sun-52-club__faq-item.active .page-resources-about-sun-52-club__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-resources-about-sun-52-club__cta-bottom-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffc107 100%);
  color: var(--secondary-color);
}

.page-resources-about-sun-52-club__cta-bottom-section .page-resources-about-sun-52-club__section-title {
  color: var(--secondary-color);
  text-shadow: none;
}

.page-resources-about-sun-52-club__cta-bottom-section .page-resources-about-sun-52-club__section-title::after {
  background-color: var(--secondary-color);
}

.page-resources-about-sun-52-club__cta-bottom-section .page-resources-about-sun-52-club__description {
  color: #333333;
}

.page-resources-about-sun-52-club__cta-bottom-section .page-resources-about-sun-52-club__cta-button--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}

.page-resources-about-sun-52-club__cta-bottom-section .page-resources-about-sun-52-club__cta-button--primary:hover {
  background-color: darken(var(--secondary-color), 10%);
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-about-sun-52-club__main-title {
    font-size: 2.8em;
  }
  .page-resources-about-sun-52-club__section-title {
    font-size: 2em;
  }
  .page-resources-about-sun-52-club__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-about-sun-52-club__hero-section {
    padding-top: 100px !important;
    padding-bottom: 60px;
  }
  .page-resources-about-sun-52-club__main-title {
    font-size: 2.2em;
  }
  .page-resources-about-sun-52-club__description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-resources-about-sun-52-club__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-resources-about-sun-52-club__cta-button {
    width: 100% !important;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-about-sun-52-club__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-resources-about-sun-52-club__sub-title {
    font-size: 1.4em;
  }
  .page-resources-about-sun-52-club__brand-intro-section,
  .page-resources-about-sun-52-club__why-choose-us-section,
  .page-resources-about-sun-52-club__games-section,
  .page-resources-about-sun-52-club__security-section,
  .page-resources-about-sun-52-club__faq-section,
  .page-resources-about-sun-52-club__cta-bottom-section {
    padding: 60px 0;
  }
  .page-resources-about-sun-52-club__intro-grid,
  .page-resources-about-sun-52-club__security-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-resources-about-sun-52-club__features-grid,
  .page-resources-about-sun-52-club__game-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-about-sun-52-club__feature-card,
  .page-resources-about-sun-52-club__game-card {
    padding: 25px;
  }
  .page-resources-about-sun-52-club__game-image {
    height: 180px;
  }
  .page-resources-about-sun-52-club__faq-question {
    padding: 15px 20px;
  }
  .page-resources-about-sun-52-club__faq-question h3 {
    font-size: 1em;
  }
  .page-resources-about-sun-52-club__faq-toggle {
    font-size: 24px;
    width: 24px;
    height: 24px;
  }
  .page-resources-about-sun-52-club__faq-answer {
    padding: 0 20px;
  }
  .page-resources-about-sun-52-club__faq-item.active .page-resources-about-sun-52-club__faq-answer {
    padding: 15px 20px !important;
  }
  .page-resources-about-sun-52-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-about-sun-52-club__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-resources-about-sun-52-club__main-title {
    font-size: 1.8em;
  }
  .page-resources-about-sun-52-club__section-title {
    font-size: 1.5em;
  }
  .page-resources-about-sun-52-club__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-resources-about-sun-52-club__feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-resources-about-sun-52-club__feature-title,
  .page-resources-about-sun-52-club__game-title {
    font-size: 1.2em;
  }
  .page-resources-about-sun-52-club__game-image {
    height: 150px;
  }
}