/* style/slot-games.css */

/* Base styles for page-slot-games */
.page-slot-games {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-slot-games__hero-media {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-slot-games__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly with image for visual flow */
  position: relative;
  z-index: 1;
  background-color: rgba(8, 22, 15, 0.9); /* Semi-transparent background for readability */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2C14E; /* Gold */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-slot-games__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* Section common styles */
.page-slot-games__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-slot-games__text-block {
  font-size: 1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games__text-block--tip {
  font-style: italic;
  color: #A7D9B8;
}

.page-slot-games__text-block--comparison {
  margin-top: 30px;
  text-align: center;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  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, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
  transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2C14E; /* Gold */
  border: 2px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__btn-secondary:hover {
  background: #1E3A2A; /* Divider */
  color: #F2FFF6; /* Text Main */
  border-color: #57E38D; /* Glow */
  transform: translateY(-2px);
}

.page-slot-games__cta-center {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Highlight text */
.page-slot-games__highlight {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

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

.page-slot-games__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #1E3A2A; /* Divider */
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px #57E38D; /* Glow */
}

.page-slot-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games__card-title {
  font-size: 1.3rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games__card-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-slot-games__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #1E3A2A; /* Divider */
}

.page-slot-games__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #13994A; /* Darker green from button gradient */
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 0 15px rgba(34, 199, 104, 0.5);
}

.page-slot-games__step-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games__step-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Benefits Section */
.page-slot-games__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__benefit-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #1E3A2A; /* Divider */
}

.page-slot-games__benefit-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-slot-games__benefit-title {
  font-size: 1.25rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games__benefit-text {
  font-size: 0.9rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Comparison Table */
.page-slot-games__comparison-table {
  margin-top: 40px;
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto; /* For mobile responsiveness */
  display: block; /* To make overflow-x work */
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-slot-games__table-header,
.page-slot-games__table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.page-slot-games__table-header {
  background-color: #13994A; /* From button gradient */
  font-weight: bold;
  color: #ffffff;
  border-bottom: 2px solid #2E7A4E; /* Border */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.page-slot-games__table-row:nth-child(even) {
  background-color: #0A4B2C; /* Deep Green */
}

.page-slot-games__table-row:nth-child(odd) {
  background-color: #11271B; /* Card BG */
}

.page-slot-games__table-cell {
  padding: 15px 20px;
  border-right: 1px solid #1E3A2A; /* Divider */
  color: #F2FFF6; /* Text Main */
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.page-slot-games__table-cell:last-child {
  border-right: none;
}

.page-slot-games__table-row:last-child .page-slot-games__table-cell {
  border-bottom: none;
}

/* FAQ Section */
.page-slot-games__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-slot-games__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  border: 1px solid #1E3A2A; /* Divider */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  background-color: #11271B;
}

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

.page-slot-games__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

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

.page-slot-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  content: '−';
}

.page-slot-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

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

.page-slot-games__faq-answer .page-slot-games__link {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-slot-games__faq-answer .page-slot-games__link:hover {
  color: #F2C14E; /* Gold */
}

/* Darker sections */
.page-slot-games__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 0;
}

.page-slot-games__benefits-section {
  padding: 60px 0;
}

.page-slot-games__link {
  color: #57E38D;
  text-decoration: none;
}

.page-slot-games__link:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-slot-games__main-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

  .page-slot-games__section-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  }

  .page-slot-games__card-image {
    height: 180px;
  }
}

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

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

  /* Hero Section */
  .page-slot-games__hero-section {
    padding-bottom: 40px;
  }

  .page-slot-games__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
    border-radius: 5px;
  }

  .page-slot-games__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    margin-bottom: 15px;
  }

  .page-slot-games__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  /* Buttons mobile adaptation */
  .page-slot-games__cta-buttons,
  .page-slot-games__cta-center {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Section titles */
  .page-slot-games__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  /* Text blocks */
  .page-slot-games__text-block {
    font-size: 0.95rem;
  }

  /* Grid layouts */
  .page-slot-games__grid,
  .page-slot-games__steps-grid,
  .page-slot-games__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__card,
  .page-slot-games__step-card,
  .page-slot-games__benefit-item {
    padding: 20px;
  }

  .page-slot-games__card-image,
  .page-slot-games__benefit-icon {
    height: auto !important;
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
  }

  /* Comparison Table */
  .page-slot-games__comparison-table {
    width: 100% !important;
    overflow-x: auto !important;
    display: block;
    border-radius: 5px;
  }

  .page-slot-games__table-header,
  .page-slot-games__table-row {
    grid-template-columns: 1fr; /* Stack columns on mobile */
    border-bottom: 1px solid #1E3A2A;
  }

  .page-slot-games__table-cell {
    border-right: none;
    border-bottom: 1px solid #1E3A2A;
    padding: 10px 15px;
  }
  .page-slot-games__table-row:last-child .page-slot-games__table-cell:last-child {
    border-bottom: none;
  }
  .page-slot-games__table-header .page-slot-games__table-cell:last-child {
    border-bottom: 1px solid #1E3A2A;
  }

  /* FAQ Section */
  .page-slot-games__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-slot-games__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  /* Darker sections padding */
  .page-slot-games__dark-section,
  .page-slot-games__benefits-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-slot-games__hero-content {
    margin-top: -20px;
    padding: 20px 10px;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
  }
  .page-slot-games__hero-description {
    font-size: 0.9rem;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    font-size: 0.95rem;
    padding: 10px 15px;
  }
  .page-slot-games__section-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
  .page-slot-games__card-title {
    font-size: 1.2rem;
  }
  .page-slot-games__step-title {
    font-size: 1.3rem;
  }
  .page-slot-games__faq-question {
    font-size: 0.95rem;
  }
}