/* style/game-center-slot-games.css */

/* Base styles for the page content */
.page-game-center-slot-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f8f8f8;
  line-height: 1.6;
}

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

.page-game-center-slot-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-center-slot-games__section:nth-child(even) {
  background-color: #f0f0f0;
}

.page-game-center-slot-games__section-title {
  font-size: 2.8em;
  color: #0A2E36;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-center-slot-games__section-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-center-slot-games .highlight {
  color: #E0B400;
}

/* Hero Section */
.page-game-center-slot-games__hero {
  background: linear-gradient(135deg, #0A2E36, #365e66);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-center-slot-games__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-center-slot-games__hero-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
}

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

/* Buttons */
.page-game-center-slot-games__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-center-slot-games__btn--primary {
  background-color: #E0B400;
  color: #0A2E36;
}

.page-game-center-slot-games__btn--primary:hover {
  background-color: #ffc81a;
  transform: translateY(-3px);
}

.page-game-center-slot-games__btn--secondary {
  background-color: #0A2E36;
  color: #fff;
  border: 2px solid #E0B400;
}

.page-game-center-slot-games__btn--secondary:hover {
  background-color: #1a4f5c;
  border-color: #ffc81a;
  transform: translateY(-3px);
}

.page-game-center-slot-games__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
}

/* Content Grid */
.page-game-center-slot-games__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  text-align: left;
}

.page-game-center-slot-games__content-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-game-center-slot-games__text-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-game-center-slot-games__text-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-game-center-slot-games__text-content li {
  margin-bottom: 8px;
  color: #444;
}

.page-game-center-slot-games__image-wrapper {
  text-align: center;
}

.page-game-center-slot-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Card Grid */
.page-game-center-slot-games__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-center-slot-games__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-center-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-game-center-slot-games__card-image {
  max-width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-game-center-slot-games__card-title {
  font-size: 1.6em;
  color: #0A2E36;
  margin-bottom: 10px;
}

.page-game-center-slot-games__card-text {
  color: #666;
  font-size: 0.95em;
}

.page-game-center-slot-games__action-center {
  margin-top: 50px;
}

/* Guide Section */
.page-game-center-slot-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-center-slot-games__guide-step {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-game-center-slot-games__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-game-center-slot-games__step-title {
  font-size: 1.5em;
  color: #0A2E36;
  margin-bottom: 10px;
}

.page-game-center-slot-games__guide-step p {
  color: #666;
}

.page-game-center-slot-games__guide-step a {
  color: #E0B400;
  text-decoration: none;
  font-weight: bold;
}

.page-game-center-slot-games__guide-step a:hover {
  text-decoration: underline;
}

.page-game-center-slot-games__sub-title {
  font-size: 2em;
  color: #0A2E36;
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}

.page-game-center-slot-games__terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  text-align: left;
}

.page-game-center-slot-games__term-item {
  background-color: #fff;
  border-left: 5px solid #E0B400;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-center-slot-games__term-item h4 {
  font-size: 1.3em;
  color: #0A2E36;
  margin-bottom: 10px;
}

.page-game-center-slot-games__term-item p {
  color: #555;
}

/* Providers Section */
.page-game-center-slot-games__providers {
  background-color: #0A2E36;
  color: #fff;
}

.page-game-center-slot-games__providers .page-game-center-slot-games__section-title {
  color: #E0B400;
}

.page-game-center-slot-games__providers .page-game-center-slot-games__section-description {
  color: #ccc;
}

.page-game-center-slot-games__provider-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-game-center-slot-games__provider-logo {
  max-height: 60px;
  filter: grayscale(100%) brightness(150%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.page-game-center-slot-games__provider-logo:hover {
  filter: grayscale(0%) brightness(100%);
  opacity: 1;
}

.page-game-center-slot-games__providers p {
  color: #ccc;
  margin-top: 30px;
  font-size: 1.1em;
}

/* CTA Section */
.page-game-center-slot-games__cta {
  background: linear-gradient(45deg, #0A2E36, #1a4f5c);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-game-center-slot-games__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #E0B400;
}

.page-game-center-slot-games__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

/* Floating Ad */
.page-game-center-slot-games__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #E0B400;
  color: #0A2E36;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
  animation: page-game-center-slot-games__pulse 2s infinite;
}

.page-game-center-slot-games__ad-text {
  margin: 0;
  font-weight: bold;
  font-size: 1.1em;
}

@keyframes page-game-center-slot-games__pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-center-slot-games__content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-game-center-slot-games__content-grid--reverse .page-game-center-slot-games__image-wrapper {
    order: -1; /* Image first on mobile */
  }
  .page-game-center-slot-games__hero-title {
    font-size: 2.8em;
  }
  .page-game-center-slot-games__hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-center-slot-games__section-title {
    font-size: 2.2em;
  }
  .page-game-center-slot-games__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-game-center-slot-games__hero-actions {
    flex-direction: column;
  }
  .page-game-center-slot-games__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-game-center-slot-games__card-grid,
  .page-game-center-slot-games__guide-steps,
  .page-game-center-slot-games__terms-grid {
    grid-template-columns: 1fr;
  }
  .page-game-center-slot-games__section {
    padding: 40px 0;
  }
  .page-game-center-slot-games__hero {
    padding: 80px 0;
  }
  .page-game-center-slot-games__floating-ad {
    bottom: 10px;
    right: 10px;
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
    text-align: center;
  }
  .page-game-center-slot-games__ad-text {
    font-size: 0.9em;
  }
  .page-game-center-slot-games__btn--small {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-game-center-slot-games__hero-title {
    font-size: 2em;
  }
  .page-game-center-slot-games__hero-subtitle {
    font-size: 1em;
  }
  .page-game-center-slot-games__section-title {
    font-size: 1.8em;
  }
  .page-game-center-slot-games__cta-title {
    font-size: 2em;
  }
  .page-game-center-slot-games__btn {
    width: 90%;
  }
}