/* style/slot-games.css */

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

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

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

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

.page-slot-games__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-slot-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-slot-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Ensure padding doesn't increase width */
  max-width: 100%;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button gradient */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Green from gradient */
  border: 2px solid #2AD16F;
}

.page-slot-games__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  transform: translateY(-3px);
}

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

.page-slot-games__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-slot-games__section-subtitle {
  font-size: 1.8rem;
  color: #2AD16F; /* Green for subtitles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-slot-games__text-block {
  margin-bottom: 30px;
  color: #F2FFF6; /* Main text color */
}

.page-slot-games__text-block p {
  margin-bottom: 15px;
}

.page-slot-games__text-block ul {
  list-style: disc inside;
  padding-left: 20px;
}

.page-slot-games__text-block ol {
  list-style: decimal inside;
  padding-left: 20px;
}

.page-slot-games__text-block li {
  margin-bottom: 8px;
}

/* Divider */
.page-slot-games__divider {
  width: 80px;
  height: 4px;
  background-color: #1E3A2A; /* Divider color */
  margin: 0 auto 60px auto;
  border-radius: 2px;
}

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

.page-slot-games__image-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  color: #F2FFF6;
}

.page-slot-games__image-card:hover {
  transform: translateY(-5px);
}

.page-slot-games__image-card-img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-slot-games__image-card-content {
  padding: 20px;
}

.page-slot-games__image-card-title {
  font-size: 1.4rem;
  color: #2AD16F; /* Green */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games__image-card-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Secondary text */
  margin-bottom: 15px;
}

/* FAQ Section */
.page-slot-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-slot-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-slot-games__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2C14E; /* Gold for questions */
  list-style: none; /* Remove default marker */
}

.page-slot-games__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit */
}

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

.page-slot-games__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #2AD16F; /* Green */
  margin-left: 15px;
}

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

/* Copyright Info */
.page-slot-games__copyright-info {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  color: #A7D9B8;
  background-color: #0A4B2C; /* Deep Green */
  margin-top: 60px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-slot-games__section-title {
    font-size: 2rem;
  }
  .page-slot-games__image-card-img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding: 10px 15px 40px 15px;
  }
  .page-slot-games__section {
    padding: 40px 15px;
  }
  .page-slot-games__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-slot-games__hero-description {
    font-size: 1rem;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__btn {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-slot-games__image-grid {
    grid-template-columns: 1fr;
  }
  .page-slot-games__image-card-img {
    
  }
  .page-slot-games__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-slot-games__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }

  /* Mobile image and video responsive adaptation */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games video,
  .page-slot-games__video {
    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__video-section,
  .page-slot-games__video-container,
  .page-slot-games__video-wrapper,
  .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;
    overflow: hidden !important; /* Ensure no overflow */
  }

  /* Specific padding for video section top (small, not --header-offset) */
  .page-slot-games__video-section {
    padding-top: 10px !important; 
  }

  .page-slot-games__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__hero-title {
    font-size: clamp(1.5rem, 10vw, 2rem);
  }
  .page-slot-games__section-title {
    font-size: 1.8rem;
  }
}