.page-slot-games {
  font-family: 'Arial', sans-serif;
  background-color: #140C0C; /* Custom Background */
  color: #FFF1E8; /* Custom Text Main */
  line-height: 1.6;
}

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

.page-slot-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F3C54D; /* Custom Gold */
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-slot-games__text-content {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background: linear-gradient(180deg, #C61F1F 0%, #E53030 100%); /* Primary/Secondary gradient for hero background */
}

.page-slot-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width on desktop for flex */
}

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

.page-slot-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid #F3C54D; /* Gold border */
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-slot-games__main-title {
  font-size: clamp(32px, 5vw, 54px);
  color: #FFF1E8; /* Custom Text Main */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__description {
  font-size: 20px;
  color: #FFF1E8;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Custom Button */
  color: #140C0C; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: none;
}

.page-slot-games__cta-button:hover {
  background: linear-gradient(180deg, #FFC570 0%, #E57D2C 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.page-slot-games__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Custom Button */
  color: #140C0C; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 6px;
  font-size: 17px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #FFC570 0%, #E57D2C 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #F3C54D; /* Custom Gold */
  border: 2px solid #F3C54D;
  text-decoration: none;
  border-radius: 6px;
  font-size: 17px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-slot-games__btn-secondary:hover {
  background: rgba(243, 197, 77, 0.1);
  color: #FFB04A;
  border-color: #FFB04A;
  transform: translateY(-2px);
}

.page-slot-games__image-wrapper {
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid #6A1E1E; /* Custom Border */
}

.page-slot-games__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-slot-games__card {
  background-color: #2A1212; /* Custom Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  text-align: left;
  border: 1px solid #6A1E1E; /* Custom Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF1E8; /* Custom Text Main */
}

.page-slot-games__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.page-slot-games__card-title {
  font-size: 22px;
  color: #F3C54D; /* Custom Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games__card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #FFF1E8;
}

.page-slot-games__ordered-list, .page-slot-games__unordered-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-slot-games__ordered-list li, .page-slot-games__unordered-list li {
  background-color: #2A1212; /* Custom Card BG */
  border: 1px solid #6A1E1E; /* Custom Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  color: #FFF1E8;
}

.page-slot-games__list-title {
  font-size: 20px;
  color: #F3C54D; /* Custom Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games__ordered-list p, .page-slot-games__unordered-list p {
  font-size: 16px;
  line-height: 1.6;
  color: #FFF1E8;
}

.page-slot-games__ordered-list a, .page-slot-games__unordered-list a {
  color: #FFB04A;
  text-decoration: none;
  font-weight: bold;
}

.page-slot-games__ordered-list a:hover, .page-slot-games__unordered-list a:hover {
  text-decoration: underline;
}

.page-slot-games__dark-section {
  background-color: #0d0707; /* Slightly darker than main background for contrast */
  color: #FFF1E8;
}

.page-slot-games__faq-section {
  padding-bottom: 80px;
}

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

details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #6A1E1E; /* Custom Border */
  overflow: hidden;
  background: #2A1212; /* Custom Card BG */
  color: #FFF1E8;
}

details.page-slot-games__faq-item summary.page-slot-games__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;
  font-weight: bold;
  color: #F3C54D; /* Custom Gold */
}

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

details.page-slot-games__faq-item summary.page-slot-games__faq-question:hover {
  background: #3a1c1c; /* Slightly lighter hover for dark background */
}

.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}

.page-slot-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F3C54D; /* Custom Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 25px 25px;
  background: #1A0F0F; /* Slightly different dark background for answer */
  border-radius: 0 0 8px 8px;
  text-align: left;
  color: #FFF1E8;
  font-size: 16px;
}

.page-slot-games__faq-answer p {
  margin: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-slot-games__hero-image img {
    border-radius: 6px;
  }

  .page-slot-games__main-title {
    font-size: clamp(28px, 4.5vw, 48px);
  }

  .page-slot-games__description {
    font-size: 18px;
  }

  .page-slot-games__section-title {
    font-size: clamp(24px, 3.5vw, 38px);
  }

  .page-slot-games__text-content {
    font-size: 17px;
  }

  .page-slot-games__card {
    padding: 25px;
  }

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

  .page-slot-games__card-text {
    font-size: 15px;
  }

  .page-slot-games__ordered-list li, .page-slot-games__unordered-list li {
    padding: 20px;
  }

  .page-slot-games__list-title {
    font-size: 18px;
  }

  .page-slot-games__ordered-list p, .page-slot-games__unordered-list p {
    font-size: 15px;
  }
}

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

  .page-slot-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__hero-image img {
    border-radius: 4px;
  }

  .page-slot-games__main-title {
    font-size: clamp(24px, 7vw, 40px);
    margin-bottom: 15px;
  }

  .page-slot-games__description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-slot-games__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-games__btn-primary,
  .page-slot-games__btn-secondary {
    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;
    margin-top: 15px;
  }

  .page-slot-games__section {
    padding: 40px 0;
  }

  .page-slot-games__section-title {
    font-size: clamp(20px, 6vw, 32px);
    margin-bottom: 25px;
  }

  .page-slot-games__text-content {
    font-size: 16px;
    padding: 0 15px;
  }

  .page-slot-games__image-wrapper {
    margin: 30px auto;
    border-radius: 8px;
  }

  .page-slot-games__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-slot-games__card {
    padding: 20px;
  }

  .page-slot-games__card-title {
    font-size: 18px;
  }

  .page-slot-games__card-text {
    font-size: 14px;
  }

  .page-slot-games__ordered-list,
  .page-slot-games__unordered-list {
    margin: 30px auto;
    padding: 0 15px;
  }

  .page-slot-games__ordered-list li, .page-slot-games__unordered-list li {
    padding: 15px;
    margin-bottom: 15px;
  }

  .page-slot-games__list-title {
    font-size: 17px;
  }

  .page-slot-games__ordered-list p, .page-slot-games__unordered-list p {
    font-size: 14px;
  }

  details.page-slot-games__faq-item summary.page-slot-games__faq-question {
    padding: 15px 20px;
  }

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

  .page-slot-games__faq-toggle {
    font-size: 24px;
    width: 25px;
  }

  details.page-slot-games__faq-item .page-slot-games__faq-answer {
    padding: 0 20px 20px;
  }

  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__cta-buttons,
  .page-slot-games__button-group,
  .page-slot-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__introduction-section .page-slot-games__container,
  .page-slot-games__types-section .page-slot-games__container,
  .page-slot-games__guide-section .page-slot-games__container,
  .page-slot-games__promotions-section .page-slot-games__container,
  .page-slot-games__safety-section .page-slot-games__container,
  .page-slot-games__faq-section .page-slot-games__container {
    padding-left: 0;
    padding-right: 0;
  }
}