/* style/game-reviews-casino.css */
.page-game-reviews-casino {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-game-reviews-casino__hero {
  background: linear-gradient(135deg, #004AAD 0%, #0028ff 100%); /* Adjusted for better contrast with gold */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-casino__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  animation: page-game-reviews-casino__pulse 4s infinite alternate;
}

.page-game-reviews-casino__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  animation: page-game-reviews-casino__pulse 5s infinite alternate reverse;
}

@keyframes page-game-reviews-casino__pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 1; }
}

.page-game-reviews-casino__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-casino__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-reviews-casino__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-reviews-casino__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-game-reviews-casino__btn--primary {
  background-color: #FFD700;
  color: #004AAD;
  border: 2px solid #FFD700;
}

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

.page-game-reviews-casino__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-reviews-casino__btn--secondary:hover {
  background-color: #FFD700;
  color: #004AAD;
  transform: translateY(-2px);
}

.page-game-reviews-casino__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

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

.page-game-reviews-casino__section:nth-of-type(even) {
  background-color: #f0f2f5;
}

.page-game-reviews-casino__section-title {
  font-size: 2.2em;
  color: #004AAD;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-game-reviews-casino__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-game-reviews-casino__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-game-reviews-casino__why-reviews .page-game-reviews-casino__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.page-game-reviews-casino__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-game-reviews-casino__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-game-reviews-casino__item-title {
  font-size: 1.4em;
  color: #004AAD;
  margin-bottom: 15px;
}

.page-game-reviews-casino__item-title + p {
  color: #666;
}

.page-game-reviews-casino__game-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.page-game-reviews-casino__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-casino__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-game-reviews-casino__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-game-reviews-casino__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-game-reviews-casino__card-title {
  font-size: 1.6em;
  color: #004AAD;
  margin-bottom: 15px;
}

.page-game-reviews-casino__card-text {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-reviews-casino__process-list {
  list-style: none;
  padding: 0;
  counter-reset: process-step;
}

.page-game-reviews-casino__process-list li {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 80px;
}

.page-game-reviews-casino__process-list li::before {
  counter-increment: process-step;
  content: counter(process-step);
  position: absolute;
  left: 25px;
  top: 30px;
  background-color: #004AAD;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  border: 3px solid #FFD700;
}

.page-game-reviews-casino__process-title {
  font-size: 1.3em;
  color: #004AAD;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-reviews-casino__tips-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.page-game-reviews-casino__tips-list li {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #FFD700;
}

.page-game-reviews-casino__tip-title {
  font-size: 1.4em;
  color: #004AAD;
  margin-bottom: 15px;
}

.page-game-reviews-casino__cta-final {
  background-color: #004AAD;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-game-reviews-casino__cta-final .page-game-reviews-casino__section-title {
  color: #FFD700;
}

.page-game-reviews-casino__cta-final .page-game-reviews-casino__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-game-reviews-casino__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-casino__cta-final .page-game-reviews-casino__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-reviews-casino__faq-item {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-reviews-casino__faq-question {
  font-size: 1.2em;
  color: #004AAD;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-reviews-casino__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-game-reviews-casino__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-reviews-casino__faq-answer {
  color: #666;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-game-reviews-casino__faq-answer.active {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews-casino__hero-title {
    font-size: 2.2em;
  }
  .page-game-reviews-casino__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-casino__tips-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-casino__hero {
    padding: 60px 0;
  }
  .page-game-reviews-casino__hero-title {
    font-size: 1.8em;
  }
  .page-game-reviews-casino__hero-subtitle {
    font-size: 1em;
  }
  .page-game-reviews-casino__hero-cta-group, .page-game-reviews-casino__cta-final .page-game-reviews-casino__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-reviews-casino__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-game-reviews-casino__section {
    padding: 40px 0;
  }
  .page-game-reviews-casino__section-title {
    font-size: 1.6em;
  }
  .page-game-reviews-casino__section-description {
    font-size: 0.95em;
  }
  .page-game-reviews-casino__process-list li {
    padding-left: 60px;
  }
  .page-game-reviews-casino__process-list li::before {
    left: 15px;
    top: 25px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-casino__hero-title {
    font-size: 1.5em;
  }
  .page-game-reviews-casino__btn {
    width: 90%;
  }
  .page-game-reviews-casino__game-card-grid {
    grid-template-columns: 1fr;
  }
}