/* style/slot-games-new-releases.css */
.page-slot-games-new-releases {
  background-color: #08160F; /* Nền chính */
  color: #F2FFF6; /* Màu chữ chính */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-slot-games-new-releases__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Nhỏ để tránh đè body padding-top */
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

.page-slot-games-new-releases__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
  z-index: 1;
  margin-bottom: 40px;
}

.page-slot-games-new-releases__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-slot-games-new-releases__hero-title {
  color: #F2FFF6;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games-new-releases__hero-description {
  color: #A7D9B8;
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-new-releases__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styles */
.page-slot-games-new-releases__section {
  padding: 60px 0;
}

.page-slot-games-new-releases__section-title {
  color: #F2FFF6;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-slot-games-new-releases__section-intro {
  color: #A7D9B8;
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Card Styles */
.page-slot-games-new-releases__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #F2FFF6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-new-releases__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D;
}

/* Feature Grid */
.page-slot-games-new-releases__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slot-games-new-releases__feature-title {
  color: #F2FFF6;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-slot-games-new-releases__feature-text {
  color: #A7D9B8;
  font-size: 1rem;
}

/* Game Grid */
.page-slot-games-new-releases__game-category {
  margin-bottom: 50px;
}

.page-slot-games-new-releases__category-title {
  color: #F2FFF6;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
}

.page-slot-games-new-releases__category-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #13994A, #2AD16F);
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.page-slot-games-new-releases__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slot-games-new-releases__game-card {
  padding: 20px;
  text-align: center;
  background-color: #11271B;
}

.page-slot-games-new-releases__game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-slot-games-new-releases__game-image {
  width: 100%;
  height: 200px; /* Display height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #2E7A4E;
}

.page-slot-games-new-releases__game-name {
  color: #F2FFF6;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-slot-games-new-releases__game-description {
  color: #A7D9B8;
  font-size: 0.95rem;
}

/* How-to-Start Steps */
.page-slot-games-new-releases__step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-slot-games-new-releases__step-item {
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-slot-games-new-releases__step-number {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid #08160F; /* Match body background */
  box-shadow: 0 0 0 5px #2E7A4E;
}

.page-slot-games-new-releases__step-title {
  color: #F2FFF6;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.page-slot-games-new-releases__step-text {
  color: #A7D9B8;
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Promotions */
.page-slot-games-new-releases__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slot-games-new-releases__promo-title {
  color: #F2FFF6;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-slot-games-new-releases__promo-text {
  color: #A7D9B8;
  font-size: 1rem;
}

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

.page-slot-games-new-releases__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-slot-games-new-releases__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #1a3528; /* Slightly lighter for contrast */
  color: #F2FFF6;
  user-select: none;
  list-style: none;
}

.page-slot-games-new-releases__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games-new-releases__faq-qtext {
  flex-grow: 1;
}

.page-slot-games-new-releases__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D;
  transition: transform 0.3s ease;
}

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

.page-slot-games-new-releases__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8;
}

/* Buttons */
.page-slot-games-new-releases__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-new-releases__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-slot-games-new-releases__btn--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D;
}

.page-slot-games-new-releases__btn--secondary {
  background-color: transparent;
  color: #57E38D;
  border: 2px solid #57E38D;
}

.page-slot-games-new-releases__btn--secondary:hover {
  background-color: #57E38D;
  color: #08160F;
}

.page-slot-games-new-releases__cta-buttons--center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.page-slot-games-new-releases__text-link {
  color: #57E38D;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-slot-games-new-releases__text-link:hover {
  color: #2AD16F;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games-new-releases__hero-section {
    padding-bottom: 40px;
  }
  .page-slot-games-new-releases__hero-image {
    margin-bottom: 30px;
  }
  .page-slot-games-new-releases__section {
    padding: 40px 0;
  }
  .page-slot-games-new-releases__section-title {
    margin-bottom: 15px;
  }
  .page-slot-games-new-releases__section-intro {
    margin-bottom: 30px;
  }
  .page-slot-games-new-releases__game-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-slot-games-new-releases__hero-section {
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games-new-releases__hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .page-slot-games-new-releases__hero-description {
    font-size: 1rem;
  }
  .page-slot-games-new-releases__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games-new-releases__btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-slot-games-new-releases__cta-buttons--center {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-slot-games-new-releases__container {
    padding: 0 15px;
  }
  .page-slot-games-new-releases__section {
    padding: 30px 0;
  }
  .page-slot-games-new-releases__section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-slot-games-new-releases__section-intro {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .page-slot-games-new-releases__feature-grid, 
  .page-slot-games-new-releases__game-grid, 
  .page-slot-games-new-releases__step-grid, 
  .page-slot-games-new-releases__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games-new-releases__game-image {
    height: 160px;
  }
  .page-slot-games-new-releases__game-card, .page-slot-games-new-releases__feature-item, .page-slot-games-new-releases__step-item, .page-slot-games-new-releases__promo-card {
    padding: 20px;
  }
  .page-slot-games-new-releases__step-item {
    padding-top: 50px;
  }
  .page-slot-games-new-releases__step-number {
    top: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .page-slot-games-new-releases__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-slot-games-new-releases__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.9rem;
  }
  .page-slot-games-new-releases img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games-new-releases__section,
  .page-slot-games-new-releases__card,
  .page-slot-games-new-releases__container,
  .page-slot-games-new-releases__hero-section,
  .page-slot-games-new-releases__hero-cta-buttons,
  .page-slot-games-new-releases__cta-buttons--center,
  .page-slot-games-new-releases__game-card,
  .page-slot-games-new-releases__feature-item,
  .page-slot-games-new-releases__step-item,
  .page-slot-games-new-releases__promo-card
  {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }
  .page-slot-games-new-releases__video-section {
    padding-top: 10px !important;
  }
}