:root {
  --bg-main: #08160F;
  --card-bg: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-slot-games-new-releases {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-slot-games-new-releases__section {
  padding: 60px 0;
}

.page-slot-games-new-releases__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-slot-games-new-releases__text-block {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-secondary);
}

.page-slot-games-new-releases__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
  height: 100%;
}

.page-slot-games-new-releases__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow);
}

.page-slot-games-new-releases__card-title {
  font-size: 24px;
  color: var(--text-main);
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games-new-releases__card-title a {
  color: var(--text-main);
  text-decoration: none;
}

.page-slot-games-new-releases__card-title a:hover {
  color: var(--glow);
}

.page-slot-games-new-releases__card-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.page-slot-games-new-releases__btn-primary,
.page-slot-games-new-releases__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-new-releases__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games-new-releases__btn-secondary {
  background-color: transparent;
  color: var(--glow);
  border: 2px solid var(--glow);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games-new-releases__btn-secondary:hover {
  background-color: var(--glow);
  color: var(--deep-green);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-slot-games-new-releases__btn-small {
  padding: 10px 20px;
  font-size: 16px;
  margin-top: auto; /* Push button to bottom of card */
}

/* Hero Section */
.page-slot-games-new-releases__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px; /* Small decorative padding, body handles header offset */
  padding-bottom: 60px;
}

.page-slot-games-new-releases__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 600px; /* Limit hero image height */
}

.page-slot-games-new-releases__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px 0;
}

.page-slot-games-new-releases__main-title {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-slot-games-new-releases__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.5;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.page-slot-games-new-releases__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

.page-slot-games-new-releases__feature-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

/* Game List Section */
.page-slot-games-new-releases__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-slot-games-new-releases__game-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

/* Benefits Section */
.page-slot-games-new-releases__benefits-section {
  background-color: var(--deep-green);
  padding: 80px 0;
}

.page-slot-games-new-releases__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-slot-games-new-releases__benefit-item {
  text-align: center;
  padding: 20px;
  background-color: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 12px;
  border: 1px solid var(--border);
}

.page-slot-games-new-releases__benefit-title {
  font-size: 22px;
  color: var(--glow);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games-new-releases__benefit-description {
  font-size: 16px;
  color: var(--text-secondary);
}

.page-slot-games-new-releases__benefits-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  max-width: 800px;
  min-width: 200px;
  min-height: 200px;
}

/* Guide Section */
.page-slot-games-new-releases__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-slot-games-new-releases__guide-step {
  align-items: flex-start;
  text-align: left;
}

/* FAQ Section */
.page-slot-games-new-releases__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-slot-games-new-releases__faq-item {
  text-align: left;
  padding: 20px 25px;
  cursor: pointer;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.page-slot-games-new-releases__faq-item:hover {
  background-color: #1a3528;
}

.page-slot-games-new-releases__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--text-main);
  padding-right: 10px;
  list-style: none;
}

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

.page-slot-games-new-releases__faq-toggle {
  font-size: 28px;
  line-height: 1;
  color: var(--glow);
  margin-left: 15px;
  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 {
  font-size: 16px;
  color: var(--text-secondary);
  padding-top: 15px;
  line-height: 1.7;
}

.page-slot-games-new-releases__faq-item:not([open]) .page-slot-games-new-releases__faq-answer {
  display: none;
}

/* Conclusion Section */
.page-slot-games-new-releases__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-slot-games-new-releases {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-slot-games-new-releases__section {
    padding: 40px 0;
  }

  .page-slot-games-new-releases__container {
    padding: 0 15px;
  }

  .page-slot-games-new-releases__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-slot-games-new-releases__hero-content {
    padding: 20px 15px 0;
  }

  .page-slot-games-new-releases__main-title {
    font-size: 36px;
  }

  .page-slot-games-new-releases__hero-description {
    font-size: 18px;
  }

  .page-slot-games-new-releases__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-new-releases__btn-primary,
  .page-slot-games-new-releases__btn-secondary,
  .page-slot-games-new-releases a[class*="button"],
  .page-slot-games-new-releases a[class*="btn"] {
    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-new-releases__card {
    padding: 20px;
  }

  .page-slot-games-new-releases__card-title {
    font-size: 20px;
  }

  .page-slot-games-new-releases__card-description {
    font-size: 15px;
  }

  .page-slot-games-new-releases img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-new-releases__hero-image,
  .page-slot-games-new-releases__feature-image,
  .page-slot-games-new-releases__game-image,
  .page-slot-games-new-releases__benefits-image {
    min-width: unset !important;
    min-height: unset !important;
  }

  .page-slot-games-new-releases__section,
  .page-slot-games-new-releases__card,
  .page-slot-games-new-releases__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-new-releases__faq-question {
    font-size: 18px;
  }

  .page-slot-games-new-releases__faq-answer {
    font-size: 15px;
  }

  .page-slot-games-new-releases__hero-section {
    padding-top: 10px !important;
  }

  .page-slot-games-new-releases__dark-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-new-releases__benefits-image {
    padding-left: 0;
    padding-right: 0;
  }
}