/* style/game-strategies-slot-machine.css */
.page-game-strategies-slot-machine {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text */
  background-color: #1A1A1A; /* Dark background */
  line-height: 1.6;
}

.page-game-strategies-slot-machine .highlight {
  color: #FFD700; /* Gold highlight */
}

.page-game-strategies-slot-machine__hero {
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Burgundy to Gold gradient */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-strategies-slot-machine__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-game-strategies-slot-machine__hero-title {
  font-size: 3.5em;
  color: #FFFFFF; /* White for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-strategies-slot-machine__hero-description {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 30px;
}

.page-game-strategies-slot-machine__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-game-strategies-slot-machine__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-game-strategies-slot-machine__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Burgundy text */
}

.page-game-strategies-slot-machine__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-strategies-slot-machine__btn--secondary {
  background-color: #8B0000; /* Burgundy button */
  color: #FFFFFF; /* White text */
  border: 2px solid #FFD700;
}

.page-game-strategies-slot-machine__btn--secondary:hover {
  background-color: #6a0000;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-strategies-slot-machine__hero-image-container {
  margin-top: 40px;
  width: 100%;
  max-width: 800px;
  position: relative;
  z-index: 0;
}

.page-game-strategies-slot-machine__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-game-strategies-slot-machine__section {
  padding: 60px 20px;
  background-color: #242424;
  margin-bottom: 0;
}

.page-game-strategies-slot-machine__section--dark {
  background-color: #1A1A1A;
}

.page-game-strategies-slot-machine__section--conclusion {
  background: linear-gradient(45deg, #8B0000, #FFD700);
  text-align: center;
  padding: 80px 20px;
}

.page-game-strategies-slot-machine__container {
  max-width: 1100px;
  margin: 0 auto;
}

.page-game-strategies-slot-machine__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-game-strategies-slot-machine__subsection-title {
  font-size: 1.8em;
  color: #FFFFFF; /* White for sub-titles */
  margin-top: 35px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-game-strategies-slot-machine p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-game-strategies-slot-machine strong {
  color: #FFD700;
}

.page-game-strategies-slot-machine__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-game-strategies-slot-machine__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-game-strategies-slot-machine__list li::before {
  content: '⚡'; /* Lightning bolt icon */
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.page-game-strategies-slot-machine__list-ordered {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-game-strategies-slot-machine__list-ordered li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-game-strategies-slot-machine__image-inline {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-strategies-slot-machine__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-strategies-slot-machine__card {
  background-color: #333333;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-strategies-slot-machine__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-strategies-slot-machine__card-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-game-strategies-slot-machine__card-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-strategies-slot-machine__card p {
  font-size: 0.95em;
  color: #CCCCCC;
}

.page-game-strategies-slot-machine__call-to-action-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  color: #F0F0F0;
}

.page-game-strategies-slot-machine__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-strategies-slot-machine__text-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-game-strategies-slot-machine__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-strategies-slot-machine__hero {
    padding: 60px 15px;
  }

  .page-game-strategies-slot-machine__hero-title {
    font-size: 2.5em;
  }

  .page-game-strategies-slot-machine__hero-description {
    font-size: 1.1em;
  }

  .page-game-strategies-slot-machine__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-strategies-slot-machine__btn {
    width: 80%;
    max-width: 300px;
  }

  .page-game-strategies-slot-machine__section-title {
    font-size: 2em;
  }

  .page-game-strategies-slot-machine__subsection-title {
    font-size: 1.5em;
  }

  .page-game-strategies-slot-machine p,
  .page-game-strategies-slot-machine__list li,
  .page-game-strategies-slot-machine__list-ordered li {
    font-size: 1em;
  }

  .page-game-strategies-slot-machine__grid-2-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-game-strategies-slot-machine__hero-title {
    font-size: 2em;
  }

  .page-game-strategies-slot-machine__section-title {
    font-size: 1.8em;
  }

  .page-game-strategies-slot-machine__subsection-title {
    font-size: 1.3em;
  }

  .page-game-strategies-slot-machine__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
}