/* style/resources-slot-game-mechanics.css */
.page-resources-slot-game-mechanics {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text on dark background */
  background-color: #0A192F; /* Dark blue background */
  line-height: 1.6;
}

.page-resources-slot-game-mechanics__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-slot-game-mechanics__hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #0A192F 0%, #1a3a6b 100%); /* Dark blue gradient */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-slot-game-mechanics__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-slot-game-mechanics__hero-subtitle {
  font-size: 1.5em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
}

.page-resources-slot-game-mechanics__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.page-resources-slot-game-mechanics__section {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-resources-slot-game-mechanics__section--dark {
  background-color: #1a2f4a; /* Slightly lighter dark blue for contrast */
}

.page-resources-slot-game-mechanics__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.page-resources-slot-game-mechanics__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-slot-game-mechanics__sub-title {
  font-size: 2em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-slot-game-mechanics__text-content {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-slot-game-mechanics__brand {
  color: #FFD700;
  font-weight: bold;
}

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

.page-resources-slot-game-mechanics__feature-item {
  background-color: #1a2f4a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-resources-slot-game-mechanics__feature-item:hover {
  transform: translateY(-10px);
}

.page-resources-slot-game-mechanics__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-slot-game-mechanics__feature-description {
  font-size: 1em;
  color: #E0E0E0;
}

.page-resources-slot-game-mechanics__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-resources-slot-game-mechanics__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-resources-slot-game-mechanics__list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 1.2em;
  line-height: 1;
}

.page-resources-slot-game-mechanics__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-resources-slot-game-mechanics__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #0A192F; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-resources-slot-game-mechanics__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-slot-game-mechanics__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-resources-slot-game-mechanics__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-resources-slot-game-mechanics__image-full-width {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-slot-game-mechanics__image-centered {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-slot-game-mechanics__cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(45deg, #0A192F, #1a3a6b);
  position: relative;
  overflow: hidden;
}

.page-resources-slot-game-mechanics__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-slot-game-mechanics__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-slot-game-mechanics__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-slot-game-mechanics__cta-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: auto;
  opacity: 0.2;
  z-index: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-slot-game-mechanics__hero-title {
    font-size: 3em;
  }
  .page-resources-slot-game-mechanics__hero-subtitle {
    font-size: 1.3em;
  }
  .page-resources-slot-game-mechanics__section-title {
    font-size: 2.2em;
  }
  .page-resources-slot-game-mechanics__sub-title {
    font-size: 1.8em;
  }
  .page-resources-slot-game-mechanics__cta-title {
    font-size: 2.5em;
  }
  .page-resources-slot-game-mechanics__cta-image {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .page-resources-slot-game-mechanics__hero {
    padding: 80px 0;
  }
  .page-resources-slot-game-mechanics__hero-title {
    font-size: 2.5em;
  }
  .page-resources-slot-game-mechanics__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-slot-game-mechanics__section {
    padding: 60px 0;
  }
  .page-resources-slot-game-mechanics__section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }
  .page-resources-slot-game-mechanics__sub-title {
    font-size: 1.6em;
  }
  .page-resources-slot-game-mechanics__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-slot-game-mechanics__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-slot-game-mechanics__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-resources-slot-game-mechanics__cta-title {
    font-size: 2em;
  }
  .page-resources-slot-game-mechanics__cta-description {
    font-size: 1em;
  }
  .page-resources-slot-game-mechanics__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-slot-game-mechanics__cta-image {
    width: 60%;
    position: static;
    margin-top: 40px;
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .page-resources-slot-game-mechanics__hero-title {
    font-size: 2em;
  }
  .page-resources-slot-game-mechanics__hero-subtitle {
    font-size: 0.9em;
  }
  .page-resources-slot-game-mechanics__section-title {
    font-size: 1.8em;
  }
  .page-resources-slot-game-mechanics__sub-title {
    font-size: 1.4em;
  }
  .page-resources-slot-game-mechanics__text-content, .page-resources-slot-game-mechanics__feature-description, .page-resources-slot-game-mechanics__list li {
    font-size: 0.95em;
  }
  .page-resources-slot-game-mechanics__btn {
    width: 100%;
  }
  .page-resources-slot-game-mechanics__cta-title {
    font-size: 1.8em;
  }
  .page-resources-slot-game-mechanics__cta-description {
    font-size: 0.9em;
  }
}