.page-game-reviews-platform-a-deep-dive {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text on dark background */
  background-color: #0A192F;
  line-height: 1.6;
}

.page-game-reviews-platform-a-deep-dive .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-reviews-platform-a-deep-dive .hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a304e 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-game-reviews-platform-a-deep-dive .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-game-reviews-platform-a-deep-dive .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-platform-a-deep-dive .hero-actions .btn {
  margin: 10px;
}

.page-game-reviews-platform-a-deep-dive .section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-reviews-platform-a-deep-dive .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-reviews-platform-a-deep-dive .section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #E0E0E0;
}

.page-game-reviews-platform-a-deep-dive .content-section {
  padding: 80px 0;
}

.page-game-reviews-platform-a-deep-dive .intro-section {
  background-color: #0A192F;
  color: #E0E0E0;
}

.page-game-reviews-platform-a-deep-dive .intro-section .text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-game-reviews-platform-a-deep-dive .intro-section .text-link:hover {
  text-decoration: underline;
}

.page-game-reviews-platform-a-deep-dive .image-content .responsive-image,
.page-game-reviews-platform-a-deep-dive .content-image-full-width {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

.page-game-reviews-platform-a-deep-dive .bg-dark-gradient {
  background: linear-gradient(135deg, #0A192F, #1a304e);
}

.page-game-reviews-platform-a-deep-dive .bg-accent-light {
  background-color: #1a304e; /* Slightly lighter dark blue */
  color: #E0E0E0;
}

.page-game-reviews-platform-a-deep-dive .text-light {
  color: #FFFFFF;
}

.page-game-reviews-platform-a-deep-dive .text-light-secondary {
  color: #E0E0E0;
}

.page-game-reviews-platform-a-deep-dive .grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-game-reviews-platform-a-deep-dive .grid-2-columns-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex-direction: row-reverse; /* For reversing order */
}

.page-game-reviews-platform-a-deep-dive .grid-3-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-game-reviews-platform-a-deep-dive .feature-item,
.page-game-reviews-platform-a-deep-dive .banking-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-game-reviews-platform-a-deep-dive .feature-item:hover,
.page-game-reviews-platform-a-deep-dive .banking-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-game-reviews-platform-a-deep-dive .feature-icon,
.page-game-reviews-platform-a-deep-dive .banking-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-reviews-platform-a-deep-dive .feature-title,
.page-game-reviews-platform-a-deep-dive .banking-title,
.page-game-reviews-platform-a-deep-dive .promo-title,
.page-game-reviews-platform-a-deep-dive .sub-section-title,
.page-game-reviews-platform-a-deep-dive .step-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-game-reviews-platform-a-deep-dive .feature-description,
.page-game-reviews-platform-a-deep-dive .banking-description {
  font-size: 1em;
  color: #E0E0E0;
}

.page-game-reviews-platform-a-deep-dive .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-game-reviews-platform-a-deep-dive .btn-primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-game-reviews-platform-a-deep-dive .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-reviews-platform-a-deep-dive .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-reviews-platform-a-deep-dive .btn-secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-game-reviews-platform-a-deep-dive .btn-lg {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-game-reviews-platform-a-deep-dive .highlight {
  color: #FFD700;
}

.page-game-reviews-platform-a-deep-dive .sub-section-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-game-reviews-platform-a-deep-dive .styled-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-game-reviews-platform-a-deep-dive .styled-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-game-reviews-platform-a-deep-dive .styled-list li::before {
  content: '★'; /* Star icon */
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

.page-game-reviews-platform-a-deep-dive .promo-card {
  background-color: rgba(255, 215, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-game-reviews-platform-a-deep-dive .promo-card:hover {
  transform: translateY(-10px);
}

.page-game-reviews-platform-a-deep-dive .promo-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-platform-a-deep-dive .promo-description {
  color: #E0E0E0;
  margin-bottom: 25px;
}

.page-game-reviews-platform-a-deep-dive .text-success {
  color: #28a745;
}

.page-game-reviews-platform-a-deep-dive .text-danger {
  color: #dc3545;
}

.page-game-reviews-platform-a-deep-dive .list-pros li::before {
  content: '✔';
  color: #28a745;
}

.page-game-reviews-platform-a-deep-dive .list-cons li::before {
  content: '✖';
  color: #dc3545;
}

.page-game-reviews-platform-a-deep-dive .step-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-platform-a-deep-dive .step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #0A192F;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews-platform-a-deep-dive .hero-title {
    font-size: 2.8em;
  }
  .page-game-reviews-platform-a-deep-dive .section-title {
    font-size: 2em;
  }
  .page-game-reviews-platform-a-deep-dive .grid-2-columns,
  .page-game-reviews-platform-a-deep-dive .grid-2-columns-reverse {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-platform-a-deep-dive .grid-2-columns-reverse .image-content {
    order: -1; /* Move image above text on small screens */
  }
}

@media (max-width: 768px) {
  .page-game-reviews-platform-a-deep-dive .hero-title {
    font-size: 2.2em;
  }
  .page-game-reviews-platform-a-deep-dive .hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-reviews-platform-a-deep-dive .section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-platform-a-deep-dive .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-reviews-platform-a-deep-dive .btn-lg {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-game-reviews-platform-a-deep-dive .content-section {
    padding: 60px 0;
  }
  .page-game-reviews-platform-a-deep-dive .section-description {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .page-game-reviews-platform-a-deep-dive .hero-title {
    font-size: 1.8em;
  }
  .page-game-reviews-platform-a-deep-dive .hero-subtitle {
    font-size: 1em;
  }
  .page-game-reviews-platform-a-deep-dive .section-title {
    font-size: 1.6em;
  }
  .page-game-reviews-platform-a-deep-dive .hero-actions .btn {
    display: block;
    margin: 10px auto;
  }
  .page-game-reviews-platform-a-deep-dive .feature-icon,
  .page-game-reviews-platform-a-deep-dive .banking-icon {
    width: 60px;
    height: 60px;
  }
  .page-game-reviews-platform-a-deep-dive .feature-title,
  .page-game-reviews-platform-a-deep-dive .banking-title,
  .page-game-reviews-platform-a-deep-dive .promo-title,
  .page-game-reviews-platform-a-deep-dive .sub-section-title,
  .page-game-reviews-platform-a-deep-dive .step-title {
    font-size: 1.5em;
  }
}