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

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

.page-index-game-entry-hero {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-index-game-entry-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-game-entry-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0f2ff; /* Lighter blue for contrast */
}

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

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

.page-index-game-entry-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #000; /* Black for strong contrast */
}

.page-index-game-entry-btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-game-entry-btn-secondary {
  background-color: #007BFF; /* Dark Blue */
  color: #fff;
  border: 2px solid #FFD700;
}

.page-index-game-entry-btn-secondary:hover {
  background-color: #0056b3;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-game-entry-btn-small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
  background-color: #007BFF;
  color: #fff;
}

.page-index-game-entry-btn-small:hover {
  background-color: #0056b3;
}

.page-index-game-entry-btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-index-game-entry-section {
  padding: 60px 0;
  text-align: center;
}

.page-index-game-entry-section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-index-game-entry-section-title {
  font-size: 2.5em;
  color: #007BFF;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-game-entry-text-content {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555;
}

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

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

.page-index-game-entry-feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-game-entry-feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 123, 255, 0.3));
}

.page-index-game-entry-feature-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-index-game-entry-feature-description {
  color: #666;
  font-size: 1em;
}

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

.page-index-game-entry-game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-game-entry-game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-game-entry-game-card h3 {
  font-size: 1.4em;
  color: #007BFF;
  padding: 15px 20px 5px;
}

.page-index-game-entry-game-card p {
  color: #666;
  padding: 0 20px 15px;
  font-size: 0.95em;
}

.page-index-game-entry-game-card .page-index-game-entry-btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

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

.page-index-game-entry-step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-index-game-entry-step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(255, 215, 0, 0.5));
}

.page-index-game-entry-step-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-index-game-entry-step-description {
  color: #666;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-index-game-entry-mobile-app {
  background-color: #007BFF;
  color: #fff;
}

.page-index-game-entry-mobile-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  flex-wrap: wrap;
  gap: 40px;
}

.page-index-game-entry-mobile-content {
  flex: 1;
  min-width: 300px;
}

.page-index-game-entry-mobile-app .page-index-game-entry-section-title {
  color: #FFD700;
  text-align: left;
}

.page-index-game-entry-mobile-app .page-index-game-entry-section-title::after {
  left: 0;
  transform: translateX(0);
}

.page-index-game-entry-mobile-app .page-index-game-entry-text-content {
  color: #e0f2ff;
  text-align: left;
}

.page-index-game-entry-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.page-index-game-entry-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #fff;
}

.page-index-game-entry-list-icon {
  color: #FFD700;
  margin-right: 10px;
}

.page-index-game-entry-mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-game-entry-mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-index-game-entry-responsible-gambling {
  background-color: #f8f9fa;
}

.page-index-game-entry-responsible-gambling .page-index-game-entry-section-title {
  color: #007BFF;
}

.page-index-game-entry-responsible-gambling .page-index-game-entry-text-content {
  color: #555;
}

.page-index-game-entry-final-cta {
  background: linear-gradient(135deg, #0056b3, #007BFF);
  color: #fff;
  padding: 80px 0;
}

.page-index-game-entry-final-cta-content {
  text-align: center;
}

.page-index-game-entry-final-cta .page-index-game-entry-section-title {
  color: #FFD700;
  margin-bottom: 25px;
}

.page-index-game-entry-final-cta .page-index-game-entry-section-title::after {
  background-color: #fff;
}

.page-index-game-entry-final-cta .page-index-game-entry-text-content {
  color: #e0f2ff;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-game-entry-title {
    font-size: 2.5em;
  }
  .page-index-game-entry-section-title {
    font-size: 2em;
  }
  .page-index-game-entry-mobile-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-index-game-entry-mobile-app .page-index-game-entry-section-title,
  .page-index-game-entry-mobile-app .page-index-game-entry-text-content {
    text-align: center;
  }
  .page-index-game-entry-mobile-app .page-index-game-entry-section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .page-index-game-entry-hero {
    padding: 80px 0;
  }
  .page-index-game-entry-title {
    font-size: 2em;
  }
  .page-index-game-entry-subtitle {
    font-size: 1.1em;
  }
  .page-index-game-entry-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-game-entry-section {
    padding: 40px 0;
  }
  .page-index-game-entry-section-title {
    font-size: 1.8em;
  }
  .page-index-game-entry-text-content {
    font-size: 1em;
  }
  .page-index-game-entry-why-choose .page-index-game-entry-features-grid,
  .page-index-game-entry-game-categories .page-index-game-entry-game-grid,
  .page-index-game-entry-get-started .page-index-game-entry-steps-grid {
    grid-template-columns: 1fr;
  }
  .page-index-game-entry-feature-item, .page-index-game-entry-game-card, .page-index-game-entry-step-item {
    padding: 20px;
  }
  .page-index-game-entry-feature-title,
  .page-index-game-entry-game-title,
  .page-index-game-entry-step-title {
    font-size: 1.3em;
  }
  .page-index-game-entry-mobile-app .page-index-game-entry-list {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-index-game-entry-title {
    font-size: 1.8em;
  }
  .page-index-game-entry-section-title {
    font-size: 1.5em;
  }
  .page-index-game-entry-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-game-entry-btn {
    width: 100%;
  }
  .page-index-game-entry-final-cta {
    padding: 60px 0;
  }
}