/* style/resources-ww88-game-strategy-guide.css */
.page-resources-ww88-game-strategy-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-resources-ww88-game-strategy-guide .hero-section {
  background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-ww88-game-strategy-guide .hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 204, 0, 0.1) 0%, transparent 70%); /* Light golden glow */
  animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-resources-ww88-game-strategy-guide .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-resources-ww88-game-strategy-guide .hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-resources-ww88-game-strategy-guide .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
}

.page-resources-ww88-game-strategy-guide .btn-primary {
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Primary color for text */
}

.page-resources-ww88-game-strategy-guide .btn-primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-ww88-game-strategy-guide .btn-secondary {
  background-color: #003366; /* Primary color */
  color: #FFCC00; /* Auxiliary color for text */
  border: 2px solid #FFCC00;
}

.page-resources-ww88-game-strategy-guide .btn-secondary:hover {
  background-color: #004488;
  border-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-ww88-game-strategy-guide .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-ww88-game-strategy-guide .intro-section, 
.page-resources-ww88-game-strategy-guide .game-strategy-section, 
.page-resources-ww88-game-strategy-guide .general-tips-section, 
.page-resources-ww88-game-strategy-guide .cta-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-resources-ww88-game-strategy-guide .intro-section {
  background-color: #fff;
}

.page-resources-ww88-game-strategy-guide .section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-resources-ww88-game-strategy-guide .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-ww88-game-strategy-guide p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-resources-ww88-game-strategy-guide .game-article {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 40px;
}

.page-resources-ww88-game-strategy-guide .game-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFCC00;
  padding-bottom: 10px;
}

.page-resources-ww88-game-strategy-guide .strategy-subtitle {
  font-size: 1.5em;
  color: #004488;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-ww88-game-strategy-guide ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555;
}

.page-resources-ww88-game-strategy-guide ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-ww88-game-strategy-guide ul li::marker {
  color: #FFCC00;
}

.page-resources-ww88-game-strategy-guide .tip-list {
  list-style-type: none;
  padding: 0;
}

.page-resources-ww88-game-strategy-guide .tip-list li {
  background-color: #e6f0fa; /* Lighter shade of primary */
  border-left: 5px solid #003366;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-weight: 500;
  color: #003366;
}

.page-resources-ww88-game-strategy-guide .image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-resources-ww88-game-strategy-guide .img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-ww88-game-strategy-guide .inline-link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-ww88-game-strategy-guide .inline-link:hover {
  color: #FFCC00;
  text-decoration: none;
}

.page-resources-ww88-game-strategy-guide .cta-section {
  background: linear-gradient(90deg, #003366, #004488);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-resources-ww88-game-strategy-guide .cta-section .section-title {
  color: #FFCC00;
}

.page-resources-ww88-game-strategy-guide .cta-section .section-title::after {
  background-color: #fff;
}

.page-resources-ww88-game-strategy-guide .cta-section p {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-resources-ww88-game-strategy-guide .cta-buttons .btn {
  margin: 0 15px;
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-ww88-game-strategy-guide .hero-title {
    font-size: 2.5em;
  }

  .page-resources-ww88-game-strategy-guide .hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-ww88-game-strategy-guide .section-title {
    font-size: 2em;
  }

  .page-resources-ww88-game-strategy-guide .game-title {
    font-size: 1.7em;
  }

  .page-resources-ww88-game-strategy-guide .strategy-subtitle {
    font-size: 1.3em;
  }

  .page-resources-ww88-game-strategy-guide .btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-ww88-game-strategy-guide .cta-buttons .btn {
    display: block;
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .page-resources-ww88-game-strategy-guide .hero-title {
    font-size: 2em;
  }

  .page-resources-ww88-game-strategy-guide .hero-subtitle {
    font-size: 1em;
  }

  .page-resources-ww88-game-strategy-guide .section-title {
    font-size: 1.8em;
  }

  .page-resources-ww88-game-strategy-guide .game-article {
    padding: 25px;
  }

  .page-resources-ww88-game-strategy-guide .game-title {
    font-size: 1.5em;
  }

  .page-resources-ww88-game-strategy-guide .strategy-subtitle {
    font-size: 1.2em;
  }

  .page-resources-ww88-game-strategy-guide p, .page-resources-ww88-game-strategy-guide ul li {
    font-size: 0.95em;
  }
}