/* style/slot-games.css */

/* Base styles for the page content */
.page-slot-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: var(--secondary-color, #FFFFFF);
}

.page-slot-games__highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Sections */
.page-slot-games__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  background-color: #FFFFFF;
}

.page-slot-games__dark-section {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-slot-games__dark-section .page-slot-games__highlight {
  color: #FFFFFF;
}

.page-slot-games__light-bg {
  background-color: #F8F8F8;
  color: #333333;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom */
  overflow: hidden;
  box-sizing: border-box;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-slot-games__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-slot-games__subtitle {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

/* Titles */
.page-slot-games__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
}

.page-slot-games__dark-section .page-slot-games__section-title {
  color: #FFFFFF;
}

.page-slot-games__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-slot-games__dark-section .page-slot-games__sub-title {
  color: #FFFFFF;
}

/* Text blocks */
.page-slot-games__text-block {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.7;
}

/* Images */
.page-slot-games__image-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 30px auto;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-slot-games__content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Lists */
.page-slot-games__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-slot-games__numbered-list {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-slot-games__list-item {
  margin-bottom: 10px;
  font-size: 1.0em;
}

/* Buttons */
.page-slot-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-slot-games__btn-primary:hover {
  background-color: #1a7bb0;
  border-color: #1a7bb0;
}

.page-slot-games__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-slot-games__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a7bb0;
  border-color: #1a7bb0;
}

.page-slot-games__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-slot-games__text-link:hover {
  color: #1a7bb0;
}

/* FAQ Section */
.page-slot-games__faq-section {
  background-color: #F8F8F8;
}

.page-slot-games__faq-list {
  margin-top: 30px;
}

.page-slot-games__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__faq-item summary {
  list-style: none;
  padding: 20px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333333;
}

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

.page-slot-games__faq-qtext {
  flex-grow: 1;
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #26A9E0;
}

.page-slot-games__faq-answer {
  padding: 0 20px 20px;
  color: #555555;
}

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

/* Floating Buttons */
.page-slot-games__floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.0em;
  text-decoration: none;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
  max-width: calc(50% - 15px); /* Ensure space for two buttons */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games__floating-btn--register {
  background-color: #26A9E0;
  right: calc(20px + 120px + 10px); /* Adjust for login button width + gap */
}

.page-slot-games__floating-btn--register:hover {
  background-color: #1a7bb0;
}

.page-slot-games__floating-btn--login {
  background-color: #EA7C07; /* Login custom color */
}

.page-slot-games__floating-btn--login:hover {
  background-color: #c96800;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__main-title {
    font-size: 2.8em;
  }

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

  .page-slot-games__sub-title {
    font-size: 1.5em;
  }

  .page-slot-games__hero-section {
    padding: 10px 15px 40px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding: 10px 15px 30px;
  }

  .page-slot-games__section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games__main-title {
    font-size: 2em;
  }

  .page-slot-games__subtitle {
    font-size: 1em;
  }

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

  .page-slot-games__sub-title {
    font-size: 1.3em;
  }

  .page-slot-games__text-block, .page-slot-games__list-item {
    font-size: 0.95em;
  }

  /* Images responsive */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  /* Buttons responsive */
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 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: 12px 20px;
  }

  /* Floating buttons responsive */
  .page-slot-games__floating-btn {
    font-size: 0.9em;
    padding: 10px 15px;
    bottom: 15px;
    max-width: calc(50% - 10px);
  }

  .page-slot-games__floating-btn--register {
    right: calc(15px + 100px + 10px); /* Adjust for login button width + gap on mobile */
  }

  .page-slot-games__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

  .page-slot-games__faq-answer {
    padding: 0 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__main-title {
    font-size: 1.8em;
  }

  .page-slot-games__section-title {
    font-size: 1.5em;
  }

  .page-slot-games__sub-title {
    font-size: 1.2em;
  }

  .page-slot-games__cta-buttons {
    gap: 10px;
  }

  .page-slot-games__floating-btn--register {
    right: calc(10px + 90px + 5px); /* Further adjust for smaller screens */
  }
  .page-slot-games__floating-btn {
    right: 10px;
    bottom: 10px;
    padding: 8px 12px;
    font-size: 0.85em;
    max-width: calc(50% - 7px);
  }
  .page-slot-games__floating-btn--register {
    right: calc(10px + 80px + 5px);
  }
  .page-slot-games__floating-btn--login {
    width: 80px;
  }
  .page-slot-games__floating-btn--register {
    width: 80px;
  }
}