/* style/game-strategies.css */

/* Base styles for the page-game-strategies class */
.page-game-strategies {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #000000; /* Ensure consistency with body background */
}

/* General section styling */
.page-game-strategies__section {
  padding: 60px 20px;
  text-align: center;
}

.page-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-game-strategies__section-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-game-strategies__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-game-strategies__text-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
}

.page-game-strategies__text-link:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-game-strategies__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  color: #ffffff;
}

.page-game-strategies__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px; /* Space between image and content */
}

.page-game-strategies__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-game-strategies__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

.page-game-strategies__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-strategies__lead-text {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Call to action buttons */
.page-game-strategies__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-game-strategies__btn-primary,
.page-game-strategies__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-strategies__btn-primary {
  background: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

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

.page-game-strategies__btn-secondary {
  background: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #FFFFFF;
}

.page-game-strategies__btn-secondary:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Introduction Section */
.page-game-strategies__introduction-section {
  background-color: #000000;
  color: #f0f0f0;
}

/* Strategy Guide Section */
.page-game-strategies__strategy-guide {
  background-color: #000000;
  color: #f0f0f0;
}

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

.page-game-strategies__card {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  color: #f0f0f0;
}

.page-game-strategies__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-game-strategies__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-game-strategies__card-text {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-game-strategies__callout {
  background: #26A9E0;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-game-strategies__callout-text {
  font-size: 1.2em;
  font-weight: 600;
}

/* Game Tips Section (Bắn Cá) */
.page-game-strategies__game-tips {
  background-color: #0d0d0d; /* Slightly different dark bg */
  color: #f0f0f0;
}

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

.page-game-strategies__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #f0f0f0;
}

.page-game-strategies__feature-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.page-game-strategies__feature-content {
  flex-grow: 1;
}

.page-game-strategies__feature-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-game-strategies__feature-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Casino Tips Section */
.page-game-strategies__casino-tips {
  background-color: #000000;
  color: #f0f0f0;
}

.page-game-strategies__content-block {
  text-align: left;
  margin-top: 30px;
}

.page-game-strategies__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-game-strategies__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-game-strategies__list-item::before {
  content: '▶';
  color: #26A9E0;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-game-strategies__list-item strong {
  color: #FFFFFF;
}

.page-game-strategies__content-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Slot Tips Section */
.page-game-strategies__slot-tips {
  background-color: #0d0d0d;
  color: #f0f0f0;
}

.page-game-strategies__ordered-list {
  list-style: decimal;
  padding-left: 25px;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-game-strategies__ordered-list .page-game-strategies__list-item {
  padding-left: 0;
  margin-bottom: 10px;
}

.page-game-strategies__ordered-list .page-game-strategies__list-item::before {
  content: none;
}

/* Cockfighting Tips Section */
.page-game-strategies__cockfighting-tips {
  background-color: #000000;
  color: #f0f0f0;
}

/* Responsible Gaming Section */
.page-game-strategies__responsible-gaming {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-game-strategies__responsible-gaming .page-game-strategies__section-title {
  color: #FFFFFF;
}

.page-game-strategies__responsible-gaming .page-game-strategies__text-block {
  color: #f0f0f0;
}

.page-game-strategies__info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-strategies__info-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  height: 100%;
  box-sizing: border-box;
}

.page-game-strategies__info-card-title {
  font-size: 1.4em;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-game-strategies__info-card-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* FAQ Section */
.page-game-strategies__faq-section {
  background-color: #000000;
  color: #f0f0f0;
}

.page-game-strategies__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-game-strategies__faq-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #f0f0f0;
}

.page-game-strategies__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: 600;
  color: #26A9E0;
  background: rgba(255, 255, 255, 0.05);
}

.page-game-strategies__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-game-strategies__faq-qtext {
  flex-grow: 1;
  color: #f0f0f0;
}

.page-game-strategies__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-game-strategies__faq-item[open] .page-game-strategies__faq-toggle {
  content: '−';
}

.page-game-strategies__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-game-strategies__faq-answer-text {
  margin: 0;
}

/* Final CTA Section */
.page-game-strategies__cta-final {
  background-color: #0d0d0d;
  color: #f0f0f0;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-strategies__section-title {
    font-size: 2.2em;
  }

  .page-game-strategies__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-game-strategies__lead-text {
    font-size: 1.1em;
  }

  .page-game-strategies__card-title,
  .page-game-strategies__feature-title,
  .page-game-strategies__info-card-title {
    font-size: 1.3em;
  }
}

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

  .page-game-strategies__section {
    padding: 40px 15px;
  }

  .page-game-strategies__section-title {
    font-size: 2em;
    margin-bottom: 25px;
  }

  .page-game-strategies__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-game-strategies__lead-text {
    font-size: 1em;
  }

  .page-game-strategies__hero-section {
    padding-top: 10px !important;
    min-height: auto;
  }

  .page-game-strategies__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-game-strategies__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-strategies__btn-primary,
  .page-game-strategies__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-game-strategies__card-grid,
  .page-game-strategies__feature-list,
  .page-game-strategies__info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-game-strategies__card,
  .page-game-strategies__feature-item,
  .page-game-strategies__info-card {
    padding: 20px;
  }

  .page-game-strategies__feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-game-strategies__feature-icon {
    margin-bottom: 15px;
  }

  .page-game-strategies__content-image {
    margin-top: 20px;
  }

  .page-game-strategies__list-item,
  .page-game-strategies__ordered-list .page-game-strategies__list-item {
    font-size: 1em;
    padding-left: 25px;
  }

  .page-game-strategies__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-game-strategies__faq-answer {
    padding: 10px 20px 15px;
  }

  /* Force images to be responsive */
  .page-game-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-game-strategies__section,
  .page-game-strategies__card,
  .page-game-strategies__container,
  .page-game-strategies__hero-section,
  .page-game-strategies__hero-image-wrapper,
  .page-game-strategies__hero-content,
  .page-game-strategies__callout,
  .page-game-strategies__feature-item,
  .page-game-strategies__info-card,
  .page-game-strategies__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Specific adjustment for hero section padding on mobile */
  .page-game-strategies__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-game-strategies__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}