/* style/game-types-slot-games.css */

.page-game-types-slot-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-game-types-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-types-slot-games__hero-section {
  background: linear-gradient(135deg, #4A2780, #6c3da8);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-types-slot-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:slot_pattern,abstract,geometric]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-types-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.page-game-types-slot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-game-types-slot-games__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.page-game-types-slot-games__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #4A2780;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-game-types-slot-games__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-types-slot-games__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-game-types-slot-games__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #4A2780;
}

.page-game-types-slot-games__section-title {
  font-size: 2.5em;
  color: #4A2780;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-types-slot-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-types-slot-games__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  color: #555;
  margin-bottom: 50px;
}

.page-game-types-slot-games__intro-section,
.page-game-types-slot-games__game-types-section,
.page-game-types-slot-games__guide-section,
.page-game-types-slot-games__tips-section,
.page-game-types-slot-games__download-app-section,
.page-game-types-slot-games__faq-section {
  padding: 60px 0;
}

.page-game-types-slot-games__intro-section {
  background-color: #f9f9f9;
}

.page-game-types-slot-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-game-types-slot-games__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-slot-games__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-game-types-slot-games__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(74, 39, 128, 0.5));
}

.page-game-types-slot-games__feature-title {
  font-size: 1.5em;
  color: #4A2780;
  margin-bottom: 15px;
}

.page-game-types-slot-games__feature-text {
  color: #666;
}

.page-game-types-slot-games__game-types-section {
  background-color: #f0f2f5;
}

.page-game-types-slot-games__types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-game-types-slot-games__type-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-slot-games__type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-game-types-slot-games__type-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-game-types-slot-games__type-title {
  font-size: 1.6em;
  color: #4A2780;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-game-types-slot-games__type-description {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-game-types-slot-games__type-button {
  display: inline-block;
  background-color: #4A2780;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-types-slot-games__type-button:hover {
  background-color: #6c3da8;
}

.page-game-types-slot-games__guide-section {
  background-color: #fff;
}

.page-game-types-slot-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  counter-reset: step-counter;
}

.page-game-types-slot-games__step-item {
  background-color: #fefefe;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  border-left: 5px solid #FFD700;
}

.page-game-types-slot-games__step-item::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #FFD700;
  color: #4A2780;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9em;
}

.page-game-types-slot-games__step-title {
  font-size: 1.4em;
  color: #4A2780;
  margin-bottom: 10px;
  margin-top: 15px;
}

.page-game-types-slot-games__step-item p {
  color: #666;
}

.page-game-types-slot-games__inline-button {
  color: #4A2780;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #FFD700;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-game-types-slot-games__inline-button:hover {
  color: #FFD700;
  border-color: #4A2780;
}

.page-game-types-slot-games__guide-footer {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #777;
}

.page-game-types-slot-games__tips-section {
  background-color: #f0f2f5;
}

.page-game-types-slot-games__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-game-types-slot-games__tips-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #4A2780;
}

.page-game-types-slot-games__tip-title {
  font-size: 1.3em;
  color: #4A2780;
  margin-bottom: 10px;
}

.page-game-types-slot-games__tips-list li p {
  color: #666;
}

.page-game-types-slot-games__cta-button--wide {
  width: fit-content;
  margin: 0 auto;
  display: block;
}

.page-game-types-slot-games__download-app-section {
  text-align: center;
  padding: 80px 0;
  background-color: #4A2780;
  color: #fff;
}

.page-game-types-slot-games__download-app-section .page-game-types-slot-games__section-title {
  color: #FFD700;
}

.page-game-types-slot-games__download-app-section .page-game-types-slot-games__section-title::after {
  background-color: #FFD700;
}

.page-game-types-slot-games__download-app-section .page-game-types-slot-games__section-subtitle {
  color: #eee;
}

.page-game-types-slot-games__download-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-game-types-slot-games__download-button {
  display: flex;
  align-items: center;
  background-color: #FFD700;
  color: #4A2780;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-types-slot-games__download-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-types-slot-games__download-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.page-game-types-slot-games__app-mockup {
  max-width: 400px;
  width: 100%;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-game-types-slot-games__faq-section {
  background-color: #fff;
}

.page-game-types-slot-games__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-types-slot-games__accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.page-game-types-slot-games__accordion-header {
  background-color: #f7f7f7;
  color: #4A2780;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-game-types-slot-games__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-types-slot-games__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-types-slot-games__accordion-header:hover {
  background-color: #ececec;
}

.page-game-types-slot-games__accordion-content {
  padding: 0 25px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-game-types-slot-games__accordion-content p {
  padding-bottom: 20px;
  color: #555;
}

.page-game-types-slot-games__accordion-content a {
  color: #4A2780;
  text-decoration: underline;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-types-slot-games__hero-title {
    font-size: 2.5em;
  }

  .page-game-types-slot-games__hero-description {
    font-size: 1.1em;
  }

  .page-game-types-slot-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-types-slot-games__section-title {
    font-size: 2em;
  }

  .page-game-types-slot-games__features-grid,
  .page-game-types-slot-games__types-grid,
  .page-game-types-slot-games__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-game-types-slot-games__download-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-game-types-slot-games__hero-title {
    font-size: 2em;
  }

  .page-game-types-slot-games__hero-description {
    font-size: 1em;
  }

  .page-game-types-slot-games__hero-cta-group {
    flex-direction: column;
  }

  .page-game-types-slot-games__cta-button {
    width: 100%;
    max-width: 250px;
  }

  .page-game-types-slot-games__section-title {
    font-size: 1.8em;
  }

  .page-game-types-slot-games__download-button {
    width: 100%;
    max-width: 250px;
  }
}