/* style/game-strategy-slot-secrets.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-login: #EA7C07;
  --background-white: #FFFFFF;
  --black: #000000;
}

.page-game-strategy-slot-secrets {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-white); /* Assuming shared.css sets body background to --secondary-color (white) */
}

.page-game-strategy-slot-secrets__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-game-strategy-slot-secrets__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  box-sizing: border-box;
}

.page-game-strategy-slot-secrets__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-game-strategy-slot-secrets__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.page-game-strategy-slot-secrets__hero-content {
  position: relative;
  z-index: 3;
  color: var(--text-light);
  max-width: 800px;
  padding: 20px;
}

.page-game-strategy-slot-secrets__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-strategy-slot-secrets__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* General Section Styling */
.page-game-strategy-slot-secrets__introduction-section,
.page-game-strategy-slot-secrets__strategy-section,
.page-game-strategy-slot-secrets__features-section,
.page-game-strategy-slot-secrets__faq-section {
  padding: 60px 0;
  background-color: var(--background-white);
  color: var(--text-dark);
}

.page-game-strategy-slot-secrets__principles-section,
.page-game-strategy-slot-secrets__game-selection-section,
.page-game-strategy-slot-secrets__expert-tips-section,
.page-game-strategy-slot-secrets__cta-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-game-strategy-slot-secrets__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from parent section */
}

.page-game-strategy-slot-secrets__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-strategy-slot-secrets__paragraph a {
  color: inherit;
  text-decoration: underline;
}

/* Buttons */
.page-game-strategy-slot-secrets__btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid var(--primary-color);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-strategy-slot-secrets__btn-primary:hover {
  background-color: #1e87b7;
  transform: translateY(-2px);
}

.page-game-strategy-slot-secrets__cta-button {
  margin-top: 30px;
  font-size: 1.2em;
}

/* Card Grid */
.page-game-strategy-slot-secrets__grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-strategy-slot-secrets__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-strategy-slot-secrets__card {
  background-color: var(--background-white);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 400px; /* Ensure cards have a minimum height for better layout */
}

.page-game-strategy-slot-secrets__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-game-strategy-slot-secrets__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-game-strategy-slot-secrets__card-description {
  font-size: 1em;
  line-height: 1.5;
  text-align: justify;
}

.page-game-strategy-slot-secrets__card-description a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-game-strategy-slot-secrets__list {
  list-style: disc inside;
  margin-top: 15px;
  padding-left: 20px;
}

.page-game-strategy-slot-secrets__list-item {
  margin-bottom: 10px;
  font-size: 1em;
}

/* FAQ Section */
.page-game-strategy-slot-secrets__faq-list {
  margin-top: 40px;
}

.page-game-strategy-slot-secrets__faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-strategy-slot-secrets__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--background-white);
  color: var(--text-dark);
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-strategy-slot-secrets__faq-question:hover {
  background-color: #f5f5f5;
}

.page-game-strategy-slot-secrets__faq-title {
  margin: 0;
  color: inherit;
}

.page-game-strategy-slot-secrets__faq-title a {
  color: inherit;
  text-decoration: none;
}

.page-game-strategy-slot-secrets__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-game-strategy-slot-secrets__faq-item.active .page-game-strategy-slot-secrets__faq-toggle {
  transform: rotate(45deg);
}

.page-game-strategy-slot-secrets__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #f9f9f9;
  color: var(--text-dark);
}

.page-game-strategy-slot-secrets__faq-item.active .page-game-strategy-slot-secrets__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px;
}

.page-game-strategy-slot-secrets__faq-answer p {
  margin-bottom: 0;
}

.page-game-strategy-slot-secrets__faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* CTA Section */
.page-game-strategy-slot-secrets__cta-content {
  text-align: center;
}

/* Image and Link Styling for Dark Backgrounds */
.page-game-strategy-slot-secrets__dark-bg .page-game-strategy-slot-secrets__section-title,
.page-game-strategy-slot-secrets__dark-bg .page-game-strategy-slot-secrets__paragraph,
.page-game-strategy-slot-secrets__dark-bg .page-game-strategy-slot-secrets__list-item {
  color: var(--text-light);
}

.page-game-strategy-slot-secrets__dark-bg .page-game-strategy-slot-secrets__paragraph a,
.page-game-strategy-slot-secrets__dark-bg .page-game-strategy-slot-secrets__list-item a {
  color: var(--text-light);
  text-decoration: underline;
}

.page-game-strategy-slot-secrets__dark-bg .page-game-strategy-slot-secrets__card {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-strategy-slot-secrets__dark-bg .page-game-strategy-slot-secrets__card-title {
  color: var(--text-light);
}

.page-game-strategy-slot-secrets__dark-bg .page-game-strategy-slot-secrets__card-description a {
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-strategy-slot-secrets__hero-title {
    font-size: 3em;
  }
  .page-game-strategy-slot-secrets__hero-description {
    font-size: 1.1em;
  }
  .page-game-strategy-slot-secrets__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-game-strategy-slot-secrets {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-game-strategy-slot-secrets__hero-section {
    height: 500px;
  }
  .page-game-strategy-slot-secrets__hero-title {
    font-size: 2.2em;
  }
  .page-game-strategy-slot-secrets__hero-description {
    font-size: 1em;
  }
  .page-game-strategy-slot-secrets__section-title {
    font-size: 1.8em;
  }
  .page-game-strategy-slot-secrets__paragraph {
    font-size: 1em;
  }

  .page-game-strategy-slot-secrets__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-game-strategy-slot-secrets__cta-buttons,
  .page-game-strategy-slot-secrets__button-group,
  .page-game-strategy-slot-secrets__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-game-strategy-slot-secrets__card-grid,
  .page-game-strategy-slot-secrets__grid-2-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-game-strategy-slot-secrets__card {
    padding: 20px;
    min-height: auto;
  }
  
  .page-game-strategy-slot-secrets__card-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }

  /* Mobile image adaptation */
  .page-game-strategy-slot-secrets img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-game-strategy-slot-secrets__section,
  .page-game-strategy-slot-secrets__card,
  .page-game-strategy-slot-secrets__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-game-strategy-slot-secrets__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  /* FAQ specific mobile styles */
  .page-game-strategy-slot-secrets__faq-question {
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-game-strategy-slot-secrets__faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-game-strategy-slot-secrets__hero-section {
    height: 400px;
  }
  .page-game-strategy-slot-secrets__hero-title {
    font-size: 1.8em;
  }
  .page-game-strategy-slot-secrets__hero-description {
    font-size: 0.9em;
  }
  .page-game-strategy-slot-secrets__section-title {
    font-size: 1.5em;
  }
  .page-game-strategy-slot-secrets__card-title {
    font-size: 1.3em;
  }
}