/* style/slot-games.css */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--primary-color, #0A192F); /* Ensure body background is primary color */
}

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

.page-slot-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games__section-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 25px;
  color: var(--secondary-color, #FFD700); /* Gold color for titles */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slot-games__description {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-slot-games__text-block {
  font-size: 17px;
  max-width: 900px;
  margin: 20px auto;
  text-align: left;
  color: #f0f0f0;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, #0A192F 0%, #1a2a47 100%);
  overflow: hidden;
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.page-slot-games__main-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color, #FFD700);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-content .page-slot-games__description {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-slot-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping for buttons */
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-slot-games__btn-primary {
  background: var(--secondary-color, #FFD700);
  color: #0A192F;
}

.page-slot-games__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__btn-secondary {
  background: transparent;
  color: var(--secondary-color, #FFD700);
  border: 2px solid var(--secondary-color, #FFD700);
}

.page-slot-games__btn-secondary:hover {
  background: var(--secondary-color, #FFD700);
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-slot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: brightness(0.7); /* Darken image slightly for text contrast */
}

/* Section Backgrounds */
.page-slot-games__dark-bg {
  background-color: var(--primary-color, #0A192F);
  color: #ffffff;
}

.page-slot-games__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

.page-slot-games__light-bg .page-slot-games__section-title,
.page-slot-games__light-bg .page-slot-games__card-title,
.page-slot-games__light-bg .page-slot-games__feature-title,
.page-slot-games__light-bg .page-slot-games__item-title,
.page-slot-games__light-bg .page-slot-games__step-title,
.page-slot-games__light-bg .page-slot-games__tips-title {
  color: var(--primary-color, #0A192F);
  text-shadow: none;
}

.page-slot-games__light-bg .page-slot-games__description,
.page-slot-games__light-bg .page-slot-games__text-block,
.page-slot-games__light-bg .page-slot-games__card-text,
.page-slot-games__light-bg .page-slot-games__feature-description,
.page-slot-games__light-bg .page-slot-games__item-text,
.page-slot-games__light-bg .page-slot-games__step-text,
.page-slot-games__light-bg .page-slot-games__tips-list {
  color: #333333;
}

.page-slot-games__light-bg .page-slot-games__text-link {
  color: var(--primary-color, #0A192F);
}

.page-slot-games__light-bg .page-slot-games__text-link:hover {
  color: var(--secondary-color, #FFD700);
}

/* Game Types Grid */
.page-slot-games__game-types-grid,
.page-slot-games__features-grid,
.page-slot-games__promo-grid,
.page-slot-games__security-content,
.page-slot-games__support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__game-type-card,
.page-slot-games__promo-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}