    .blackmarket-container {
        display: flex;
        gap: 24px;
        max-width: 1300px;
        margin: 60px auto;
        padding: 0 20px;
        flex-wrap: nowrap;
    }

    .blackmarket-info-wrap {
        position: relative;
        background-color: #1c1c1c;
        padding: 40px 20px;
        border-radius: 16px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        color: #f5f5f5;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
    }

    .blackmarket-info-badge {
        position: absolute;
        top: -20px;
        left: -20px;
        width: 80px;
        z-index: 1;
    }

    .blackmarket-info-bg {
        position: absolute;
        top: 0px;
        left: 195px;
        /* width: 80px; */
        z-index: 1;
    }

    .badge-right {
        left: auto;
        right: -20px;
        transform: rotate(10deg);
    }

    .blackmarket-info-badge img {
        width: 100%;
        opacity: 0.8;
    }

    .blackmarket-info-bg img {
        width: 100%;
        opacity: 0.1;
    }

    .blackmarket-info-inner {
        position: relative;
        z-index: 2;
        max-width: 100%;
        margin: 0 auto;
    }

    .blackmarket-info-title {
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 20px;
        border-left: 5px solid #e53339;
        padding-left: 14px;
    }

    .blackmarket-info-text p {
        font-size: 15px;
        line-height: 1.7;
        color: #d0d0d0;
        margin-bottom: 14px;
    }

    .blackmarket-info-text strong,
    .blackmarket-info-text b {
        color: #ffcc00;
    }

    .blackmarket-info-links {
        margin-top: 20px;
        display: flex;
        gap: 10px;
    }

    .blackmarket-info-links .btn {
        padding: 11px 18px;
        font-size: 14px;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        transition: background-color 0.3s, transform 0.2s;
    }

    .blackmarket-info-links .btn-dark {
        background-color: #e53339;
        color: #fff;
    }

    .blackmarket-info-links .btn-dark:hover {
        background-color: #c52228;
        transform: scale(1.03);
    }

    .blackmarket-info-links .btn-secondary {
        background-color: #333;
        color: #ddd;
    }

    .blackmarket-info-links .btn-secondary:hover {
        background-color: #444;
        color: #fff;
        transform: scale(1.03);
    }

    @media (max-width: 768px) {
        .blackmarket-container {
            flex-direction: column;
            gap: 32px;
        }

        .blackmarket-info-title {
            font-size: 20px;
        }

        .blackmarket-info-text p {
            font-size: 14px;
            line-height: 1.6;
        }

        .blackmarket-info-links {
            flex-direction: column;
        }

        .blackmarket-info-links .btn {
            width: 100%;
            text-align: center;
        }

        .blackmarket-info-badge {
            display: none;
        }
    }


    /* 활동 통계 전체 섹션 */
    .blackmarket-stats-wrap {
        background-color: #1c1c1c;
        position: relative;
        /* 반드시 있어야 ::before가 이 기준으로 고정됨 */
        overflow: hidden;
        /* ::before 이미지가 바깥으로 나가지 않도록 */
        color: #fff;
        padding: 30px 20px;
        margin: 40px auto;
        max-width: 1300px;
        border-radius: 12px;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    }

    /* 배경 이미지 전용 레이어 */
    .blackmarket-stats-wrap::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        background-image: url('/theme/eb4_comm_005/image/blackmarket/bg-bm.png');
        background-repeat: no-repeat;
        background-position: 0px -860px;
        background-size: cover;
        opacity: 0.15;
        /* 투명도 조절 */
        z-index: 0;
        pointer-events: none;
        border-radius: inherit;
        /* 부모 둥근 테두리 따라감 */
    }

    /* 내부 콘텐츠는 항상 위로 */
    .blackmarket-stats-wrap>* {
        position: relative;
        z-index: 1;
    }



    .blackmarket-stats-title {
        font-size: 22px;
        margin-bottom: 20px;
        color: #fff;
        font-weight: 700;
        text-align: center;
    }

    .blackmarket-stats-grid {
        display: flex;
        gap: 12px;
        justify-content: space-between;
        flex-wrap: wrap;
        text-align: center;
    }

    .blackmarket-stat-box {
        flex: 1;
        min-width: 130px;
        padding: 16px 10px;
        background-color: #1c1c1c;
        border-radius: 8px;
        border: 1px solid #333;
    }

    .blackmarket-stat-box strong {
        display: block;
        font-size: 20px;
        font-weight: 700;
        color: #ffcc00;
        margin-bottom: 4px;
    }

    .blackmarket-stat-box span {
        font-size: 13px;
        color: #ccc;
    }

    @media (max-width: 768px) {
        .blackmarket-stats-grid {
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .blackmarket-stat-box {
            flex: 0 0 auto;
            min-width: 0px;
        }

        .blackmarket-stat-box {
            flex: 1;
            min-width: 0px;
            padding: 5px 10px;
            background-color: #1c1c1c;
            border-radius: 8px;
            border: 1px solid #333;
        }

        .blackmarket-stats-grid {
            display: flex;
            gap: 5px;
            justify-content: space-between;
            flex-wrap: wrap;
            text-align: center;
        }

        .blackmarket-stats-wrap {
            background: #111;
            color: #fff;
            padding: 30px 20px;
            margin: 10px auto;
            max-width: 1300px;
            border-radius: 12px;
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
        }

        .blackmarket-stats-wrap::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            background-image: url('/theme/eb4_comm_005/image/blackmarket/img/탐정.png');
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            opacity: 0.15;
            /* 투명도 조절 */
            z-index: 0;
            pointer-events: none;
            border-radius: inherit;
            /* 부모 둥근 테두리 따라감 */
        }
    }


/* 전체 FAQ 및 카테고리 래퍼 */
.blackmarket-faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 20px;
  }
  
  /* 각 섹션 (FAQ, 카테고리 소개) */
  .blackmarket-faq-wrap,
  .blackmarket-overview-wrap {
    flex: 1;
    min-width: 280px;
    background: #1c1c1c;
    color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
  }
  
  /* 타이틀 공통 */
  .blackmarket-faq-title,
  .overview-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffcc00;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* FAQ 항목 */
  .faq-item {
    margin-bottom: 12px;
  }
  
  .faq-question {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    color: #fff;
    background: #2a2a2a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .faq-question:hover {
    background: #3a3a3a;
  }
  
  .faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 16px;
    font-size: 14px;
    color: #ccc;
    background: #1f1f1f;
    border-radius: 0 0 8px 8px;
    transition: all 0.4s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 12px 16px;
  }
  
  /* 카테고리 설명 그리드 */
  .overview-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .overview-item h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
  }
  
  .overview-item p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
  }
  
  /* 버튼 공통 */
  .btn-sm {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 12px;
    font-size: 13px;
    color: #fff;
    background: #e53339;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .btn-sm:hover {
    background: #c62828;
  }


  
  /* 반응형 */
  @media (max-width: 768px) {
    .blackmarket-faq-container {
      flex-direction: column;
    }
  
    .blackmarket-faq-title,
    .overview-title {
      font-size: 20px;
    }
  
    .faq-question {
      font-size: 15px;
    }
  }
  