/* style/blog-the-rise-of-vn100-game.css */

:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-blog-the-rise-of-vn100-game {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for dark body background */
  background-color: var(--background-color);
}

.page-blog-the-rise-of-vn100-game__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-the-rise-of-vn100-game__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  padding-bottom: 60px;
  background-color: var(--background-color);
}

.page-blog-the-rise-of-vn100-game__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog-the-rise-of-vn100-game__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-the-rise-of-vn100-game__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly for visual effect */
  background-color: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
  border: 1px solid var(--border-color);
}

.page-blog-the-rise-of-vn100-game__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 1px;
}

.page-blog-the-rise-of-vn100-game__hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-the-rise-of-vn100-game__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-blog-the-rise-of-vn100-game__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-the-rise-of-vn100-game__cta-button--small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.page-blog-the-rise-of-vn100-game__cta-button--secondary {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.page-blog-the-rise-of-vn100-game__cta-button--secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-blog-the-rise-of-vn100-game__content-area,
.page-blog-the-rise-of-vn100-game__security-section,
.page-blog-the-rise-of-vn100-game__future-outlook-section,
.page-blog-the-rise-of-vn100-game__faq-section {
  padding: 60px 0;
  background-color: var(--background-color);
  color: var(--text-main);
}

.page-blog-the-rise-of-vn100-game__features-section,
.page-blog-the-rise-of-vn100-game__community-support-section,
.page-blog-the-rise-of-vn100-game__conclusion-section {
  padding: 60px 0;
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-the-rise-of-vn100-game__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-the-rise-of-vn100-game__subsection-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-the-rise-of-vn100-game__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-the-rise-of-vn100-game__paragraph strong {
    color: var(--text-main);
}

.page-blog-the-rise-of-vn100-game__text-link {
    color: var(--glow-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-the-rise-of-vn100-game__text-link:hover {
    color: var(--gold-color);
    text-decoration: underline;
}

.page-blog-the-rise-of-vn100-game__feature-grid,
.page-blog-the-rise-of-vn100-game__community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-the-rise-of-vn100-game__feature-card,
.page-blog-the-rise-of-vn100-game__community-card,
.page-blog-the-rise-of-vn100-game__support-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-the-rise-of-vn100-game__feature-image,
.page-blog-the-rise-of-vn100-game__community-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-the-rise-of-vn100-game__card-title {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-the-rise-of-vn100-game__card-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-blog-the-rise-of-vn100-game__game-list,
.page-blog-the-rise-of-vn100-game__promotion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px auto;
}

.page-blog-the-rise-of-vn100-game__game-list li,
.page-blog-the-rise-of-vn100-game__promotion-list li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.page-blog-the-rise-of-vn100-game__game-list li::before,
.page-blog-the-rise-of-vn100-game__promotion-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.page-blog-the-rise-of-vn100-game__security-content,
.page-blog-the-rise-of-vn100-game__future-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-the-rise-of-vn100-game__security-text,
.page-blog-the-rise-of-vn100-game__future-text {
  flex: 1;
  min-width: 300px;
}

.page-blog-the-rise-of-vn100-game__security-image-wrapper,
.page-blog-the-rise-of-vn100-game__future-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-blog-the-rise-of-vn100-game__security-image,
.page-blog-the-rise-of-vn100-game__future-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-the-rise-of-vn100-game__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-blog-the-rise-of-vn100-game__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-the-rise-of-vn100-game__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-the-rise-of-vn100-game__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: var(--deep-green);
  color: var(--text-main);
  font-weight: bold;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border-color);
}

.page-blog-the-rise-of-vn100-game__faq-question:hover {
  background-color: var(--primary-color);
}

.page-blog-the-rise-of-vn100-game__faq-item[open] > .page-blog-the-rise-of-vn100-game__faq-question {
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-the-rise-of-vn100-game__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-the-rise-of-vn100-game__faq-item[open] .page-blog-the-rise-of-vn100-game__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-the-rise-of-vn100-game__faq-answer {
  padding: 15px 25px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.page-blog-the-rise-of-vn100-game__faq-answer p {
    margin-bottom: 10px;
}

/* Details tag specific styling */
.page-blog-the-rise-of-vn100-game__faq-item summary {
    list-style: none;
}

.page-blog-the-rise-of-vn100-game__faq-item summary::-webkit-details-marker {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-the-rise-of-vn100-game__hero-content {
    margin-top: -60px;
    padding: 30px 20px;
  }

  .page-blog-the-rise-of-vn100-game__feature-grid,
  .page-blog-the-rise-of-vn100-game__community-grid {
    gap: 20px;
  }

  .page-blog-the-rise-of-vn100-game__security-content,
  .page-blog-the-rise-of-vn100-game__future-content {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-the-rise-of-vn100-game__security-image-wrapper,
  .page-blog-the-rise-of-vn100-game__future-image-wrapper {
    order: -1; /* Image above text for smaller screens */
  }
}

@media (max-width: 768px) {
  .page-blog-the-rise-of-vn100-game {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-the-rise-of-vn100-game__container {
    padding: 0 15px;
  }

  .page-blog-the-rise-of-vn100-game__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-the-rise-of-vn100-game__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
  }

  .page-blog-the-rise-of-vn100-game__main-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .page-blog-the-rise-of-vn100-game__hero-description {
    font-size: 1rem;
  }

  .page-blog-the-rise-of-vn100-game__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-the-rise-of-vn100-game__subsection-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .page-blog-the-rise-of-vn100-game__paragraph {
    font-size: 0.95rem;
  }

  .page-blog-the-rise-of-vn100-game__feature-grid,
  .page-blog-the-rise-of-vn100-game__community-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-blog-the-rise-of-vn100-game__feature-card,
  .page-blog-the-rise-of-vn100-game__community-card,
  .page-blog-the-rise-of-vn100-game__support-card {
    padding: 25px;
  }

  .page-blog-the-rise-of-vn100-game__cta-button {
    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-the-rise-of-vn100-game__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Mobile image responsiveness */
  .page-blog-the-rise-of-vn100-game img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-the-rise-of-vn100-game__section,
  .page-blog-the-rise-of-vn100-game__card,
  .page-blog-the-rise-of-vn100-game__container,
  .page-blog-the-rise-of-vn100-game__hero-image-wrapper,
  .page-blog-the-rise-of-vn100-game__security-image-wrapper,
  .page-blog-the-rise-of-vn100-game__future-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-the-rise-of-vn100-game__hero-section {
    padding-top: 10px !important; /* body already handles header offset */
  }
  .page-blog-the-rise-of-vn100-game__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-blog-the-rise-of-vn100-game__faq-answer {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}