/* style/blog-okkinh-popular-games-strategy.css */

/* Base styles for the page content */
.page-blog-okkinh-popular-games-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background (#0a0a0a), so text is light */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-blog-okkinh-popular-games-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: #0a0a0a;
  text-align: center;
}

.page-blog-okkinh-popular-games-strategy__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-okkinh-popular-games-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-okkinh-popular-games-strategy__hero-content {
  max-width: 900px;
  padding: 20px;
  margin-top: 20px;
}

.page-blog-okkinh-popular-games-strategy__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-okkinh-popular-games-strategy__hero-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-okkinh-popular-games-strategy__hero-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-okkinh-popular-games-strategy__btn-primary,
.page-blog-okkinh-popular-games-strategy__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-okkinh-popular-games-strategy__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-okkinh-popular-games-strategy__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-blog-okkinh-popular-games-strategy__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-okkinh-popular-games-strategy__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-okkinh-popular-games-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-okkinh-popular-games-strategy__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-blog-okkinh-popular-games-strategy__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast sections */
  color: #ffffff;
}

.page-blog-okkinh-popular-games-strategy__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 600;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-okkinh-popular-games-strategy__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog-okkinh-popular-games-strategy__paragraph strong {
  color: #26A9E0;
}

.page-blog-okkinh-popular-games-strategy__image-text-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-okkinh-popular-games-strategy__image-text-block .page-blog-okkinh-popular-games-strategy__image-content {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-okkinh-popular-games-strategy__image-text-block .page-blog-okkinh-popular-games-strategy__text-block {
  flex: 2;
  min-width: 300px;
}

.page-blog-okkinh-popular-games-strategy__sub-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #26A9E0;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-blog-okkinh-popular-games-strategy__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-okkinh-popular-games-strategy__game-card {
  background-color: #0a0a0a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  color: #ffffff;
  height: 100%; /* Ensure cards are same height */
}

.page-blog-okkinh-popular-games-strategy__card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-okkinh-popular-games-strategy__card-title {
  font-size: 1.3em;
  font-weight: 600;
  margin: 20px 20px 10px;
  color: #26A9E0;
}

.page-blog-okkinh-popular-games-strategy__card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-okkinh-popular-games-strategy__card-title a:hover {
  text-decoration: underline;
}

.page-blog-okkinh-popular-games-strategy__card-description {
  font-size: 0.95em;
  margin: 0 20px 20px;
  flex-grow: 1; /* Pushes button to bottom */
}

.page-blog-okkinh-popular-games-strategy__btn-small {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  background-color: #26A9E0;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  margin: 0 20px 20px;
  align-self: flex-start;
  transition: background-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-okkinh-popular-games-strategy__btn-small:hover {
  background-color: #1a8cc4;
}

.page-blog-okkinh-popular-games-strategy__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-okkinh-popular-games-strategy__list-item {
  background-color: #1a1a1a;
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-okkinh-popular-games-strategy__list-item .page-blog-okkinh-popular-games-strategy__sub-title {
  color: #26A9E0;
  margin-top: 0;
  font-size: 1.4em;
}

.page-blog-okkinh-popular-games-strategy__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  display: block;
  object-fit: cover;
}

.page-blog-okkinh-popular-games-strategy__cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.page-blog-okkinh-popular-games-strategy__cta-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  min-width: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-okkinh-popular-games-strategy__cta-item .page-blog-okkinh-popular-games-strategy__sub-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-okkinh-popular-games-strategy__app-download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-okkinh-popular-games-strategy__app-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  display: block;
}

.page-blog-okkinh-popular-games-strategy__app-info {
  flex: 1.5;
  min-width: 300px;
}

.page-blog-okkinh-popular-games-strategy__app-features {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-okkinh-popular-games-strategy__app-features .page-blog-okkinh-popular-games-strategy__list-item {
  background-color: transparent;
  border-left: none;
  padding: 5px 0;
  margin-bottom: 5px;
  box-shadow: none;
}

.page-blog-okkinh-popular-games-strategy__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-blog-okkinh-popular-games-strategy__commitment-item {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-blog-okkinh-popular-games-strategy__commitment-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-okkinh-popular-games-strategy__commitment-item .page-blog-okkinh-popular-games-strategy__sub-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-top: 0;
}

.page-blog-okkinh-popular-games-strategy__cta-footer {
  text-align: center;
  margin-top: 40px;
}

.page-blog-okkinh-popular-games-strategy__faq-list {
  margin-top: 30px;
}

.page-blog-okkinh-popular-games-strategy__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-okkinh-popular-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: 600;
  color: #ffffff;
  background-color: #26A9E0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
  -webkit-touch-callout: none; /* Disable text selection on iOS */
  -webkit-user-select: none;   /* Disable text selection on Safari */
  -moz-user-select: none;      /* Disable text selection on Firefox */
  -ms-user-select: none;       /* Disable text selection on IE/Edge */
  user-select: none;           /* Standard property */
}

.page-blog-okkinh-popular-games-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-okkinh-popular-games-strategy__faq-qtext {
  flex-grow: 1;
}

.page-blog-okkinh-popular-games-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-okkinh-popular-games-strategy__faq-item[open] .page-blog-okkinh-popular-games-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-okkinh-popular-games-strategy__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #f0f0f0;
  background-color: #1a1a1a;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-okkinh-popular-games-strategy__hero-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .page-blog-okkinh-popular-games-strategy__content-area {
    padding: 40px 15px;
  }
  .page-blog-okkinh-popular-games-strategy__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-okkinh-popular-games-strategy {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-okkinh-popular-games-strategy__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }
  .page-blog-okkinh-popular-games-strategy__hero-image-wrapper {
    max-height: 400px;
  }
  .page-blog-okkinh-popular-games-strategy__main-title {
    font-size: 2em;
  }
  .page-blog-okkinh-popular-games-strategy__hero-description {
    font-size: 1em;
  }
  .page-blog-okkinh-popular-games-strategy__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-blog-okkinh-popular-games-strategy__btn-primary,
  .page-blog-okkinh-popular-games-strategy__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px;
    text-align: center;
  }
  .page-blog-okkinh-popular-games-strategy__content-area {
    padding: 30px 15px !important;
  }
  .page-blog-okkinh-popular-games-strategy__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-blog-okkinh-popular-games-strategy__image-text-block {
    flex-direction: column;
    gap: 20px;
  }
  .page-blog-okkinh-popular-games-strategy__image-text-block .page-blog-okkinh-popular-games-strategy__image-content,
  .page-blog-okkinh-popular-games-strategy__image-text-block .page-blog-okkinh-popular-games-strategy__text-block {
    min-width: unset;
    width: 100%;
  }
  .page-blog-okkinh-popular-games-strategy__game-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-okkinh-popular-games-strategy__game-card {
    margin-bottom: 20px;
  }
  .page-blog-okkinh-popular-games-strategy__card-image {
    height: 180px;
  }
  .page-blog-okkinh-popular-games-strategy__list-item {
    padding: 15px;
  }
  .page-blog-okkinh-popular-games-strategy__content-image {
    margin-top: 20px;
  }
  .page-blog-okkinh-popular-games-strategy__cta-block {
    flex-direction: column;
    gap: 20px;
  }
  .page-blog-okkinh-popular-games-strategy__cta-item {
    min-width: unset;
    width: 100%;
    padding: 25px;
  }
  .page-blog-okkinh-popular-games-strategy__app-download {
    flex-direction: column;
    gap: 20px;
  }
  .page-blog-okkinh-popular-games-strategy__app-image,
  .page-blog-okkinh-popular-games-strategy__app-info {
    min-width: unset;
    width: 100%;
  }
  .page-blog-okkinh-popular-games-strategy__commitment-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-okkinh-popular-games-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-okkinh-popular-games-strategy__faq-answer {
    padding: 15px 20px;
  }

  /* Image responsive enforcement */
  .page-blog-okkinh-popular-games-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-okkinh-popular-games-strategy__section,
  .page-blog-okkinh-popular-games-strategy__card,
  .page-blog-okkinh-popular-games-strategy__container,
  .page-blog-okkinh-popular-games-strategy__hero-section,
  .page-blog-okkinh-popular-games-strategy__content-area,
  .page-blog-okkinh-popular-games-strategy__image-text-block,
  .page-blog-okkinh-popular-games-strategy__app-download,
  .page-blog-okkinh-popular-games-strategy__commitment-grid,
  .page-blog-okkinh-popular-games-strategy__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-okkinh-popular-games-strategy__hero-cta-buttons,
  .page-blog-okkinh-popular-games-strategy__cta-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    overflow: hidden !important;
  }
}