/* 1. 헤더에서 도메인(링크) 숨기기 */
.about__header a[href*="http"], 
.about__header__domain,
[class*="domain"] {
    display: none !important;
}

/* 2. 섹션들 중 규칙과 차단 목록이 포함된 모든 섹션 숨기기 */
/* "rules", "blocked", "limited" 단어가 포함된 모든 ID나 클래스를 타격 */
section[id*="rules"], 
section[id*="blocked"], 
section[id*="limited"],
div[class*="rules"],
div[class*="blocked"] {
    display: none !important;
}

/* 3. 순서로 찍어서 지우기 (보통 2~4번째 섹션들이 규칙/차단임) */
/* 만약 엉뚱한 게 지워지면 이 부분은 삭제하세요 */
.about__body section:nth-child(2),
.about__body section:nth-child(3) {
    display: none !important;
}

/* 관리자 이름 부분 */
.about__contact__account .display-name__html {
    position: relative;
    overflow: hidden;
    display: inline-block;
    color: transparent !important; /* 원래 글자 투명화 */
}

.about__contact__account .display-name__html::before {
    content: "반추의 관리자"; /* 바꿀 이름 */
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff !important; /* 글자색 */
    font-size: 14px;
    visibility: visible;
}

/* 연락처 이메일 부분 */
.about__contact__mail a {
    position: relative;
    overflow: hidden;
    display: inline-block;
    color: transparent !important;
}

.about__contact__mail a::before {
    content: "비공개 주소"; /* 바꿀 이메일 문구 */
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff !important;
    font-size: 14px;
    visibility: visible;
}

