/* style/slot-games.css */

/* --- General Styles (for .page-slot-games scope) --- */
.page-slot-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark background */
  background: var(--dark-bg-1); /* Inherited from shared.css */
}

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

.page-slot-games__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Primary brand color for titles */
  line-height: 1.3;
}

.page-slot-games__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0; /* Slightly off-white for better readability */
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-small {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box; /* Include padding/border in width */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
}

.page-slot-games__btn-primary {
  background: #FFD700; /* Primary brand color */
  color: #8B0000; /* Auxiliary brand color for text */
  border: 2px solid #FFD700;
}

.page-slot-games__btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  color: #8B0000;
}

.page-slot-games__btn-secondary {
  background: transparent;
  color: #FFD700; /* Primary brand color for text */
  border: 2px solid #FFD700;
}