/* style/blog-open88-registration-game-strategy.css */

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

.page-blog-open88-registration-game-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--open88-text-main); /* Default text color for dark background */
  background-color: var(--open88-background);
}

.page-blog-open88-registration-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-open88-registration-game-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  color: var(--open88-text-main);
  overflow: hidden;
  min-height: 500px;
}

.page-blog-open88-registration-game-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-open88-registration-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-open88-registration-game-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-blog-open88-registration-game-strategy__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--open88-text-main);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-open88-registration-game-strategy__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--open88-text-secondary);
}

.page-blog-open88-registration-game-strategy__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-open88-registration-game-strategy__btn-primary,
.page-blog-open88-registration-game-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-open88-registration-game-strategy__btn-primary {
  background: var(--open88-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-open88-registration-game-strategy__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-open88-registration-game-strategy__btn-secondary {
  background: transparent;
  color: var(--open88-text-main);
  border: 2px solid var(--open88-primary-color);
  box-shadow: none;
}

.page-blog-open88-registration-game-strategy__btn-secondary:hover {
  background: rgba(var(--open88-primary-color), 0.1);
  color: var(--open88-secondary-color);
}

.page-blog-open88-registration-game-strategy__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-blog-open88-registration-game-strategy__cta-center {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-blog-open88-registration-game-strategy__cta-buttons--bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--open88-divider-color);
}

/* Content Area */
.page-blog-open88-registration-game-strategy__content-area {
  padding: 60px 0;
  background-color: var(--open88-background);
  color: var(--open88-text-main);
}

.page-blog-open88-registration-game-strategy__section-title {
  font-size: 2.5em;
  color: var(--open88-text-main);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-open88-registration-game-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--open88-primary-color);
  border-radius: 2px;
}

.page-blog-open88-registration-game-strategy__sub-title {
  font-size: 1.8em;
  color: var(--open88-secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 4px solid var(--open88-gold-color);
  padding-left: 15px;
}

.page-blog-open88-registration-game-strategy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--open88-text-secondary);
}

.page-blog-open88-registration-game-strategy__feature-list,
.page-blog-open88-registration-game-strategy__bullet-list,
.page-blog-open88-registration-game-strategy__ordered-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-open88-registration-game-strategy__list-item {
  background-color: var(--open88-card-bg);
  border: 1px solid var(--open88-border-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: var(--open88-text-main);
}

.page-blog-open88-registration-game-strategy__list-item::before {
  content: '✓';
  color: var(--open88-glow-color);
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-blog-open88-registration-game-strategy__ordered-list .page-blog-open88-registration-game-strategy__list-item::before {
  content: counter(list-item) '. ';
  counter-increment: list-item;
  color: var(--open88-gold-color);
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-blog-open88-registration-game-strategy__image-full-width {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* FAQ Section */
.page-blog-open88-registration-game-strategy__faq-list {
  margin-top: 40px;
}

.page-blog-open88-registration-game-strategy__faq-item {
  background-color: var(--open88-card-bg);
  border: 1px solid var(--open88-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-open88-registration-game-strategy__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--open88-text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.page-blog-open88-registration-game-strategy__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-open88-registration-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-blog-open88-registration-game-strategy__faq-toggle {
  font-size: 1.5em;
  color: var(--open88-glow-color);
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.page-blog-open88-registration-game-strategy__faq-item[open] .page-blog-open88-registration-game-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-open88-registration-game-strategy__faq-answer {
  padding: 0 20px 20px 20px;
  color: var(--open88-text-secondary);
  font-size: 1em;
  border-top: 1px solid var(--open88-divider-color);
  margin-top: -1px; /* Overlap border */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-open88-registration-game-strategy__main-title {
    font-size: clamp(1.8em, 6vw, 3em);
  }
  .page-blog-open88-registration-game-strategy__section-title {
    font-size: 2em;
  }
  .page-blog-open88-registration-game-strategy__sub-title {
    font-size: 1.6em;
  }
  .page-blog-open88-registration-game-strategy__hero-content {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-open88-registration-game-strategy {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-open88-registration-game-strategy__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
    min-height: 400px;
  }
  .page-blog-open88-registration-game-strategy__main-title {
    font-size: clamp(1.5em, 8vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-blog-open88-registration-game-strategy__description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-blog-open88-registration-game-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-blog-open88-registration-game-strategy__btn-primary,
  .page-blog-open88-registration-game-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
    margin: 0 auto;
  }

  .page-blog-open88-registration-game-strategy__content-area {
    padding: 40px 0;
  }
  .page-blog-open88-registration-game-strategy__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-open88-registration-game-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-open88-registration-game-strategy__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-blog-open88-registration-game-strategy__text-block {
    font-size: 1em;
  }
  .page-blog-open88-registration-game-strategy__list-item {
    padding: 12px 15px;
    font-size: 0.95em;
  }
  .page-blog-open88-registration-game-strategy__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px 0;
  }
  .page-blog-open88-registration-game-strategy__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }
  .page-blog-open88-registration-game-strategy__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-blog-open88-registration-game-strategy__cta-buttons--bottom {
    margin-top: 40px;
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-open88-registration-game-strategy__main-title {
    font-size: clamp(1.2em, 9vw, 2em);
  }
  .page-blog-open88-registration-game-strategy__section-title {
    font-size: 1.5em;
  }
  .page-blog-open88-registration-game-strategy__sub-title {
    font-size: 1.2em;
  }
}