/* style/game-reviews-slot-game-a.css */

:root {
  --page-game-reviews-slot-game-a-primary-color: #007BFF;
  --page-game-reviews-slot-game-a-secondary-color: #FFD700;
  --page-game-reviews-slot-game-a-text-color-dark: #333333;
  --page-game-reviews-slot-game-a-text-color-light: #ffffff;
  --page-game-reviews-slot-game-a-bg-light: #f8f9fa;
  --page-game-reviews-slot-game-a-bg-dark: #0056b3;
  --page-game-reviews-slot-game-a-highlight-text: #FFD700;
}

.page-game-reviews-slot-game-a {
  font-family: 'Arial', sans-serif;
  color: var(--page-game-reviews-slot-game-a-text-color-dark);
  line-height: 1.6;
}

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

.page-game-reviews-slot-game-a__hero {
  background: linear-gradient(135deg, var(--page-game-reviews-slot-game-a-primary-color), #0056b3);
  color: var(--page-game-reviews-slot-game-a-text-color-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-slot-game-a__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-reviews-slot-game-a__hero > * {
  position: relative;
  z-index: 1;
}

.page-game-reviews-slot-game-a__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--page-game-reviews-slot-game-a-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-slot-game-a__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-slot-game-a__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-reviews-slot-game-a__btn--primary {
  background-color: var(--page-game-reviews-slot-game-a-secondary-color);
  color: var(--page-game-reviews-slot-game-a-text-color-dark);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-slot-game-a__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-reviews-slot-game-a__btn--secondary {
  background-color: var(--page-game-reviews-slot-game-a-primary-color);
  color: var(--page-game-reviews-slot-game-a-text-color-light);
  border: 2px solid var(--page-game-reviews-slot-game-a-secondary-color);
  margin-left: 20px;
}

.page-game-reviews-slot-game-a__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-reviews-slot-game-a__section {
  padding: 60px 0;
}

.page-game-reviews-slot-game-a__section:nth-of-type(even) {
  background-color: var(--page-game-reviews-slot-game-a-bg-light);
}

.page-game-reviews-slot-game-a__section-title {
  font-size: 2.5em;
  color: var(--page-game-reviews-slot-game-a-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-reviews-slot-game-a__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-game-reviews-slot-game-a-secondary-color);
  border-radius: 2px;
}

.page-game-reviews-slot-game-a__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-game-reviews-slot-game-a__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-game-reviews-slot-game-a__text-content {
  flex: 1;
}

.page-game-reviews-slot-game-a__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-game-reviews-slot-game-a__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-slot-game-a__feature-list,
.page-game-reviews-slot-game-a__step-list,
.page-game-reviews-slot-game-a__tip-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-slot-game-a__feature-list li,
.page-game-reviews-slot-game-a__step-list li,
.page-game-reviews-slot-game-a__tip-list li {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-game-reviews-slot-game-a__feature-list li:hover,
.page-game-reviews-slot-game-a__step-list li:hover,
.page-game-reviews-slot-game-a__tip-list li:hover {
  transform: translateY(-5px);
}

.page-game-reviews-slot-game-a__feature-list h3,
.page-game-reviews-slot-game-a__step-list h3 {
  color: var(--page-game-reviews-slot-game-a-primary-color);
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-game-reviews-slot-game-a__step-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  counter-reset: step-counter;
}

.page-game-reviews-slot-game-a__step-list li {
  position: relative;
  padding-left: 60px;
}

.page-game-reviews-slot-game-a__step-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 30px;
  width: 40px;
  height: 40px;
  background-color: var(--page-game-reviews-slot-game-a-secondary-color);
  color: var(--page-game-reviews-slot-game-a-text-color-dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-slot-game-a__cta-group {
  text-align: center;
  margin-top: 50px;
}

.page-game-reviews-slot-game-a__cta-group .page-game-reviews-slot-game-a__btn:first-child {
  margin-left: 0;
}

.page-game-reviews-slot-game-a__tip-list {
  grid-template-columns: 1fr;
}

.page-game-reviews-slot-game-a__tip-list li strong {
  color: var(--page-game-reviews-slot-game-a-primary-color);
}

.page-game-reviews-slot-game-a__advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-game-reviews-slot-game-a__advantage-list li {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-reviews-slot-game-a__advantage-list li:hover {
  transform: translateY(-5px);
}

.page-game-reviews-slot-game-a__advantage-list .page-game-reviews-slot-game-a__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-game-reviews-slot-game-a__advantage-list h3 {
  color: var(--page-game-reviews-slot-game-a-primary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-game-reviews-slot-game-a__conclusion .page-game-reviews-slot-game-a__btn {
  margin-top: 30px;
}

.page-game-reviews-slot-game-a .highlight-text {
  color: var(--page-game-reviews-slot-game-a-primary-color);
  font-weight: bold;
}

.page-game-reviews-slot-game-a a {
  color: var(--page-game-reviews-slot-game-a-primary-color);
  text-decoration: none;
}

.page-game-reviews-slot-game-a a:hover {
  text-decoration: underline;
}

/* Floating CTA */
.page-game-reviews-slot-game-a__floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: var(--page-game-reviews-slot-game-a-primary-color);
  color: var(--page-game-reviews-slot-game-a-text-color-light);
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 20px;
  animation: slideIn 0.5s ease-out forwards;
}

.page-game-reviews-slot-game-a__floating-cta-content p {
  margin: 0;
  font-size: 1.1em;
  font-weight: 500;
}

.page-game-reviews-slot-game-a__btn--floating {
  background-color: var(--page-game-reviews-slot-game-a-secondary-color);
  color: var(--page-game-reviews-slot-game-a-text-color-dark);
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  box-shadow: none;
}

.page-game-reviews-slot-game-a__btn--floating:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

@keyframes slideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews-slot-game-a__title {
    font-size: 2.8em;
  }
  .page-game-reviews-slot-game-a__subtitle {
    font-size: 1.2em;
  }
  .page-game-reviews-slot-game-a__section-title {
    font-size: 2em;
  }
  .page-game-reviews-slot-game-a__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-game-reviews-slot-game-a__content-wrapper--reverse {
    flex-direction: column-reverse;
  }
  .page-game-reviews-slot-game-a__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-game-reviews-slot-game-a__cta-group .page-game-reviews-slot-game-a__btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-slot-game-a__hero {
    padding: 80px 0;
  }
  .page-game-reviews-slot-game-a__title {
    font-size: 2.2em;
  }
  .page-game-reviews-slot-game-a__subtitle {
    font-size: 1em;
  }
  .page-game-reviews-slot-game-a__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-slot-game-a__feature-list,
  .page-game-reviews-slot-game-a__step-list,
  .page-game-reviews-slot-game-a__advantage-list {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-slot-game-a__floating-cta {
    bottom: 10px;
    right: 10px;
    padding: 10px 15px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .page-game-reviews-slot-game-a__floating-cta-content p {
    font-size: 0.9em;
  }
  .page-game-reviews-slot-game-a__btn--floating {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-slot-game-a__hero {
    padding: 60px 0;
  }
  .page-game-reviews-slot-game-a__title {
    font-size: 1.8em;
  }
  .page-game-reviews-slot-game-a__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-game-reviews-slot-game-a__section {
    padding: 40px 0;
  }
  .page-game-reviews-slot-game-a__section-title {
    font-size: 1.5em;
  }
  .page-game-reviews-slot-game-a__floating-cta {
    width: calc(100% - 20px);
    left: 10px;
    right: 10px;
    flex-direction: column;
    align-items: stretch;
  }
}