:root {
  --primary-color: #26A9E0;
  --secondary-color: #EA7C07; /* Màu đăng nhập */
  --text-color: #333333;
  --light-text-color: #ffffff;
  --background-light: #ffffff;
  --background-dark: #26A9E0;
  --border-color: #e0e0e0;
}

.page-blog-unlock-online-entertainment {
  font-family: 'Arial', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-light); /* Assuming body background is light for default text */
}

/* Base container styling */
.page-blog-unlock-online-entertainment__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-unlock-online-entertainment__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-unlock-online-entertainment__section-title {
  font-size: clamp(28px, 4vw, 36px); /* Using clamp for H2 */
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-blog-unlock-online-entertainment__text-block {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 17px;
  color: var(--text-color);
}

/* HERO Section */
.page-blog-unlock-online-entertainment__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(135deg, var(--primary-color), #4db9f5);
  color: var(--light-text-color);
  overflow: hidden; /* Ensure no overflow from images */
}

.page-blog-unlock-online-entertainment__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure it takes full width within max-width */
}

.page-blog-unlock-online-entertainment__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden; /* For image border-radius */
}

.page-blog-unlock-online-entertainment__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-blog-unlock-online-entertainment__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-unlock-online-entertainment__main-title {
  font-size: clamp(32px, 5vw, 48px); /* H1 using clamp */
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--light-text-color);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-unlock-online-entertainment__hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-text-color);
}

.page-blog-unlock-online-entertainment__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-blog-unlock-online-entertainment__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color); /* Login color for primary CTA */
  color: var(--light-text-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure buttons don't overflow */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-unlock-online-entertainment__cta-button--secondary {
  background: var(--light-text-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-unlock-online-entertainment__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-unlock-online-entertainment__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--light-text-color);
}

/* General button styling for smaller buttons */
.page-blog-unlock-online-entertainment__btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--light-text-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 15px;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-unlock-online-entertainment__btn-small:hover {
  background: #1e87bb; /* Darkened version of #26A9E0 */
}

/* Image styling for content sections */
.page-blog-unlock-online-entertainment img {
  max-width: 100%;
  height: auto;
  display: block; /* Remove extra space below images */
  margin: 0 auto 30px auto;
  border-radius: 8px;
}

/* Features Grid */
.page-blog-unlock-online-entertainment__features-grid,
.page-blog-unlock-online-entertainment__game-cards-grid,
.page-blog-unlock-online-entertainment__promotions-grid,
.page-blog-unlock-online-entertainment__security-grid,
.page-blog-unlock-online-entertainment__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-unlock-online-entertainment__feature-card,
.page-blog-unlock-online-entertainment__game-card,
.page-blog-unlock-online-entertainment__promo-card,
.page-blog-unlock-online-entertainment__security-item,
.page-blog-unlock-online-entertainment__step-card {
  background: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-blog-unlock-online-entertainment__feature-title,
.page-blog-unlock-online-entertainment__game-title,
.page-blog-unlock-online-entertainment__promo-title,
.page-blog-unlock-online-entertainment__security-title,
.page-blog-unlock-online-entertainment__step-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-unlock-online-entertainment__feature-card p,
.page-blog-unlock-online-entertainment__promo-card p,
.page-blog-unlock-online-entertainment__security-item p {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 0;
}

.page-blog-unlock-online-entertainment__game-card img {
  margin-bottom: 20px;
  border-radius: 5px;
  width: 100%;
  height: 200px; /* Fixed height for consistency in cards */
  object-fit: cover;
}

.page-blog-unlock-online-entertainment__game-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-unlock-online-entertainment__game-title a:hover {
  color: var(--secondary-color);
}

/* Promotions Section */
.page-blog-unlock-online-entertainment__promotions-section {
  background: var(--background-dark); /* Using brand primary as dark background */
  color: var(--light-text-color);
}

.page-blog-unlock-online-entertainment__promotions-section .page-blog-unlock-online-entertainment__section-title {
  color: var(--light-text-color);
}

.page-blog-unlock-online-entertainment__promotions-section .page-blog-unlock-online-entertainment__text-block {
  color: var(--light-text-color);
}

.page-blog-unlock-online-entertainment__promo-card {
  background: rgba(255, 255, 255, 0.15); /* Slightly transparent white for cards on dark background */
  color: var(--light-text-color);
}

.page-blog-unlock-online-entertainment__promo-card .page-blog-unlock-online-entertainment__promo-title {
  color: var(--light-text-color);
}

.page-blog-unlock-online-entertainment__promo-card p {
  color: var(--light-text-color);
}

.page-blog-unlock-online-entertainment__promo-card .page-blog-unlock-online-entertainment__btn-small {
  background: var(--secondary-color); /* Use secondary color for CTA on dark background */
}

.page-blog-unlock-online-entertainment__promo-card .page-blog-unlock-online-entertainment__btn-small:hover {
  background: #c26706; /* Darkened secondary color */
}

.page-blog-unlock-online-entertainment__cta-center {
  margin-top: 50px;
}

/* Seamless Experience Section */
.page-blog-unlock-online-entertainment__app-download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-blog-unlock-online-entertainment__app-download img {
  flex: 1 1 300px;
  margin: 0;
  border-radius: 5px;
  object-fit: contain;
  height: 250px; /* Fixed height for app image */
}

.page-blog-unlock-online-entertainment__app-content {
  flex: 2 1 400px;
  text-align: left;
}

.page-blog-unlock-online-entertainment__app-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-unlock-online-entertainment__app-content p {
  font-size: 17px;
  color: var(--text-color);
  margin-bottom: 25px;
}

.page-blog-unlock-online-entertainment__payment-methods {
  margin-top: 60px;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-blog-unlock-online-entertainment__payment-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-blog-unlock-online-entertainment__payment-methods img {
  margin-top: 20px;
  margin-bottom: 30px;
  border-radius: 5px;
  object-fit: contain;
   /* Fixed height for payment methods image */
}

/* Security & Support Section */
.page-blog-unlock-online-entertainment__light-bg {
  background-color: #f5f5f5; /* Light grey background */
  color: var(--text-color);
}

.page-blog-unlock-online-entertainment__security-item {
  background: var(--background-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* How to Start Section */
.page-blog-unlock-online-entertainment__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--light-text-color);
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-blog-unlock-online-entertainment__faq-section {
  background-color: var(--background-light);
  padding-bottom: 80px;
}

.page-blog-unlock-online-entertainment__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

details.page-blog-unlock-online-entertainment__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--background-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
details.page-blog-unlock-online-entertainment__faq-item summary.page-blog-unlock-online-entertainment__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-unlock-online-entertainment__faq-item summary.page-blog-unlock-online-entertainment__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-unlock-online-entertainment__faq-item summary.page-blog-unlock-online-entertainment__faq-question:hover {
  background: #f5f5f5;
}
.page-blog-unlock-online-entertainment__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--primary-color);
}
.page-blog-unlock-online-entertainment__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-blog-unlock-online-entertainment__faq-item .page-blog-unlock-online-entertainment__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.7;
}
.page-blog-unlock-online-entertainment__faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-blog-unlock-online-entertainment__conclusion.page-blog-unlock-online-entertainment__dark-section {
  background: var(--background-dark); /* Using brand primary as dark background */
  color: var(--light-text-color);
}

.page-blog-unlock-online-entertainment__conclusion .page-blog-unlock-online-entertainment__section-title {
  color: var(--light-text-color);
}

.page-blog-unlock-online-entertainment__conclusion .page-blog-unlock-online-entertainment__text-block {
  color: var(--light-text-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-unlock-online-entertainment__container {
    padding: 0 15px;
  }
  .page-blog-unlock-online-entertainment__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }
  .page-blog-unlock-online-entertainment__hero-description {
    font-size: 17px;
  }
  .page-blog-unlock-online-entertainment__cta-button {
    padding: 14px 35px;
    font-size: 17px;
  }
  .page-blog-unlock-online-entertainment__section {
    padding: 50px 0;
  }
  .page-blog-unlock-online-entertainment__section-title {
    font-size: clamp(26px, 3.5vw, 32px);
  }
  .page-blog-unlock-online-entertainment__text-block {
    font-size: 16px;
  }
  .page-blog-unlock-online-entertainment__feature-title,
  .page-blog-unlock-online-entertainment__game-title,
  .page-blog-unlock-online-entertainment__promo-title,
  .page-blog-unlock-online-entertainment__security-title,
  .page-blog-unlock-online-entertainment__app-title,
  .page-blog-unlock-online-entertainment__payment-title,
  .page-blog-unlock-online-entertainment__step-title {
    font-size: 20px;
  }
  .page-blog-unlock-online-entertainment__app-download img {
    height: 200px;
  }
  .page-blog-unlock-online-entertainment__payment-methods img {
    
  }
}

@media (max-width: 768px) {
  .page-blog-unlock-online-entertainment__hero-section {
    padding-top: 10px !important; /* Enforce small top padding */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-unlock-online-entertainment__main-title {
    font-size: clamp(28px, 6vw, 38px);
  }
  .page-blog-unlock-online-entertainment__hero-description {
    font-size: 16px;
  }
}