/* style/slot-games.css */

/* Variables for colors */
:root {
  --page-slot-games-primary-color: #FF8C1A;
  --page-slot-games-secondary-color: #FFA53A;
  --page-slot-games-card-bg: #17191F;
  --page-slot-games-background: #0D0E12;
  --page-slot-games-text-main: #FFF3E6;
  --page-slot-games-border-color: #A84F0C;
  --page-slot-games-glow-color: #FFB04D;
  --page-slot-games-deep-orange: #D96800;
}

.page-slot-games {
  color: var(--page-slot-games-text-main);
  background-color: var(--page-slot-games-background);
  font-family: Arial, sans-serif;
}

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

.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: var(--page-slot-games-background);
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.page-slot-games__hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%; /* Ensure content takes full width within max-width */
  z-index: 1;
}

.page-slot-games__main-title {
  color: var(--page-slot-games-glow-color);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
}

.page-slot-games__intro-text {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--page-slot-games-text-main);
}

.page-slot-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, var(--page-slot-games-secondary-color) 0%, var(--page-slot-games-deep-orange) 100%);
  color: var(--page-slot-games-text-main);
  border: 2px solid var(--page-slot-games-primary-color);
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, var(--page-slot-games-primary-color) 0%, var(--page-slot-games-deep-orange) 100%);
  box-shadow: 0 0 15px var(--page-slot-games-glow-color);
}

.page-slot-games__btn-secondary {
  background: transparent;
  color: var(--page-slot-games-secondary-color);
  border: 2px solid var(--page-slot-games-secondary-color);
}

.page-slot-games__btn-secondary:hover {
  background: var(--page-slot-games-secondary-color);
  color: var(--page-slot-games-background);
}

.page-slot-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--page-slot-games-glow-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-slot-games__section-description {
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--page-slot-games-text-main);
}

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

.page-slot-games__feature-card,
.page-slot-games__step-card,
.page-slot-games__game-type-card {
  background-color: var(--page-slot-games-card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-slot-games-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--page-slot-games-text-main);
}

.page-slot-games__feature-card:hover,
.page-slot-games__step-card:hover,
.page-slot-games__game-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 176, 77, 0.2);
}

.page-slot-games__feature-icon,
.page-slot-games__game-image {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin: 0 auto 20px;
  border-radius: 8px;
  display: block;
}

.page-slot-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, var(--page-slot-games-secondary-color) 0%, var(--page-slot-games-deep-orange) 100%);
  color: var(--page-slot-games-text-main);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  border: 2px solid var(--page-slot-games-primary-color);
}

.page-slot-games__card-title {
  font-size: 1.5rem;
  color: var(--page-slot-games-secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--page-slot-games-text-main);
}

.page-slot-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

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

.page-slot-games__list-item {
  background-color: var(--page-slot-games-card-bg);
  border-left: 5px solid var(--page-slot-games-primary-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  line-height: 1.7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: var(--page-slot-games-text-main);
}

.page-slot-games__list-item strong {
  color: var(--page-slot-games-secondary-color);
}

.page-slot-games__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-slot-games__faq-item {
  background-color: var(--page-slot-games-card-bg);
  border: 1px solid var(--page-slot-games-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-slot-games-text-main);
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15rem;
  color: var(--page-slot-games-secondary-color);
  background-color: rgba(255, 140, 26, 0.1);
}

.page-slot-games__faq-item summary {
  list-style: none;
}

.page-slot-games__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-slot-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--page-slot-games-glow-color);
  transition: transform 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--page-slot-games-text-main);
}

.page-slot-games__cta-final-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slot-games__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-slot-games__hero-image {
    border-radius: 8px;
  }
  .page-slot-games__main-title {
    margin-bottom: 15px;
  }
  .page-slot-games__intro-text {
    margin-bottom: 25px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    padding: 12px 25px;
  }
  .page-slot-games__section-title {
    margin-bottom: 15px;
  }
  .page-slot-games__section-description {
    margin-bottom: 30px;
  }
  .page-slot-games__feature-card,
  .page-slot-games__step-card,
  .page-slot-games__game-type-card {
    padding: 25px;
  }
  .page-slot-games__card-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .page-slot-games__section {
    padding: 40px 15px;
  }
  .page-slot-games__hero-section {
    padding: 10px 15px 40px;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-slot-games__intro-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 20px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-slot-games__btn-primary:hover,
  .page-slot-games__btn-secondary:hover {
    transform: none;
  }
  .page-slot-games__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .page-slot-games__section-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .page-slot-games__features-grid,
  .page-slot-games__steps-grid,
  .page-slot-games__game-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__feature-card,
  .page-slot-games__step-card,
  .page-slot-games__game-type-card {
    padding: 20px;
  }
  .page-slot-games__card-title {
    font-size: 1.3rem;
  }
  .page-slot-games__card-text {
    font-size: 0.95rem;
  }
  .page-slot-games__feature-icon,
  .page-slot-games__game-image {
    max-width: 200px;
  }
  .page-slot-games__list-item {
    font-size: 1rem;
    padding: 15px;
  }
  .page-slot-games__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-slot-games__faq-answer {
    font-size: 0.95rem;
    padding: 0 15px 15px;
  }
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__hero-image-wrapper,
  .page-slot-games__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-slot-games__cta-final-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__section {
    padding: 30px 10px;
  }
  .page-slot-games__hero-section {
    padding: 10px 10px 30px;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .page-slot-games__intro-text {
    font-size: 0.9rem;
  }
  .page-slot-games__section-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  .page-slot-games__section-description {
    font-size: 0.9rem;
  }
  .page-slot-games__feature-card,
  .page-slot-games__step-card,
  .page-slot-games__game-type-card {
    padding: 15px;
  }
  .page-slot-games__card-title {
    font-size: 1.2rem;
  }
  .page-slot-games__card-text {
    font-size: 0.85rem;
  }
  .page-slot-games__list-item {
    font-size: 0.9rem;
  }
  .page-slot-games__faq-question {
    font-size: 0.95rem;
  }
  .page-slot-games__faq-answer {
    font-size: 0.9rem;
  }
}