.page-game-reviews-card-games {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-light: #f8f8f8;
  --text-dark: #333333;
  --background-dark: #121212;
  --background-light: #ffffff;
  --border-color: #333333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--background-dark);
}

.page-game-reviews-card-games .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-reviews-card-games .section-title {
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-game-reviews-card-games .hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a3f4a 100%);
  padding: 100px 0;
  color: var(--text-light);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-card-games .hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.page-game-reviews-card-games .hero-content {
  max-width: 800px;
}

.page-game-reviews-card-games .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-game-reviews-card-games .hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #cccccc;
}

.page-game-reviews-card-games .hero-image-wrapper {
  width: 100%;
  max-width: 600px;
  margin-top: 30px;
}

.page-game-reviews-card-games .hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-game-reviews-card-games .btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

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

.page-game-reviews-card-games .btn-secondary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-game-reviews-card-games .btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.page-game-reviews-card-games .link-text {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-game-reviews-card-games .link-text:hover {
  text-decoration: underline;
}

.page-game-reviews-card-games .highlight-text {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-game-reviews-card-games .overview-section, 
.page-game-reviews-card-games .games-section, 
.page-game-reviews-card-games .advantages-section, 
.page-game-reviews-card-games .cta-section, 
.page-game-reviews-card-games .download-app-section, 
.page-game-reviews-card-games .tips-section, 
.page-game-reviews-card-games .final-cta-section {
  padding: 60px 0;
}

.page-game-reviews-card-games .overview-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-game-reviews-card-games .overview-section .section-title {
  color: var(--secondary-color);
}

.page-game-reviews-card-games .overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-card-games .overview-item {
  background-color: #2a2f3a;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-game-reviews-card-games .overview-item:hover {
  transform: translateY(-5px);
}

.page-game-reviews-card-games .overview-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-game-reviews-card-games .overview-icon {
  width: 60px;
  height: 60px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(300deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-game-reviews-card-games .games-section {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-game-reviews-card-games .game-review-card {
  display: flex;
  flex-direction: row;
  background-color: var(--primary-color);
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.page-game-reviews-card-games .game-review-card:nth-child(even) {
  flex-direction: row-reverse;
}

.page-game-reviews-card-games .game-image {
  width: 40%;
  height: auto;
  object-fit: cover;
}

.page-game-reviews-card-games .game-content {
  width: 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-game-reviews-card-games .game-content h3 {
  font-size: 2em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-game-reviews-card-games .game-content h3 .link-title {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-game-reviews-card-games .game-content h3 .link-title:hover {
  text-decoration: underline;
}

.page-game-reviews-card-games .game-content h4 {
  font-size: 1.3em;
  color: #cccccc;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-game-reviews-card-games .game-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-game-reviews-card-games .game-content ul li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.page-game-reviews-card-games .game-content ul li::before {
  content: '✓';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-game-reviews-card-games .advantages-section {
  background-color: #2a2f3a;
  color: var(--text-light);
}

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

.page-game-reviews-card-games .advantages-list li {
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-reviews-card-games .advantages-list li:hover {
  transform: translateY(-5px);
}

.page-game-reviews-card-games .advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(300deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-game-reviews-card-games .advantages-list h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-game-reviews-card-games .cta-section {
  background-color: var(--primary-color);
  text-align: center;
  padding: 80px 0;
  color: var(--text-light);
}

.page-game-reviews-card-games .cta-section .section-title {
  font-size: 2.8em;
  color: var(--secondary-color);
}

.page-game-reviews-card-games .cta-section p {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-game-reviews-card-games .download-app-section {
  background-color: #2a2f3a;
  color: var(--text-light);
  padding: 80px 0;
}

.page-game-reviews-card-games .download-app-section .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.page-game-reviews-card-games .download-content {
  flex: 1;
}

.page-game-reviews-card-games .download-content .section-title {
  text-align: left;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-game-reviews-card-games .download-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #cccccc;
}

.page-game-reviews-card-games .download-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-game-reviews-card-games .app-screenshot {
  max-width: 350px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-card-games .small-text {
  font-size: 0.9em;
  margin-top: 15px;
  color: #aaaaaa;
}

.page-game-reviews-card-games .tips-section {
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.page-game-reviews-card-games .tip-item {
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-reviews-card-games .tip-item:hover {
  transform: translateY(-5px);
}

.page-game-reviews-card-games .tip-item h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-game-reviews-card-games .tip-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(300deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-game-reviews-card-games .final-cta-section {
  background-color: var(--primary-color);
  text-align: center;
  padding: 80px 0;
  color: var(--text-light);
}

.page-game-reviews-card-games .final-cta-section .section-title {
  font-size: 2.8em;
  color: var(--secondary-color);
}

.page-game-reviews-card-games .final-cta-section p {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews-card-games .hero-title {
    font-size: 2.8em;
  }
  .page-game-reviews-card-games .section-title {
    font-size: 2em;
  }
  .page-game-reviews-card-games .game-review-card {
    flex-direction: column;
  }
  .page-game-reviews-card-games .game-review-card:nth-child(even) {
    flex-direction: column;
  }
  .page-game-reviews-card-games .game-image,
  .page-game-reviews-card-games .game-content {
    width: 100%;
  }
  .page-game-reviews-card-games .download-app-section .container {
    flex-direction: column;
    text-align: center;
  }
  .page-game-reviews-card-games .download-content .section-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-card-games .hero-title {
    font-size: 2.2em;
  }
  .page-game-reviews-card-games .hero-description {
    font-size: 1em;
  }
  .page-game-reviews-card-games .section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-card-games .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-reviews-card-games .overview-grid,
  .page-game-reviews-card-games .advantages-list,
  .page-game-reviews-card-games .tips-grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-card-games .game-content h3 {
    font-size: 1.5em;
  }
  .page-game-reviews-card-games .download-app-section .container {
    gap: 30px;
  }
  .page-game-reviews-card-games .app-screenshot {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-card-games .hero-title {
    font-size: 1.8em;
  }
  .page-game-reviews-card-games .section-title {
    font-size: 1.5em;
  }
  .page-game-reviews-card-games .hero-section {
    padding: 60px 0;
  }
  .page-game-reviews-card-games .overview-section, 
  .page-game-reviews-card-games .games-section, 
  .page-game-reviews-card-games .advantages-section, 
  .page-game-reviews-card-games .cta-section, 
  .page-game-reviews-card-games .download-app-section, 
  .page-game-reviews-card-games .tips-section, 
  .page-game-reviews-card-games .final-cta-section {
    padding: 40px 0;
  }
}