.page-game-reviews {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2342; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-game-reviews__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A6A 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric,dark_blue,gold_accents]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-reviews__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-game-reviews__subtitle {
  font-size: 1.3em;
  color: #B0C4DE; /* Lighter blue-gray for subtitle */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-game-reviews__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-game-reviews__btn--primary {
  background-color: #FFD700; /* Gold for primary action */
  color: #0A2342; /* Dark blue text on gold */
  border: none;
}

.page-game-reviews__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-game-reviews__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-game-reviews__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-game-reviews__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #0A2342;
  border: none;
}

.page-game-reviews__btn--small:hover {
  background-color: #E6C200;
  transform: translateY(-1px);
}

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

.page-game-reviews__section:nth-of-type(even) {
  background-color: #0F2D52; /* Slightly lighter dark blue for alternating sections */
}

.page-game-reviews__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 25px;
}

.page-game-reviews__section-description {
  font-size: 1.1em;
  color: #B0C4DE;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-game-reviews__feature-item {
  background-color: #1A3A6A; /* Darker blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-game-reviews__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-reviews__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-reviews__feature-item p {
  color: #E0E0E0;
  font-size: 0.95em;
}

.page-game-reviews__cta-box {
    background-color: #1A3A6A;
    padding: 30px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews__cta-box p {
    font-size: 1.2em;
    color: #B0C4DE;
    margin-bottom: 20px;
}

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

.page-game-reviews__category-card {
  background-color: #1A3A6A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

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

.page-game-reviews__category-card .page-game-reviews__card-title {
  font-size: 1.6em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-game-reviews__category-card p {
  color: #E0E0E0;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

.page-game-reviews__category-card .page-game-reviews__btn {
  margin: 0 20px 20px;
  display: inline-block;
}

.page-game-reviews__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-game-reviews__step-item {
  background-color: #1A3A6A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 80px;
}

.page-game-reviews__step-number {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #FFD700;
  color: #0A2342;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-game-reviews__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-reviews__step-item p {
  color: #E0E0E0;
  font-size: 0.95em;
}

.page-game-reviews__app-download {
    padding: 80px 0;
    background-color: #0F2D52;
}

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

.page-game-reviews__app-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 5px solid #FFD700;
}

.page-game-reviews__app-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-game-reviews__app-text p {
    font-size: 1.15em;
    color: #B0C4DE;
    margin-bottom: 25px;
}

.page-game-reviews__app-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-game-reviews__app-text ul li {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 10px;
}

.page-game-reviews__app-text ul li img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: brightness(1.2) drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.page-game-reviews__review-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

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

.page-game-reviews__review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews__review-title {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-game-reviews__review-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-reviews__review-title a:hover {
  color: #E6C200;
  text-decoration: underline;
}

.page-game-reviews__review-description {
  color: #E0E0E0;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-game-reviews__responsible-gambling ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-game-reviews__responsible-gambling ul li {
  background-color: #1A3A6A;
  padding: 20px 25px;
  border-radius: 8px;
  text-align: left;
  color: #E0E0E0;
  font-size: 1.05em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  flex: 1 1 calc(50% - 20px);
  max-width: 48%;
  display: flex;
  align-items: center;
}

.page-game-reviews__responsible-gambling ul li img {
    width: 28px;
    height: 28px;
    margin-right: 15px;
    filter: brightness(1.2) drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.page-game-reviews__responsible-gambling p {
  color: #B0C4DE;
  margin-top: 30px;
}

.page-game-reviews__conclusion .page-game-reviews__section-description {
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews__title {
    font-size: 2.8em;
  }
  .page-game-reviews__section-title {
    font-size: 2em;
  }
  .page-game-reviews__responsible-gambling ul li {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-game-reviews__hero {
    padding: 80px 0;
  }
  .page-game-reviews__title {
    font-size: 2.2em;
  }
  .page-game-reviews__subtitle {
    font-size: 1.1em;
  }
  .page-game-reviews__section {
    padding: 40px 0;
  }
  .page-game-reviews__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews__grid, .page-game-reviews__category-grid, .page-game-reviews__steps, .page-game-reviews__review-list {
    grid-template-columns: 1fr;
  }
  .page-game-reviews__app-content {
      flex-direction: column;
      text-align: center;
  }
  .page-game-reviews__app-text {
      text-align: center;
  }
  .page-game-reviews__app-text ul {
      text-align: left;
      margin-left: auto;
      margin-right: auto;
      max-width: 300px; /* Constrain list width for better readability */
  }
  .page-game-reviews__step-item {
    padding-left: 30px;
    padding-top: 60px;
  }
  .page-game-reviews__step-number {
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .page-game-reviews__title {
    font-size: 1.8em;
  }
  .page-game-reviews__subtitle {
    font-size: 1em;
  }
  .page-game-reviews__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-reviews__section-title {
    font-size: 1.5em;
  }
  .page-game-reviews__feature-title, .page-game-reviews__card-title, .page-game-reviews__step-title, .page-game-reviews__review-title {
    font-size: 1.3em;
  }
}