:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg: #11271B;
  --bg: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* General Body Styling (assuming shared.css provides padding-top for header offset) */
.page-blog-aa5-hot-games-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Default text color for the page */
  background-color: var(--bg);
  line-height: 1.6;
}

.page-blog-aa5-hot-games-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-aa5-hot-games-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px; /* Space below content */
  background-color: var(--deep-green);
  overflow: hidden;
}

.page-blog-aa5-hot-games-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog-aa5-hot-games-guide__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-aa5-hot-games-guide__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.page-blog-aa5-hot-games-guide__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-blog-aa5-hot-games-guide__hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-aa5-hot-games-guide__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* General Section Styling */
.page-blog-aa5-hot-games-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-aa5-hot-games-guide__section:last-of-type {
  border-bottom: none;
}

.page-blog-aa5-hot-games-guide__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.3;
}

.page-blog-aa5-hot-games-guide__text-block {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-aa5-hot-games-guide__keyword {
  color: var(--gold-color);
  font-weight: bold;
}

/* Buttons */
.page-blog-aa5-hot-games-guide__btn-primary,
.page-blog-aa5-hot-games-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-aa5-hot-games-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-aa5-hot-games-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-aa5-hot-games-guide__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-aa5-hot-games-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-main);
  transform: translateY(-2px);
}

/* Feature Cards */
.page-blog-aa5-hot-games-guide__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-aa5-hot-games-guide__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-aa5-hot-games-guide__card-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-aa5-hot-games-guide__card-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Game Cards */
.page-blog-aa5-hot-games-guide__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-aa5-hot-games-guide__game-card {
  text-align: center;
  overflow: hidden;
}

.page-blog-aa5-hot-games-guide__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-aa5-hot-games-guide__card-btn {
  margin-top: 20px;
  width: calc(100% - 2px); /* Adjust for border */
}

/* Register Section */
.page-blog-aa5-hot-games-guide__register-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-blog-aa5-hot-games-guide__register-text {
  flex: 1;
  min-width: 300px;
}

.page-blog-aa5-hot-games-guide__register-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-blog-aa5-hot-games-guide__register-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.page-blog-aa5-hot-games-guide__register-steps {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-aa5-hot-games-guide__register-steps li {
  background-color: var(--card-bg);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  position: relative;
  padding-left: 40px;
}

.page-blog-aa5-hot-games-guide__register-steps li strong {
  color: var(--primary-color);
}

.page-blog-aa5-hot-games-guide__register-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: var(--primary-color);
  color: var(--text-main);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.page-blog-aa5-hot-games-guide__register-steps li a {
  color: var(--gold-color);
  text-decoration: none;
}

.page-blog-aa5-hot-games-guide__register-steps li a:hover {
  text-decoration: underline;
}

.page-blog-aa5-hot-games-guide__register-cta {
  width: 100%;
  max-width: 300px;
}

/* FAQ Section */
.page-blog-aa5-hot-games-guide__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-aa5-hot-games-guide__faq-item {
  counter-increment: faq-counter;
}

.page-blog-aa5-hot-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.page-blog-aa5-hot-games-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-aa5-hot-games-guide__faq-question::before {
  content: counter(faq-counter) ". ";
  color: var(--gold-color);
  margin-right: 10px;
}

.page-blog-aa5-hot-games-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-aa5-hot-games-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-aa5-hot-games-guide__faq-item[open] .page-blog-aa5-hot-games-guide__faq-toggle {
  content: '−';
}

.page-blog-aa5-hot-games-guide__faq-answer {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.page-blog-aa5-hot-games-guide__faq-answer p {
  margin: 0;
  color: var(--text-secondary);
}

/* CTA Section */
.page-blog-aa5-hot-games-guide__cta-section {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-blog-aa5-hot-games-guide__cta-title {
  color: var(--gold-color);
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-aa5-hot-games-guide__cta-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-aa5-hot-games-guide__cta-button {
  min-width: 250px;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .page-blog-aa5-hot-games-guide__hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-aa5-hot-games-guide__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
  .page-blog-aa5-hot-games-guide__feature-list,
  .page-blog-aa5-hot-games-guide__game-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-blog-aa5-hot-games-guide__register-content {
    flex-direction: column;
  }
  .page-blog-aa5-hot-games-guide__register-text,
  .page-blog-aa5-hot-games-guide__register-image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-aa5-hot-games-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-aa5-hot-games-guide__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-aa5-hot-games-guide__hero-content {
    padding: 30px 15px;
  }
  .page-blog-aa5-hot-games-guide__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-blog-aa5-hot-games-guide__hero-description {
    font-size: 1rem;
  }
  .page-blog-aa5-hot-games-guide__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-aa5-hot-games-guide__btn-primary,
  .page-blog-aa5-hot-games-guide__btn-secondary,
  .page-blog-aa5-hot-games-guide a[class*="button"],
  .page-blog-aa5-hot-games-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-aa5-hot-games-guide__hero-cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  .page-blog-aa5-hot-games-guide__section {
    padding: 40px 0;
  }
  .page-blog-aa5-hot-games-guide__container {
    padding: 0 15px;
  }
  .page-blog-aa5-hot-games-guide__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-blog-aa5-hot-games-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-aa5-hot-games-guide__section,
  .page-blog-aa5-hot-games-guide__card,
  .page-blog-aa5-hot-games-guide__container,
  .page-blog-aa5-hot-games-guide__hero-image-wrapper,
  .page-blog-aa5-hot-games-guide__register-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }
  .page-blog-aa5-hot-games-guide__game-image {
    height: 180px;
  }
  .page-blog-aa5-hot-games-guide__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-blog-aa5-hot-games-guide__faq-answer {
    padding: 0 15px 15px;
  }
  .page-blog-aa5-hot-games-guide__cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .page-blog-aa5-hot-games-guide__cta-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-blog-aa5-hot-games-guide__hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .page-blog-aa5-hot-games-guide__section-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
  .page-blog-aa5-hot-games-guide__btn-primary,
  .page-blog-aa5-hot-games-guide__btn-secondary {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .page-blog-aa5-hot-games-guide__feature-list,
  .page-blog-aa5-hot-games-guide__game-cards {
    grid-template-columns: 1fr;
  }
  .page-blog-aa5-hot-games-guide__card {
    padding: 20px;
  }
  .page-blog-aa5-hot-games-guide__card-title {
    font-size: 1.3rem;
  }
  .page-blog-aa5-hot-games-guide__game-image {
    height: 150px;
  }
  .page-blog-aa5-hot-games-guide__register-steps li {
    padding: 12px 15px 12px 35px;
  }
  .page-blog-aa5-hot-games-guide__register-steps li::before {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    left: 10px;
    top: 12px;
  }
  .page-blog-aa5-hot-games-guide__faq-question {
    font-size: 0.95rem;
  }
}