/* style/slot-game-types.css */
.page-slot-game-types {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--color-deep-navy);
}

.page-slot-game-types__dark-section {
  background-color: var(--color-deep-navy);
  color: var(--text-main);
}

.page-slot-game-types__light-bg {
  background-color: #10233F; /* Card B G */
  color: var(--text-main);
}

.page-slot-game-types__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px;
  overflow: hidden;
}

.page-slot-game-types__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-slot-game-types__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-slot-game-types__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-slot-game-types__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-slot-game-types__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-game-types__description-text {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-game-types__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-slot-game-types__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-game-types__content-section {
  padding: 80px 20px;
  border-bottom: 1px solid var(--divider);
}

.page-slot-game-types__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-slot-game-types__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-slot-game-types__text-block p {
  font-size: 17px;
  margin-bottom: 15px;
  color: var(--text-secondary);
  text-align: justify;
}

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

.page-slot-game-types__card {
  background: var(--card-b-g);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-game-types__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.page-slot-game-types__card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--divider);
}

.page-slot-game-types__card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 15px;
}

.page-slot-game-types__card p {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: justify;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-slot-game-types__card-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--glow);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-slot-game-types__card-button:hover {
  background: #3a8fe6;
  transform: translateY(-2px);
}

.page-slot-game-types__feature-list, .page-slot-game-types__guide-list, .page-slot-game-types__strategy-list, .page-slot-game-types__promotion-list, .page-slot-game-types__safety-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-slot-game-types__feature-list li, .page-slot-game-types__guide-list li, .page-slot-game-types__strategy-list li, .page-slot-game-types__promotion-list li, .page-slot-game-types__safety-list li {
  background: var(--card-b-g);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 17px;
  color: var(--text-secondary);
  border-left: 5px solid var(--glow);
  transition: transform 0.2s ease;
}

.page-slot-game-types__feature-list li:hover, .page-slot-game-types__guide-list li:hover, .page-slot-game-types__strategy-list li:hover, .page-slot-game-types__promotion-list li:hover, .page-slot-game-types__safety-list li:hover {
  transform: translateX(5px);
}

.page-slot-game-types__feature-list li strong, .page-slot-game-types__guide-list li strong, .page-slot-game-types__strategy-list li strong, .page-slot-game-types__promotion-list li strong, .page-slot-game-types__safety-list li strong {
  color: var(--text-main);
}

.page-slot-game-types__faq-section {
  padding: 80px 20px;
}

.page-slot-game-types__faq-list {
  margin-top: 40px;
}

details.page-slot-game-types__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-b-g);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

details.page-slot-game-types__faq-item summary.page-slot-game-types__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-slot-game-types__faq-item summary.page-slot-game-types__faq-question::-webkit-details-marker {
  display: none;
}

details.page-slot-game-types__faq-item summary.page-slot-game-types__faq-question:hover {
  background: #152A4A;
}

.page-slot-game-types__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}

.page-slot-game-types__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--glow);
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-slot-game-types__faq-item .page-slot-game-types__faq-answer {
  padding: 0 25px 20px;
  background: #152A4A; /* Slightly lighter than card bg */
  border-radius: 0 0 10px 10px;
  font-size: 16px;
  color: var(--text-secondary);
  text-align: justify;
}

.page-slot-game-types__cta-section {
  padding: 80px 20px;
  text-align: center;
}

.page-slot-game-types__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: none;
}

.page-slot-game-types__btn-secondary {
  background: var(--card-b-g);
  color: var(--glow);
  border: 2px solid var(--glow);
}

.page-slot-game-types__btn-secondary:hover {
  background: var(--glow);
  color: #ffffff;
}

.page-slot-game-types__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-slot-game-types__hero-image img {
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-slot-game-types__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-slot-game-types__hero-image img {
    border-radius: 4px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-slot-game-types__main-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 15px;
  }

  .page-slot-game-types__description-text {
    font-size: clamp(15px, 3vw, 18px);
    margin-bottom: 20px;
  }

  .page-slot-game-types__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-game-types__content-section {
    padding: 50px 15px;
  }

  .page-slot-game-types__section-title {
    font-size: clamp(22px, 5vw, 32px);
    margin-bottom: 30px;
  }

  .page-slot-game-types__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-game-types__card {
    padding: 20px;
  }

  .page-slot-game-types__card img {
    height: 200px;
  }

  .page-slot-game-types__card-title {
    font-size: 20px;
  }

  .page-slot-game-types__card p {
    font-size: 15px;
  }

  .page-slot-game-types__feature-list li, .page-slot-game-types__guide-list li, .page-slot-game-types__strategy-list li, .page-slot-game-types__promotion-list li, .page-slot-game-types__safety-list li {
    padding: 15px;
    font-size: 15px;
  }

  details.page-slot-game-types__faq-item summary.page-slot-game-types__faq-question {
    padding: 15px;
  }

  .page-slot-game-types__faq-qtext {
    font-size: 16px;
  }

  .page-slot-game-types__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
    width: 25px;
  }

  details.page-slot-game-types__faq-item .page-slot-game-types__faq-answer {
    padding: 0 15px 15px;
    font-size: 15px;
  }

  .page-slot-game-types__button-group {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-game-types__cta-button, .page-slot-game-types__btn-primary, .page-slot-game-types__btn-secondary, .page-slot-game-types a[class*="button"], .page-slot-game-types a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-game-types__container, .page-slot-game-types__hero-section, .page-slot-game-types__content-section, .page-slot-game-types__features-section, .page-slot-game-types__faq-section, .page-slot-game-types__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-game-types img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}