/* style/blog-j33-official-website-deep-dive.css */

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

/* General Page Styling */
.page-blog-j33-official-website-deep-dive {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--j33-text-main);
  background-color: var(--j33-background); /* Body background handled by shared.css var(--background-color) */
}

.page-blog-j33-official-website-deep-dive__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: var(--j33-background);
  color: var(--j33-text-main);
}

.page-blog-j33-official-website-deep-dive__section-title {
  font-size: 2.5em;
  color: var(--j33-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-j33-official-website-deep-dive__category-title,
.page-blog-j33-official-website-deep-dive__block-title {
  font-size: 1.8em;
  color: var(--j33-secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-j33-official-website-deep-dive p {
  margin-bottom: 15px;
  color: var(--j33-text-main);
}

.page-blog-j33-official-website-deep-dive__unordered-list,
.page-blog-j33-official-website-deep-dive__ordered-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-j33-official-website-deep-dive__unordered-list li,
.page-blog-j33-official-website-deep-dive__ordered-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--j33-text-main);
}

.page-blog-j33-official-website-deep-dive__unordered-list li::before {
  content: '•';
  color: var(--j33-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-j33-official-website-deep-dive__ordered-list li::before {
  content: counter(list-item) '. ';
  counter-increment: list-item;
  color: var(--j33-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Buttons */
.page-blog-j33-official-website-deep-dive__btn-primary,
.page-blog-j33-official-website-deep-dive__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-j33-official-website-deep-dive__btn-primary {
  background: var(--j33-button-gradient);
  color: #ffffff;
  border: none;
}

.page-blog-j33-official-website-deep-dive__btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 15px var(--j33-glow);
}

.page-blog-j33-official-website-deep-dive__btn-secondary {
  background: transparent;
  color: var(--j33-secondary-color);
  border: 2px solid var(--j33-secondary-color);
}

.page-blog-j33-official-website-deep-dive__btn-secondary:hover {
  background: var(--j33-secondary-color);
  color: #ffffff;
  box-shadow: 0 0 10px var(--j33-secondary-color);
}

.page-blog-j33-official-website-deep-dive__cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-j33-official-website-deep-dive__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  background-color: var(--j33-deep-green);
}

.page-blog-j33-official-website-deep-dive__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-j33-official-website-deep-dive__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-j33-official-website-deep-dive__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

.page-blog-j33-official-website-deep-dive__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Use clamp for H1 font size */
  color: var(--j33-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-blog-j33-official-website-deep-dive__hero-description {
  font-size: 1.1em;
  color: var(--j33-text-secondary);
  margin-bottom: 30px;
}

/* Image Styling */
.page-blog-j33-official-website-deep-dive__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-blog-j33-official-website-deep-dive__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

/* Game Categories */
.page-blog-j33-official-website-deep-dive__game-category {
  background-color: var(--j33-card-bg);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid var(--j33-border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-j33-official-website-deep-dive__game-category .page-blog-j33-official-website-deep-dive__btn-primary {
  margin-top: 20px;
}

/* FAQ Section */
.page-blog-j33-official-website-deep-dive__faq-list {
  margin-top: 30px;
}

.page-blog-j33-official-website-deep-dive__faq-item {
  background-color: var(--j33-card-bg);
  border: 1px solid var(--j33-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--j33-text-main);
}

.page-blog-j33-official-website-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: var(--j33-text-main);
  background-color: var(--j33-deep-green);
  border-bottom: 1px solid var(--j33-border);
}

.page-blog-j33-official-website-deep-dive__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-j33-official-website-deep-dive__faq-question::marker {
  display: none;
}

.page-blog-j33-official-website-deep-dive__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--j33-gold);
  transition: transform 0.3s ease;
}

.page-blog-j33-official-website-deep-dive__faq-item[open] .page-blog-j33-official-website-deep-dive__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-j33-official-website-deep-dive__faq-answer {
  padding: 15px 20px;
  color: var(--j33-text-secondary);
  background-color: var(--j33-card-bg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-j33-official-website-deep-dive {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-j33-official-website-deep-dive__content-area {
    padding: 20px 15px;
  }

  .page-blog-j33-official-website-deep-dive__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-blog-j33-official-website-deep-dive__category-title,
  .page-blog-j33-official-website-deep-dive__block-title {
    font-size: 1.5em;
  }

  .page-blog-j33-official-website-deep-dive__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-j33-official-website-deep-dive__hero-content {
    padding: 15px;
  }

  .page-blog-j33-official-website-deep-dive__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-blog-j33-official-website-deep-dive__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-j33-official-website-deep-dive__btn-primary,
  .page-blog-j33-official-website-deep-dive__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile image responsiveness */
  .page-blog-j33-official-website-deep-dive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-j33-official-website-deep-dive__image-wrapper,
  .page-blog-j33-official-website-deep-dive__hero-image-wrapper,
  .page-blog-j33-official-website-deep-dive__game-category {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-j33-official-website-deep-dive__hero-image-wrapper {
    max-height: unset;
  }

  .page-blog-j33-official-website-deep-dive__faq-question {
    padding: 12px 15px;
  }

  .page-blog-j33-official-website-deep-dive__faq-answer {
    padding: 12px 15px;
  }

  .page-blog-j33-official-website-deep-dive__ordered-list li,
  .page-blog-j33-official-website-deep-dive__unordered-list li {
    padding-left: 20px;
  }
}