/* style/blog-chien-thuat-choi-game-5mb.css */

:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg: #10233F;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold-color: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy: #08162B;
}

.page-blog-chien-thuat-choi-game-5mb {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for dark body background */
  background-color: var(--deep-navy); /* Ensure consistency with body background */
}

.page-blog-chien-thuat-choi-game-5mb__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-blog-chien-thuat-choi-game-5mb__hero-section {
  padding-top: 10px; /* Small top padding for fixed header */
  padding-bottom: 60px;
  background-color: var(--deep-navy);
  color: var(--text-main);
}

.page-blog-chien-thuat-choi-game-5mb__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 40px 16px;
}

.page-blog-chien-thuat-choi-game-5mb__hero-image {
  flex: 1 1 45%;
  text-align: center;
  order: 2; /* Image on the right for desktop */
}

.page-blog-chien-thuat-choi-game-5mb__hero-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-blog-chien-thuat-choi-game-5mb__hero-content {
  flex: 1 1 50%;
  order: 1; /* Content on the left for desktop */
}

.page-blog-chien-thuat-choi-game-5mb__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color);
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-chien-thuat-choi-game-5mb__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-blog-chien-thuat-choi-game-5mb__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-blog-chien-thuat-choi-game-5mb__cta-buttons--center {
  justify-content: center;
  margin-top: 30px;
}

.page-blog-chien-thuat-choi-game-5mb__btn-primary,
.page-blog-chien-thuat-choi-game-5mb__btn-secondary,
.page-blog-chien-thuat-choi-game-5mb a[class*="button"],
.page-blog-chien-thuat-choi-game-5mb a[class*="btn"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  cursor: pointer;
}

.page-blog-chien-thuat-choi-game-5mb__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-chien-thuat-choi-game-5mb__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-chien-thuat-choi-game-5mb__btn-secondary {
  background: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-chien-thuat-choi-game-5mb__btn-secondary:hover {
  background: var(--gold-color);
  color: var(--deep-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-chien-thuat-choi-game-5mb__intro-section {
  background-color: var(--card-bg);
  color: var(--text-main);
  padding: 80px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-chien-thuat-choi-game-5mb__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold-color);
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-blog-chien-thuat-choi-game-5mb__text-block {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary);
  text-align: justify;
}

.page-blog-chien-thuat-choi-game-5mb__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-blog-chien-thuat-choi-game-5mb__feature-item {
  text-align: center;
  background-color: var(--deep-navy);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
}

.page-blog-chien-thuat-choi-game-5mb__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold-color);
  box-shadow: 0 0 15px var(--glow-color);
}

.page-blog-chien-thuat-choi-game-5mb__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-blog-chien-thuat-choi-game-5mb__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gold-color);
}

.page-blog-chien-thuat-choi-game-5mb__feature-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.page-blog-chien-thuat-choi-game-5mb__content-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-chien-thuat-choi-game-5mb__dark-bg {
  background-color: var(--deep-navy);
  color: var(--text-main);
}

.page-blog-chien-thuat-choi-game-5mb__light-bg {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-chien-thuat-choi-game-5mb__sub-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--gold-color);
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.3);
}

.page-blog-chien-thuat-choi-game-5mb__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-chien-thuat-choi-game-5mb__faq-section {
  padding: 80px 0;
  background-color: var(--deep-navy);
  color: var(--text-main);
}