/* style/blog-fund-security-game-portal.css */

:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --text-main-color: #1F2D3D;
  --card-bg-color: #FFFFFF;
  --page-bg-color: #F4F7FB;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
}

.page-blog-fund-security-game-portal {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for light background */
  background-color: var(--page-bg-color); /* Default page background */
}

/* Ensure the main content area has appropriate padding */
.page-blog-fund-security-game-portal__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--card-bg-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-blog-fund-security-game-portal__article-body {
  padding: 0;
}

/* Hero Section */
.page-blog-fund-security-game-portal__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, header offset handled by body */
  background-color: var(--page-bg-color);
}

.page-blog-fund-security-game-portal__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-fund-security-game-portal__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-fund-security-game-portal__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-blog-fund-security-game-portal__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-fund-security-game-portal__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-blog-fund-security-game-portal__intro-text {
  font-size: 18px;
  color: var(--text-main-color);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-fund-security-game-portal__cta-wrapper {
  margin-top: 30px;
}

.page-blog-fund-security-game-portal__cta-wrapper--bottom {
  margin-top: 50px;
  text-align: center;
}

.page-blog-fund-security-game-portal__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.3);
  border: none;
  cursor: pointer;
}

.page-blog-fund-security-game-portal__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
}

/* Article Content Styles */
.page-blog-fund-security-game-portal__section-title {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.page-blog-fund-security-game-portal__sub-title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text-main-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-fund-security-game-portal__article-body p {
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-main-color);
}

.page-blog-fund-security-game-portal__article-body ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-blog-fund-security-game-portal__article-body li {
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--text-main-color);
}

.page-blog-fund-security-game-portal__article-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
details.page-blog-fund-security-game-portal__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
details.page-blog-fund-security-game-portal__faq-item summary.page-blog-fund-security-game-portal__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-fund-security-game-portal__faq-item summary.page-blog-fund-security-game-portal__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-fund-security-game-portal__faq-item summary.page-blog-fund-security-game-portal__faq-question:hover {
  background: #f5f5f5;
}
.page-blog-fund-security-game-portal__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main-color);
}
.page-blog-fund-security-game-portal__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}
details[open].page-blog-fund-security-game-portal__faq-item .page-blog-fund-security-game-portal__faq-toggle {
  transform: rotate(45deg);
}
details.page-blog-fund-security-game-portal__faq-item .page-blog-fund-security-game-portal__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 10px 10px;
  color: var(--text-main-color);
}
.page-blog-fund-security-game-portal__faq-answer p {
  margin-top: 10px;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-fund-security-game-portal__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-fund-security-game-portal__content-area {
    padding: 30px 15px;
    margin: 20px auto;
  }

  .page-blog-fund-security-game-portal__hero-image img,
  .page-blog-fund-security-game-portal__article-image {
    border-radius: 4px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-fund-security-game-portal__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-fund-security-game-portal__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  
  .page-blog-fund-security-game-portal__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-blog-fund-security-game-portal__intro-text {
    font-size: 16px;
  }

  .page-blog-fund-security-game-portal__section-title {
    font-size: clamp(20px, 6vw, 28px);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-fund-security-game-portal__sub-title {
    font-size: clamp(18px, 5vw, 24px);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-fund-security-game-portal__article-body p,
  .page-blog-fund-security-game-portal__article-body li {
    font-size: 15px;
  }

  details.page-blog-fund-security-game-portal__faq-item summary.page-blog-fund-security-game-portal__faq-question { padding: 15px; }
  .page-blog-fund-security-game-portal__faq-qtext { font-size: 15px; }
  .page-blog-fund-security-game-portal__faq-toggle {
    font-size: 20px;
    width: 24px;
  }
  .page-blog-fund-security-game-portal__faq-answer {
    padding: 0 15px 15px;
  }
}