:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0a0a0a;
  --card-background-light: #ffffff;
  --card-background-dark: rgba(255, 255, 255, 0.08);
  --border-color: #e0e0e0;
}

/* Base styles for the page content, considering body background is #0a0a0a (dark) */
.page-slot-games-new-slots {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Default light text for dark body background */
  line-height: 1.6;
  background-color: var(--background-dark); /* Ensure main content respects body background */
}

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

/* --- Section Styling --- */
.page-slot-games-new-slots__hero-section {
  position: relative;
  width: 100%;
  padding: 100px 20px 60px; /* Adjusted padding-top for fixed header (desktop) */
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-slot-games-new-slots__intro-section,
.page-slot-games-new-slots__game-types-section,
.page-slot-games-new-slots__tips-section,
.page-slot-games-new-slots__conclusion-section {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 60px 0;
  box-sizing: border-box;
}

.page-slot-games-new-slots__why-choose-section,
.page-slot-games-new-slots__featured-games-section,
.page-slot-games-new-slots__bonuses-section,
.page-slot-games-new-slots__security-section {
  background-color: var(--card-background-light);
  color: var(--text-dark);
  padding: 60px 0;
  box-sizing: border-box;
}

.page-slot-games-new-slots__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from parent section */
}

.page-slot-games-new-slots__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games-new-slots__subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-new-slots__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games-new-slots__text-block strong {
  color: var(--primary-color);
}

.page-slot-games-new-slots__note {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
  font-size: 15px;
  opacity: 0.9;
}

/* --- Buttons --- */
.page-slot-games-new-slots__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-slot-games-new-slots__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-slot-games-new-slots__btn-primary,
.page-slot-games-new-slots__btn-secondary,
.page-slot-games-new-slots__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-new-slots__btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-slot-games-new-slots__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-slot-games-new-slots__btn-secondary {
  background: var(--card-background-light);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-slot-games-new-slots__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-slot-games-new-slots__btn-small {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  background: var(--primary-color);
  color: var(--text-light);
  box-shadow: none;
}

.page-slot-games-new-slots__btn-small:hover {
  background: #e6c200;
  transform: translateY(-1px);
}

/* --- Images --- */
.page-slot-games-new-slots__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-slot-games-new-slots__feature-icon,
.page-slot-games-new-slots__game-image,
.page-slot-games-new-slots__promo-image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-slot-games-new-slots__feature-card {
  background: var(--card-background-light);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-color);
}

.page-slot-games-new-slots__feature-icon {
  width: 120px; /* Increased size for icons */
  height: 120px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: contain;
}

.page-slot-games-new-slots__feature-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-slot-games-new-slots__feature-description {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

/* --- Lists --- */
.page-slot-games-new-slots__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-slot-games-new-slots__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-top: 30px;
}

.page-slot-games-new-slots__list-item {
  background: var(--card-background-dark);
  color: var(--text-light);
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games-new-slots__list-item p {
  margin-bottom: 0;
}

.page-slot-games-new-slots__list-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* --- Game Cards Grid --- */
.page-slot-games-new-slots__game-cards-grid,
.page-slot-games-new-slots__promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-new-slots__game-card,
.page-slot-games-new-slots__promo-card {
  background: var(--card-background-light);
  color: var(--text-dark);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-slot-games-new-slots__game-image,
.page-slot-games-new-slots__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-slot-games-new-slots__game-title,
.page-slot-games-new-slots__promo-title {
  font-size: 22px;
  font-weight: bold;
  margin: 20px 15px 10px;
  color: var(--secondary-color);
}

.page-slot-games-new-slots__game-title a,
.page-slot-games-new-slots__promo-title a {
  color: inherit;
  text-decoration: none;
}

.page-slot-games-new-slots__game-title a:hover,
.page-slot-games-new-slots__promo-title a:hover {
  text-decoration: underline;
}

.page-slot-games-new-slots__game-description,
.page-slot-games-new-slots__promo-description {
  font-size: 15px;
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-slot-games-new-slots__game-card .page-slot-games-new-slots__btn-small,
.page-slot-games-new-slots__promo-card .page-slot-games-new-slots__btn-small {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-slot-games-new-slots__main-title {
    font-size: 40px;
  }

  .page-slot-games-new-slots__section-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  /* General mobile padding */
  .page-slot-games-new-slots__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Adjust hero section padding for mobile fixed header */
  .page-slot-games-new-slots__hero-section {
    padding: 80px 15px 40px !important; /* Mobile padding-top */
    box-sizing: border-box !important;
  }

  .page-slot-games-new-slots__intro-section,
  .page-slot-games-new-slots__game-types-section,
  .page-slot-games-new-slots__tips-section,
  .page-slot-games-new-slots__conclusion-section,
  .page-slot-games-new-slots__why-choose-section,
  .page-slot-games-new-slots__featured-games-section,
  .page-slot-games-new-slots__bonuses-section,
  .page-slot-games-new-slots__security-section {
    padding: 40px 0 !important;
    box-sizing: border-box !important;
  }

  .page-slot-games-new-slots__main-title {
    font-size: 32px;
  }

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

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

  .page-slot-games-new-slots__text-block {
    font-size: 16px;
  }

  /* Button responsiveness */
  .page-slot-games-new-slots__cta-group {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games-new-slots__btn-primary,
  .page-slot-games-new-slots__btn-secondary,
  .page-slot-games-new-slots__btn-small {
    padding: 12px 25px !important;
    font-size: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Image responsiveness */
  .page-slot-games-new-slots img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-slot-games-new-slots__hero-image {
    border-radius: 8px;
  }

  .page-slot-games-new-slots__feature-icon {
    width: 90px;
    height: 90px;
  }

  .page-slot-games-new-slots__game-image,
  .page-slot-games-new-slots__promo-image {
    height: 180px; /* Slightly reduce height for mobile */
  }

  /* Grid layouts for mobile */
  .page-slot-games-new-slots__features-grid,
  .page-slot-games-new-slots__game-cards-grid,
  .page-slot-games-new-slots__promo-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games-new-slots__feature-card,
  .page-slot-games-new-slots__game-card,
  .page-slot-games-new-slots__promo-card {
    padding: 25px !important;
  }

  .page-slot-games-new-slots__feature-title,
  .page-slot-games-new-slots__list-title,
  .page-slot-games-new-slots__game-title,
  .page-slot-games-new-slots__promo-title {
    font-size: 20px;
  }

  .page-slot-games-new-slots__list-item {
    padding: 20px !important;
    border-left-width: 3px;
  }

  .page-slot-games-new-slots__ordered-list {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .page-slot-games-new-slots__main-title {
    font-size: 28px;
  }

  .page-slot-games-new-slots__subtitle {
    font-size: 16px;
  }

  .page-slot-games-new-slots__section-title {
    font-size: 22px;
  }

  .page-slot-games-new-slots__btn-primary,
  .page-slot-games-new-slots__btn-secondary {
    font-size: 15px !important;
    padding: 10px 20px !important;
  }

  .page-slot-games-new-slots__feature-title,
  .page-slot-games-new-slots__list-title,
  .page-slot-games-new-slots__game-title,
  .page-slot-games-new-slots__promo-title {
    font-size: 18px;
  }
}