/* style/aw8-sports-gameplay-guide.css */

/* Base styles for the page */
.page-aw8-sports-gameplay-guide {
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from body, but explicitly set for scope */
  padding-top: 10px; /* Fixed navbar spacing for main content */
}

.page-aw8-sports-gameplay-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-aw8-sports-gameplay-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-aw8-sports-gameplay-guide__dark-bg {
  background-color: #1A202C;
  color: #ffffff;
}

.page-aw8-sports-gameplay-guide__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

.page-aw8-sports-gameplay-guide__gold-bg {
  background-color: #FFD700;
  color: #1A202C; /* Dark text on gold background for contrast */
}

.page-aw8-sports-gameplay-guide__heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-aw8-sports-gameplay-guide__sub-heading {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-aw8-sports-gameplay-guide__light-bg .page-aw8-sports-gameplay-guide__sub-heading {
  color: #555555;
}

.page-aw8-sports-gameplay-guide__center-text {
  text-align: center;
}

/* Hero Banner */
.page-aw8-sports-gameplay-guide__hero-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1A202C, #000000);
  color: #ffffff;
}

.page-aw8-sports-gameplay-guide__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
}

.page-aw8-sports-gameplay-guide__hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-aw8-sports-gameplay-guide__hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-aw8-sports-gameplay-guide__hero-image {
  width: 100%;
  max-width: 1000px;
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-aw8-sports-gameplay-guide__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Buttons */
.page-aw8-sports-gameplay-guide__btn-primary,
.page-aw8-sports-gameplay-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-aw8-sports-gameplay-guide__btn-primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-aw8-sports-gameplay-guide__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.page-aw8-sports-gameplay-guide__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-aw8-sports-gameplay-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.page-aw8-sports-gameplay-guide__btn-text {
  color: #FFD700;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-aw8-sports-gameplay-guide__btn-text:hover {
  color: #e6c200;
}

.page-aw8-sports-gameplay-guide__button-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px; /* Adjust gap for multiple buttons */
}

/* Grid Features */
.page-aw8-sports-gameplay-guide__grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-aw8-sports-gameplay-guide__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #333333;
}

.page-aw8-sports-gameplay-guide__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-aw8-sports-gameplay-guide__feature-icon {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-aw8-sports-gameplay-guide__card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1A202C;
}

.page-aw8-sports-gameplay-guide__feature-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
}

/* Step by Step Guide */
.page-aw8-sports-gameplay-guide__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-aw8-sports-gameplay-guide__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-aw8-sports-gameplay-guide__step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-aw8-sports-gameplay-guide__step-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-aw8-sports-gameplay-guide__step-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
  flex-grow: 1;
}

/* Bet Types */
.page-aw8-sports-gameplay-guide__grid-bet-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-aw8-sports-gameplay-guide__bet-type-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-aw8-sports-gameplay-guide__bet-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-aw8-sports-gameplay-guide__bet-type-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-aw8-sports-gameplay-guide__bet-type-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

/* Strategies */
.page-aw8-sports-gameplay-guide__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-aw8-sports-gameplay-guide__strategy-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-aw8-sports-gameplay-guide__strategy-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-aw8-sports-gameplay-guide__strategy-icon {
  width: 100%;
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-aw8-sports-gameplay-guide__strategy-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
  flex-grow: 1;
}

/* Safety and Support */
.page-aw8-sports-gameplay-guide__grid-support {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-aw8-sports-gameplay-guide__support-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-aw8-sports-gameplay-guide__support-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-aw8-sports-gameplay-guide__support-icon {
  width: 100%;
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-aw8-sports-gameplay-guide__support-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  flex-grow: 1;
}

/* FAQ Section */
.page-aw8-sports-gameplay-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-aw8-sports-gameplay-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-aw8-sports-gameplay-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #1A202C;
  border: 1px solid #333333;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-aw8-sports-gameplay-guide__faq-question:hover {
  background: #2a313d;
  border-color: #444444;
}

.page-aw8-sports-gameplay-guide__faq-question:active {
  background: #3a414d;
}

.page-aw8-sports-gameplay-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700;
}

.page-aw8-sports-gameplay-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-aw8-sports-gameplay-guide__faq-item.active .page-aw8-sports-gameplay-guide__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-aw8-sports-gameplay-guide__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 20px;
  opacity: 0;
  color: #e0e0e0;
}

.page-aw8-sports-gameplay-guide__faq-item.active .page-aw8-sports-gameplay-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: #1A202C;
  border-radius: 0 0 5px 5px;
  border-left: 1px solid #333333;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-aw8-sports-gameplay-guide__heading {
    font-size: 32px;
  }

  .page-aw8-sports-gameplay-guide__hero-title {
    font-size: 40px;
  }

  .page-aw8-sports-gameplay-guide__hero-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-aw8-sports-gameplay-guide {
    padding-top: 10px; /* Mobile fixed navbar spacing */
  }

  .page-aw8-sports-gameplay-guide__section {
    padding: 40px 0;
  }

  .page-aw8-sports-gameplay-guide__container {
    padding: 0 15px;
  }

  .page-aw8-sports-gameplay-guide__heading {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-aw8-sports-gameplay-guide__sub-heading {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-aw8-sports-gameplay-guide__hero-banner {
    padding: 60px 15px;
  }

  .page-aw8-sports-gameplay-guide__hero-title {
    font-size: 32px;
  }

  .page-aw8-sports-gameplay-guide__hero-description {
    font-size: 16px;
  }

  .page-aw8-sports-gameplay-guide__btn-primary,
  .page-aw8-sports-gameplay-guide__btn-secondary {
    padding: 12px 20px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-aw8-sports-gameplay-guide__button-group {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  .page-aw8-sports-gameplay-guide__btn-secondary {
    margin-left: 0;
  }

  .page-aw8-sports-gameplay-guide__grid-features,
  .page-aw8-sports-gameplay-guide__step-by-step,
  .page-aw8-sports-gameplay-guide__grid-bet-types,
  .page-aw8-sports-gameplay-guide__strategy-grid,
  .page-aw8-sports-gameplay-guide__grid-support {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-aw8-sports-gameplay-guide__feature-card,
  .page-aw8-sports-gameplay-guide__step-card,
  .page-aw8-sports-gameplay-guide__bet-type-card,
  .page-aw8-sports-gameplay-guide__strategy-item,
  .page-aw8-sports-gameplay-guide__support-item {
    padding: 20px;
  }

  .page-aw8-sports-gameplay-guide__card-title {
    font-size: 20px;
  }

  .page-aw8-sports-gameplay-guide__feature-card p,
  .page-aw8-sports-gameplay-guide__step-card p,
  .page-aw8-sports-gameplay-guide__bet-type-card p,
  .page-aw8-sports-gameplay-guide__strategy-item p,
  .page-aw8-sports-gameplay-guide__support-item p {
    font-size: 15px;
  }

  .page-aw8-sports-gameplay-guide__faq-question {
    padding: 15px;
  }

  .page-aw8-sports-gameplay-guide__faq-question h3 {
    font-size: 16px;
  }

  .page-aw8-sports-gameplay-guide__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  .page-aw8-sports-gameplay-guide__faq-item.active .page-aw8-sports-gameplay-guide__faq-answer {
    padding: 15px !important;
  }

  /* Image responsiveness for mobile */
  .page-aw8-sports-gameplay-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-aw8-sports-gameplay-guide__hero-image,
  .page-aw8-sports-gameplay-guide__feature-icon,
  .page-aw8-sports-gameplay-guide__step-image,
  .page-aw8-sports-gameplay-guide__bet-type-image,
  .page-aw8-sports-gameplay-guide__strategy-icon,
  .page-aw8-sports-gameplay-guide__support-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Ensure containers with images/buttons also adapt */
  .page-aw8-sports-gameplay-guide__hero-banner,
  .page-aw8-sports-gameplay-guide__intro,
  .page-aw8-sports-gameplay-guide__how-to-start,
  .page-aw8-sports-gameplay-guide__bet-types,
  .page-aw8-sports-gameplay-guide__strategies,
  .page-aw8-sports-gameplay-guide__safety-support,
  .page-aw8-sports-gameplay-guide__faq-section,
  .page-aw8-sports-gameplay-guide__call-to-action {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-aw8-sports-gameplay-guide__button-group {
    padding-left: 0;
    padding-right: 0;
  }
}