/* style/game-guides.css */

/* Biến CSS */
:root {
  --page-game-guides-primary-color: #007bff;
  --page-game-guides-secondary-color: #ffc107;
  --page-game-guides-text-color-dark: #333;
  --page-game-guides-text-color-light: #fff;
  --page-game-guides-bg-light: #f8f9fa;
  --page-game-guides-bg-dark: #343a40;
  --page-game-guides-border-color: #dee2e6;
}

.page-game-guides {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--page-game-guides-text-color-dark);
  background-color: var(--page-game-guides-bg-light);
}

.page-game-guides-hero {
  background: linear-gradient(135deg, var(--page-game-guides-primary-color) 0%, #0056b3 100%);
  color: var(--page-game-guides-text-color-light);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 15px 15px;
}

.page-game-guides-hero::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-game-guides-hero-light-effect 15s infinite linear;
}

@keyframes page-game-guides-hero-light-effect {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.page-game-guides-hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-game-guides-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--page-game-guides-text-color-light);
}

.page-game-guides-hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-game-guides-hero-image-wrapper {
  width: 100%;
  max-width: 600px;
  margin-top: 30px;
  z-index: 1;
}

.page-game-guides-hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-game-guides-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.05em;
}

.page-game-guides-btn-primary {
  background-color: var(--page-game-guides-secondary-color);
  color: var(--page-game-guides-text-color-dark);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-game-guides-btn-primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-game-guides-btn-secondary {
  background-color: var(--page-game-guides-primary-color);
  color: var(--page-game-guides-text-color-light);
  border: 2px solid var(--page-game-guides-primary-color);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.page-game-guides-btn-secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.page-game-guides-btn-tertiary {
  background-color: var(--page-game-guides-bg-light);
  color: var(--page-game-guides-primary-color);
  border: 1px solid var(--page-game-guides-primary-color);
}

.page-game-guides-btn-tertiary:hover {
  background-color: var(--page-game-guides-primary-color);
  color: var(--page-game-guides-text-color-light);
}

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

.page-game-guides-section-title {
  font-size: 2.5em;
  color: var(--page-game-guides-primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.page-game-guides-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-game-guides-secondary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-game-guides-section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555;
}

.page-game-guides-why-789win {
  background-color: var(--page-game-guides-bg-light);
}

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

.page-game-guides-feature-item {
  background-color: var(--page-game-guides-text-color-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-guides-feature-item:hover {
  transform: translateY(-5px);
}

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

.page-game-guides-feature-item h3 {
  font-size: 1.5em;
  color: var(--page-game-guides-primary-color);
  margin-bottom: 15px;
}

.page-game-guides-feature-item p {
  color: #666;
}

.page-game-guides-registration {
  background-color: var(--page-game-guides-bg-dark);
  color: var(--page-game-guides-text-color-light);
  border-radius: 15px;
  margin: 60px auto;
  padding: 60px 30px;
}

.page-game-guides-registration .page-game-guides-section-title {
  color: var(--page-game-guides-secondary-color);
}

.page-game-guides-registration .page-game-guides-section-description {
  color: #e9ecef;
}

.page-game-guides-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-game-guides-steps li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  border-left: 5px solid var(--page-game-guides-secondary-color);
}

.page-game-guides-steps li strong {
  color: var(--page-game-guides-secondary-color);
  font-size: 1.2em;
}

.page-game-guides-tips {
  margin-top: 30px;
  font-style: italic;
  color: #ced4da;
  text-align: center;
}

.page-game-guides-game-types {
  background-color: var(--page-game-guides-bg-light);
}

.page-game-guides-game-category {
  background-color: var(--page-game-guides-text-color-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.page-game-guides-category-title {
  font-size: 2em;
  color: var(--page-game-guides-primary-color);
  margin-bottom: 15px;
}

.page-game-guides-category-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guides-game-category p {
  color: #555;
  font-size: 1.05em;
  margin-bottom: 20px;
}

.page-game-guides-tips-success {
  background-color: #e9f7ff;
  border-radius: 15px;
  padding: 60px 30px;
  margin: 60px auto;
}

.page-game-guides-tips-success .page-game-guides-section-title {
  color: #0056b3;
}

.page-game-guides-tips-success .page-game-guides-section-description {
  color: #444;
}

.page-game-guides-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-game-guides-list li {
  background-color: var(--page-game-guides-text-color-light);
  padding: 18px 25px;
  border-left: 4px solid var(--page-game-guides-primary-color);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
}

.page-game-guides-list li strong {
  color: var(--page-game-guides-primary-color);
}

.page-game-guides-detail-pages-list {
  background-color: var(--page-game-guides-bg-light);
  padding: 60px 20px;
}

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

.page-game-guides-detail-card {
  background-color: var(--page-game-guides-text-color-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-game-guides-detail-card-title {
  font-size: 1.6em;
  color: var(--page-game-guides-primary-color);
  margin-bottom: 15px;
}

.page-game-guides-detail-card-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-game-guides-detail-card-title a:hover {
  color: var(--page-game-guides-secondary-color);
}

.page-game-guides-detail-card-description {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-guides-cta-bottom {
  background-color: var(--page-game-guides-primary-color);
  color: var(--page-game-guides-text-color-light);
  padding: 80px 20px;
  text-align: center;
  border-radius: 15px;
  margin: 60px auto;
}

.page-game-guides-cta-bottom .page-game-guides-section-title {
  color: var(--page-game-guides-secondary-color);
}

.page-game-guides-cta-bottom .page-game-guides-section-description {
  color: #e9ecef;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-hero {
    flex-direction: column;
    padding: 60px 15px;
  }

  .page-game-guides-hero-title {
    font-size: 2.5em;
  }

  .page-game-guides-hero-description {
    font-size: 1.1em;
  }

  .page-game-guides-features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-game-guides-section-title {
    font-size: 2em;
  }

  .page-game-guides-game-category {
    padding: 25px;
  }

  .page-game-guides-category-title {
    font-size: 1.8em;
  }

  .page-game-guides-list {
    grid-template-columns: 1fr;
  }

  .page-game-guides-detail-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-guides-hero {
    padding: 50px 15px;
  }

  .page-game-guides-hero-title {
    font-size: 2em;
  }

  .page-game-guides-hero-description {
    font-size: 1em;
  }

  .page-game-guides-btn {
    padding: 10px 22px;
    font-size: 1em;
  }

  .page-game-guides-section {
    padding: 40px 15px;
  }

  .page-game-guides-section-title {
    font-size: 1.8em;
  }

  .page-game-guides-section-description {
    font-size: 0.95em;
  }

  .page-game-guides-feature-item h3 {
    font-size: 1.3em;
  }

  .page-game-guides-registration, .page-game-guides-tips-success, .page-game-guides-cta-bottom {
    padding: 40px 15px;
    margin: 40px auto;
  }

  .page-game-guides-steps li {
    font-size: 1em;
    padding: 15px;
  }

  .page-game-guides-game-category {
    padding: 20px;
  }

  .page-game-guides-category-title {
    font-size: 1.6em;
  }

  .page-game-guides-detail-card-title {
    font-size: 1.4em;
  }
}

@media (max-width: 576px) {
  .page-game-guides-hero-title {
    font-size: 1.8em;
  }

  .page-game-guides-hero-description {
    font-size: 0.9em;
  }

  .page-game-guides-section-title {
    font-size: 1.6em;
  }

  .page-game-guides-list li {
    font-size: 0.95em;
  }

  .page-game-guides-detail-cards {
    grid-template-columns: 1fr;
  }
}