/* style/resources-go88-club-game-guide.css */

:root {
  --primary-color: #0A2342;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f4f7f6;
  --bg-dark: #1a3a5e;
  --accent-color: #e0a800; /* Darker shade of secondary for hover/active */
  --border-color: #e0e0e0;
}

.page-resources-go88-club-game-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
}

.page-resources-go88-club-game-guide a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-go88-club-game-guide a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-resources-go88-club-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-go88-club-game-guide__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-resources-go88-club-game-guide__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-resources-go88-club-game-guide__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-go88-club-game-guide__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;
}

/* Hero Section */
.page-resources-go88-club-game-guide__hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #001a38 100%);
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-resources-go88-club-game-guide__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-go88-club-game-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-resources-go88-club-game-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-resources-go88-club-game-guide__hero-description a {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-resources-go88-club-game-guide__hero-description a:hover {
  text-decoration: underline;
}

.page-resources-go88-club-game-guide__cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 18px 45px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-go88-club-game-guide__cta-button:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-go88-club-game-guide__cta-button--small {
  padding: 12px 30px;
  font-size: 1em;
}

/* Content Wrapper with Image */
.page-resources-go88-club-game-guide__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.page-resources-go88-club-game-guide__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-resources-go88-club-game-guide__text-content {
  flex: 1;
}

.page-resources-go88-club-game-guide__text-content h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-go88-club-game-guide__text-content p {
  margin-bottom: 15px;
}

.page-resources-go88-club-game-guide__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-resources-go88-club-game-guide__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Registration Steps */
.page-resources-go88-club-game-guide__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-go88-club-game-guide__step-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  border-top: 5px solid var(--secondary-color);
}

.page-resources-go88-club-game-guide__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--secondary-color);
}

.page-resources-go88-club-game-guide__step-item h3 {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-go88-club-game-guide__note {
  background-color: #fff3cd;
  color: #856404;
  padding: 15px 20px;
  border-left: 5px solid #ffeeba;
  border-radius: 5px;
  margin-top: 40px;
  font-style: italic;
}

.page-resources-go88-club-game-guide__note a {
  color: #856404;
  font-weight: bold;
}

/* Banking Section */
.page-resources-go88-club-game-guide__banking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-go88-club-game-guide__banking-card {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-go88-club-game-guide__card-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-go88-club-game-guide__banking-card h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-go88-club-game-guide__banking-card p {
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-resources-go88-club-game-guide__card-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-go88-club-game-guide__card-button:hover {
  background-color: #071a30;
  text-decoration: none;
}

/* Games Section */
.page-resources-go88-club-game-guide__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-go88-club-game-guide__game-card {
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-go88-club-game-guide__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-go88-club-game-guide__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--secondary-color);
}

.page-resources-go88-club-game-guide__game-card h3 {
  font-size: 1.4em;
  color: var(--primary-color);
  margin: 20px 15px 10px;
}

.page-resources-go88-club-game-guide__game-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-resources-go88-club-game-guide__game-card h3 a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-resources-go88-club-game-guide__game-card p {
  padding: 0 15px 20px;
  font-size: 0.95em;
}

/* Promotions Section */
.page-resources-go88-club-game-guide__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-go88-club-game-guide__promo-card {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-bottom: 5px solid var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-resources-go88-club-game-guide__promo-card:hover {
  transform: translateY(-5px);
}

.page-resources-go88-club-game-guide__promo-card h3 {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-go88-club-game-guide__promo-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-resources-go88-club-game-guide__promo-card h3 a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Tips Section */
.page-resources-go88-club-game-guide__tip-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-go88-club-game-guide__tip-list li {
  background-color: var(--text-light);
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-color);
}

.page-resources-go88-club-game-guide__tip-list li strong {
  color: var(--primary-color);
  font-size: 1.1em;
}

.page-resources-go88-club-game-guide__tip-list li a {
  color: var(--primary-color);
  font-weight: bold;
}

/* FAQ Section */
.page-resources-go88-club-game-guide__faq-list {
  margin-top: 40px;
}

/* FAQ default state - answer hidden */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  border: 1px solid var(--border-color);
  border-top: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Question style */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
}

/* Toggle icon */
.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

/* Conclusion Section */
.page-resources-go88-club-game-guide__conclusion {
  text-align: center;
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-go88-club-game-guide__conclusion .page-resources-go88-club-game-guide__section-title {
  color: var(--secondary-color);
}

.page-resources-go88-club-game-guide__conclusion p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-go88-club-game-guide__conclusion a {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-resources-go88-club-game-guide__conclusion a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-go88-club-game-guide__hero-title {
    font-size: 2.8em;
  }

  .page-resources-go88-club-game-guide__hero-description {
    font-size: 1.1em;
  }

  .page-resources-go88-club-game-guide__section-title {
    font-size: 2em;
  }

  .page-resources-go88-club-game-guide__content-wrapper {
    flex-direction: column;
  }

  .page-resources-go88-club-game-guide__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-resources-go88-club-game-guide__image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-resources-go88-club-game-guide__hero {
    padding: 80px 0;
  }

  .page-resources-go88-club-game-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-go88-club-game-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-go88-club-game-guide__cta-button {
    padding: 15px 35px;
    font-size: 1em;
  }

  .page-resources-go88-club-game-guide__section {
    padding: 40px 0;
  }

  .page-resources-go88-club-game-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-go88-club-game-guide__steps, 
  .page-resources-go88-club-game-guide__banking-grid, 
  .page-resources-go88-club-game-guide__game-grid, 
  .page-resources-go88-club-game-guide__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-go88-club-game-guide__step-item, 
  .page-resources-go88-club-game-guide__banking-card, 
  .page-resources-go88-club-game-guide__game-card, 
  .page-resources-go88-club-game-guide__promo-card {
    padding: 20px;
  }

  .page-resources-go88-club-game-guide__card-image {
    height: 200px;
  }

  .faq-question {
    padding: 12px;
    flex-direction: row;
    align-items: center;
  }
  
  .faq-question h3 {
    font-size: 1.1em;
  }
  
  .faq-toggle {
    font-size: 18px;
    margin-left: 10px; /* Adjust margin for better alignment */
  }
}

@media (max-width: 480px) {
  .page-resources-go88-club-game-guide__hero-title {
    font-size: 1.8em;
  }

  .page-resources-go88-club-game-guide__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-resources-go88-club-game-guide__section-title {
    font-size: 1.5em;
  }

  .page-resources-go88-club-game-guide__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5em;
  }

  .page-resources-go88-club-game-guide__text-content h3 {
    font-size: 1.5em;
  }

  .page-resources-go88-club-game-guide__banking-card h3 {
    font-size: 1.5em;
  }

  .page-resources-go88-club-game-guide__game-card h3 {
    font-size: 1.2em;
  }

  .page-resources-go88-club-game-guide__promo-card h3 {
    font-size: 1.4em;
  }

  .page-resources-go88-club-game-guide__tip-list li {
    padding: 15px 20px;
    font-size: 0.9em;
  }

  .page-resources-go88-club-game-guide__conclusion p {
    font-size: 1em;
  }
}