/* style/game-guides-slots-basics.css */
.page-game-guides-slots-basics {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

.page-game-guides-slots-basics__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-slots-basics__hero {
  background: linear-gradient(135deg, #003366 0%, #0a4f91 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-slots-basics__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 204, 0, 0.1) 0%, rgba(0, 51, 102, 0) 70%);
  opacity: 0.3;
  animation: page-game-guides-slots-basics__hero-glow 15s infinite alternate;
}

@keyframes page-game-guides-slots-basics__hero-glow {
  0% { transform: scale(0.8) rotate(0deg); opacity: 0.2; }
  100% { transform: scale(1.2) rotate(360deg); opacity: 0.4; }
}

.page-game-guides-slots-basics__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-game-guides-slots-basics__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-game-guides-slots-basics__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.page-game-guides-slots-basics__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-game-guides-slots-basics__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides-slots-basics__section:nth-child(even) {
  background-color: #fcfcfc;
}

.page-game-guides-slots-basics__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-guides-slots-basics__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-game-guides-slots-basics__subsection-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFCC00;
  padding-left: 15px;
}

.page-game-guides-slots-basics p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555;
}

.page-game-guides-slots-basics ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #555;
}

.page-game-guides-slots-basics ul li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-game-guides-slots-basics ul li strong {
  color: #003366;
}

.page-game-guides-slots-basics__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides-slots-basics__cta-button--bottom {
  margin-top: 40px;
  text-align: center;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-guides-slots-basics__hero-title {
    font-size: 2.5em;
  }
  .page-game-guides-slots-basics__hero-description {
    font-size: 1em;
  }
  .page-game-guides-slots-basics__section-title {
    font-size: 2em;
  }
  .page-game-guides-slots-basics__subsection-title {
    font-size: 1.5em;
  }
  .page-game-guides-slots-basics p {
    font-size: 1em;
  }
  .page-game-guides-slots-basics__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-game-guides-slots-basics__hero-title {
    font-size: 2em;
  }
  .page-game-guides-slots-basics__hero-description {
    font-size: 0.9em;
  }
  .page-game-guides-slots-basics__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-slots-basics__subsection-title {
    font-size: 1.3em;
  }
  .page-game-guides-slots-basics p {
    font-size: 0.9em;
  }
  .page-game-guides-slots-basics__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}