/* style/index-game-overview.css */

.page-index-game-overview {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-index-game-overview__hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #1E90FF 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-game-overview__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  animation: page-index-game-overview__pulse 15s infinite ease-out;
}

@keyframes page-index-game-overview__pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

.page-index-game-overview__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-index-game-overview__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #eee;
  position: relative;
  z-index: 1;
}

.page-index-game-overview__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-index-game-overview__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-index-game-overview__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-game-overview__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-game-overview__btn--secondary {
  background-color: #1E90FF; /* Dodger Blue */
  color: #fff;
  border: 2px solid #1E90FF;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.page-index-game-overview__btn--secondary:hover {
  background-color: #1a7ae6;
  border-color: #1a7ae6;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
}

.page-index-game-overview__game-categories,
.page-index-game-overview__why-choose,
.page-index-game-overview__cta-final {
  padding: 60px 0;
}

.page-index-game-overview__section-title {
  font-size: 2.8em;
  color: #1E90FF; /* Dodger Blue */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-index-game-overview__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold */
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.page-index-game-overview__section-intro,
.page-index-game-overview__why-choose-intro,
.page-index-game-overview__cta-final-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

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

.page-index-game-overview__game-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-game-overview__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.page-index-game-overview__game-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-game-overview__game-card-title {
  font-size: 1.8em;
  color: #1E90FF; /* Dodger Blue */
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-index-game-overview__game-card-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-index-game-overview__btn--card {
  margin: 0 20px 20px;
  background-color: #FFD700; /* Gold */
  color: #1a1a1a;
  width: calc(100% - 40px);
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.page-index-game-overview__btn--card:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.page-index-game-overview__why-choose {
  background-color: #eef7ff; /* Light blue background for contrast */
}

.page-index-game-overview__advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-index-game-overview__advantage-list li {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-index-game-overview__advantage-list li:hover {
  transform: translateY(-8px);
}

.page-index-game-overview__advantage-title {
  font-size: 1.6em;
  color: #1E90FF; /* Dodger Blue */
  margin-bottom: 15px;
}

.page-index-game-overview__advantage-list p {
  color: #555;
  font-size: 1em;
}

.page-index-game-overview__cta-explore-promo {
  text-align: center;
  margin-top: 60px;
}

.page-index-game-overview__cta-final {
  background-color: #1E90FF; /* Dodger Blue background */
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-index-game-overview__cta-final .page-index-game-overview__section-title {
  color: #FFD700; /* Gold */
}

.page-index-game-overview__cta-final .page-index-game-overview__section-title::after {
  background-color: #fff;
}

.page-index-game-overview__cta-final-description {
  color: #eee;
  margin-bottom: 40px;
}

.page-index-game-overview__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-game-overview__cta-group .page-index-game-overview__btn--primary {
  background-color: #FFD700;
  color: #1a1a1a;
}

.page-index-game-overview__cta-group .page-index-game-overview__btn--secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.page-index-game-overview__cta-group .page-index-game-overview__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFD700;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-game-overview__hero-title {
    font-size: 2.8em;
  }
  .page-index-game-overview__section-title {
    font-size: 2.2em;
  }
  .page-index-game-overview__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-game-overview__hero-section {
    padding: 80px 0;
  }
  .page-index-game-overview__hero-title {
    font-size: 2.2em;
  }
  .page-index-game-overview__hero-description {
    font-size: 1em;
  }
  .page-index-game-overview__hero-cta-group,
  .page-index-game-overview__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-game-overview__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-game-overview__game-categories,
  .page-index-game-overview__why-choose,
  .page-index-game-overview__cta-final {
    padding: 40px 0;
  }
  .page-index-game-overview__section-title {
    font-size: 1.8em;
  }
  .page-index-game-overview__section-intro,
  .page-index-game-overview__why-choose-intro,
  .page-index-game-overview__cta-final-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-index-game-overview__advantage-list {
    grid-template-columns: 1fr;
  }
  .page-index-game-overview__advantage-title {
    font-size: 1.4em;
  }
  .page-index-game-overview__btn--card {
    width: calc(100% - 40px);
  }
}