@charset "utf-8";
@import url('[fonts.googleapis.com](https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Noto+Serif+KR:wght@400;700&display=swap)');

/* ===== 공감 / 공유 / 더보기 완전 제거 ===== */
.container_postbtn,
.postbtn_like,
.postbtn_share,
.postbtn_more,
i.ti-heart,
i.ti-share,
i.ti-more,
.container_postbtn_wrap,
.postbtn_wrap {
    display: none !important;
}

/* ===== 리셋 ===== */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
pre, code, form, fieldset, legend, textarea, p, blockquote,
th, td, input, select, textarea, button {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

fieldset, img {
    border: 0;
    transition: 0.5s;
}

dl, ul, ol, menu, li {
    list-style: none;
}

iframe, embed {
    width: 100%;
    transition: 0.5s;
}

table .imageblock {
    width: 100% !important;
}

table {
    border-spacing: 1px 0;
}

/* ===== 고딕 배경 ===== */
body {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    background-attachment: fixed;
    min-height: 100vh;
    transition: 0.5s;
}

/* ===== 전체 폰트 (고딕 세리프) ===== */
html, body, th, td, input, select, textarea, button {
    font-size: 10px;
    font-family: 'Cinzel', 'Noto Serif KR', Georgia, serif;
    color: #c0c0c0; /* 실버 */
    line-height: 1.8;
    letter-spacing: 0.5px;
}

a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* ===== 입력창 폰트 색상 ===== */
::placeholder {
    color: #808080;
}

/* ===== 스크롤바 (고딕 스타일) ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4a4a4a, #2a2a2a);
    border: 1px solid #5a5a5a;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6a6a6a, #4a4a4a);
}

/* ===== 전체 박스 ===== */
#container {
    margin: 100px auto;
    max-width: 600px;
    padding: 40px;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid #3a3a3a;
    box-shadow: 
        0 0 20px rgba(0, 0, 0, 0.8),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* 장식 테두리 */
#container::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid #2a2a2a;
    pointer-events: none;
}

#tt-body-index #container {
    max-width: 700px;
}

/* ===== 스위치 ===== */
/* ===== Gothic Emblem Switch ===== */

/* ===== Victorian Candle Switch ===== */
/* ===== Crimson Contract Candle ===== */

.switch {
    position: relative;
    width: 50px;
    height: 110px;
    margin: 0 auto;
    cursor: pointer;
}

/* 촛대 */
.switch::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 22px;
    height: 50px;
    border-radius: 6px;

    background: linear-gradient(#1a1a1a, #050505);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.9);
}

@media all and (max-width:768px){

  /* 스위치 */
.switch{
    position:relative;

    width:40px;
    height:90px;

    margin:auto;
}

/* 촛대 몸통 (흑철) */
.switch::before{

    content:'';

    position:absolute;

    left:50%;
    bottom:-5px;

    transform:translateX(-50%);

    width:10px;
    height:50px;

    border-radius:3px;

    background:
    linear-gradient(
        to right,
        #111,
        #3a3a3a,
        #565656,
        #252525,
        #101010
    );

    border:1px solid #2f2f2f;

    box-shadow:
    inset 0 0 4px rgba(255,255,255,.08),
    0 2px 8px rgba(0,0,0,.6);

}

/* 아래 받침 */
.switch .candle-base{

    position:absolute;

    bottom:-10px;
    left:50%;

    transform:translateX(-50%);

    width:26px;
    height:6px;

    border-radius:50px;

    background:
    linear-gradient(
        to right,
        #111,
        #444,
        #222
    );

    box-shadow:
    0 2px 6px rgba(0,0,0,.7);

}

/* 불꽃 */
.switch::after{

    content:'';

    position:absolute;

    left:50%;
    top:14px;

    transform:
    translateX(-50%);

    width:10px;
    height:16px;

    border-radius:
    50% 50%
    50% 50%/
    70% 70%
    30% 30%;

    background:
    radial-gradient(
        circle,
        #fff7d9,
        #ffd56e,
        #ff9200
    );

    box-shadow:
    0 0 12px rgba(255,220,120,.85);

    animation:
    candleFlicker 1.5s infinite;

}

/* 꺼짐 */
.switch.off::after{

    width:2px;
    height:10px;

    background:#6a6a6a;

    top:18px;

    box-shadow:none;

    animation:none;

}

@media all and (max-width:768px){

.switch::before{

height:55px;

}

.switch::after{

box-shadow:
0 0 18px rgba(255,220,120,.95);

}

}

@keyframes candleFlicker{

0%{
transform:
translateX(-50%)
rotate(-2deg);
}

50%{
transform:
translateX(-50%)
rotate(2deg);
}

100%{
transform:
translateX(-50%)
rotate(-1deg);
}

}

@keyframes candleFlicker{
    0%{
        transform:
        translateX(-50%)
        rotate(-2deg);
    }

    50%{
        transform:
        translateX(-50%)
        rotate(2deg);
    }

    100%{
        transform:
        translateX(-50%)
        rotate(-1deg);
    }
}

}

/* 촛불 */
.switch .toggle {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);

    width: 18px;
    height: 34px;
    border-radius: 6px;

    background: linear-gradient(#e8e8e8, #999);
}

/* 심지 */
.switch .toggle::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: black;
}

/* 🩸 붉은 불꽃 */
.switch .toggle::after {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%) scale(0);

    width: 16px;
    height: 22px;
    border-radius: 50%;

    background: radial-gradient(circle, #ff3b3b 10%, #8a0000 60%, transparent 70%);
    opacity: 0;

    z-index: 999;
    pointer-events: none;
}

/* ON 상태 */
.switch.active .toggle::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;

    box-shadow:
        0 0 12px #ff3b3b,
        0 0 25px rgba(255,0,0,0.7),
        0 0 50px rgba(120,0,0,0.5);

    animation: bloodFlame 1s infinite alternate;
}

/* 🔥 붉은 흔들림 */
@keyframes bloodFlame {
    0% {
        transform: translateX(-52%) scale(1);
    }
    100% {
        transform: translateX(-48%) scale(1.15);
    }
}

/* 🩸 주변 어둠 물들이기 */
.switch.active {
    filter: drop-shadow(0 0 10px rgba(255,0,0,0.3));
}

.switch,
.switch .toggle {
    overflow: visible !important;
}

.switch.active::after {
    content: '';
    position: absolute;

    /* 🔥 핵심: 위치를 촛불 위로 정확히 맞춤 */
    bottom: 54px;  /* ← 이 값이 핵심 (촛불 높이에 맞춤) */
    left: 50%;
    transform: translateX(-50%);

    width: 14px;
    height: 20px;
    border-radius: 50%;

    background: radial-gradient(circle, #ff3b3b 10%, #8a0000 60%, transparent 70%);

    box-shadow:
        0 0 10px #ff3b3b,
        0 0 20px rgba(255,0,0,0.6);

    animation: flame 1s infinite alternate;

    z-index: 9999;
}
/* ===== 검색 ===== */
.search {
    text-align: center;
    margin: 25px 0;
}

.search input {
    border: 0;
    background: transparent;
    border-bottom: 1px solid #4a4a4a;
    padding: 10px;
    color: #c0c0c0;
    font-family: inherit;
    transition: 0.3s;
}

.search input:focus {
    border-bottom-color: #c0c0c0;
}

.search .submit {
    display: none;
}

@media all and (min-width: 768px) {
    .search .search_input {
        margin: auto;
        text-align: center;
    }

    .search_input::placeholder {
        color: #606060;
    }

    /* 카테고리 */
    .catebox {
        text-align: center;
        margin: 15px 0;
        opacity: 0;
        transition: 0.5s;
        visibility: hidden;
    }

    .catebox.active {
        opacity: 1;
        visibility: visible;
    }

    .tt_category {
        display: inline-block;
    }

    .tt_category a,
    .catebox .scroll > a {
        color: #a0a0a0;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .tt_category a:hover,
    .catebox .scroll > a:hover {
        color: #ffffff;
    }

    .link_tit {
        display: none;
    }

    .category_list > li,
    .catebox .scroll > a {
        display: inline-block;
        position: relative;
        margin: 0 15px;
        white-space: nowrap;
    }

    .link_item:after {
        content: "▾";
        font-size: 0.7rem;
        margin-left: 5px;
        opacity: 0.5;
    }

    .link_item:only-child:after {
        content: '';
    }

    .sub_category_list {
        position: absolute;
        white-space: nowrap;
        left: 50%;
        transform: translateX(-50%);
        max-height: 0;
        overflow: hidden;
        transition: 0.5s;
        z-index: 1;
        background: rgba(20, 20, 20, 0.98);
        border: 1px solid #3a3a3a;
        border-top: none;
    }

    .category_list > li:hover .sub_category_list {
        max-height: 500px;
        padding: 10px 20px;
    }
}

/* ===== 본문 영역 ===== */
#content {
    position: relative;
}

#content:after,
.myoskin:after {
    display: block;
    clear: both;
    content: '';
    overflow: auto;
}

/* ===== 커버 ===== */
#c-notice {
    overflow: hidden;
    min-height: 300px;
    padding-bottom: 40px;
    position: relative;
}

#c-notice .c-notice {
    float: left;
    width: 62%;
}

#c-notice .c-notice.on {
    float: none;
    width: 100%;
}

#c-notice img {
    max-width: 100%;
    filter: grayscale(30%);
    transition: 0.5s;
}

#c-notice img:hover {
    filter: grayscale(0%);
}

.c-twt {
    width: 35%;
    position: absolute;
    right: 0;
    height: calc(100% - 40px);
    overflow: hidden;
}

.c-twt > ul {
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}

#c-notice,
#c-lst,
#c-thumb-lst,
#c-gal {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #3a3a3a;
    position: relative;
}

/* 장식선 */
#c-notice::after,
#c-lst::after,
#c-thumb-lst::after,
#c-gal::after {
    content: '✦';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f0f0f;
    padding: 0 15px;
    color: #4a4a4a;
    font-size: 0.8rem;
}

#c-notice h2,
#c-lst h2,
#c-thumb-lst h2,
#c-gal h2 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #e0e0e0;
    text-align: center;
    position: relative;
}

#c-notice h2::before,
#c-lst h2::before,
#c-thumb-lst h2::before,
#c-gal h2::before {
    content: '— ';
    color: #5a5a5a;
}

#c-notice h2::after,
#c-lst h2::after,
#c-thumb-lst h2::after,
#c-gal h2::after {
    content: ' —';
    color: #5a5a5a;
}

/* ===== 커버 썸네일 목록형 ===== */
#c-thumb-lst ul {
    width: 100%;
    display: inline-block;
}

#c-thumb-lst ul li {
    float: left;
    width: 24%;
    margin: 0.5%;
}

#c-thumb-lst a {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

#c-thumb-lst img {
    width: 100%;
    vertical-align: top;
    filter: grayscale(50%);
    transition: 0.5s;
}

#c-thumb-lst a:hover img {
    filter: grayscale(0%) blur(2px);
    opacity: 0.4;
    transform: scale(1.05);
}

#c-thumb-lst .title {
    margin-top: 12px;
    text-align: center;
    padding: 0 5px;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 40px;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* ===== 커버 웹진형 ===== */
#c-lst ul li:first-child {
    border-top: 0;
}

#c-lst a {
    display: block;
    text-decoration: none;
    margin-bottom: 40px;
    padding: 15px;
    border: 1px solid transparent;
    transition: 0.3s;
}

#c-lst a:hover {
    border-color: #3a3a3a;
    background: rgba(255, 255, 255, 0.02);
}

#c-lst .lst-img {
    display: inline-block;
    width: 20%;
    margin: 0;
}

#c-lst .lst-img img {
    position: relative;
    width: 100%;
    height: 100%;
    vertical-align: top;
    filter: grayscale(40%);
    transition: 0.5s;
}

#c-lst a:hover .lst-img img {
    filter: grayscale(0%) blur(1px);
    opacity: 0.5;
}

#c-lst .info {
    display: inline-block;
    width: 79%;
    vertical-align: top;
    padding: 10px 15px;
    box-sizing: border-box;
}

#c-lst .info .title {
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #d0d0d0;
    font-size: 1.1rem;
}

#c-lst .info .text {
    margin: 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 55px;
    color: #808080;
    font-size: 0.9rem;
}

/* ===== 커버 갤러리 ===== */
#c-gal ul {
    display: inline-block;
}

#c-gal .grid-item {
    float: left;
    width: 24%;
    margin: 0.5%;
}

#c-gal a {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
}

#c-gal .lst-img {
    margin: 0;
}

#c-gal .lst-img img {
    width: 100%;
    z-index: 10;
    vertical-align: top;
    filter: grayscale(60%);
    transition: 0.5s;
}

#c-gal a:hover img {
    filter: grayscale(0%) blur(2px);
    opacity: 0.3;
    transform: scale(1.1);
}

#c-gal .info .title {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 30;
    overflow: hidden;
    width: 100%;
    max-height: 4.5em;
    text-align: center;
    line-height: 1.5;
    padding: 0 15px;
    box-sizing: border-box;
    transform: translateY(-50%);
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

#c-gal a .info {
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    background: rgba(0, 0, 0, 0.5);
}

#c-gal a:hover .info {
    opacity: 1;
}

/* ===== 갤러리형 ===== */
#myo_gal .lst {
    width: 23%;
    margin: 1%;
    float: left;
    position: relative;
    overflow: hidden;
}

#myo_gal .lst a {
    display: block;
}

#myo_gal .lst img {
    width: 100%;
    vertical-align: top;
    filter: grayscale(50%);
    transition: 0.5s;
}

#myo_gal .lst .info {
    position: absolute;
    top: 0;
    opacity: 0;
    transition: 0.5s;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

#myo_gal .lst .title {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    max-height: 100px;
    font-weight: 700;
    margin: 0 10px;
    color: #ffffff;
}

#myo_gal .lst .date {
    display: none;
}

#myo_gal .lst:hover img {
    filter: grayscale(0%) blur(2px);
    opacity: 0.3;
}

#myo_gal .lst:hover .info {
    opacity: 1;
}

/* ===== 목록형 ===== */
#myo_bbs .lst {
    margin-bottom: 40px;
    text-align: center;
    padding: 20px;
    border: 1px solid #2a2a2a;
    transition: 0.3s;
}

#myo_bbs .lst:hover {
    border-color: #4a4a4a;
    background: rgba(255, 255, 255, 0.02);
}

#myo_bbs .lst a {
    display: block;
}

#myo_bbs .lst img {
    display: none;
}

#myo_bbs .lst .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #c0c0c0;
    font-size: 1.1rem;
    font-weight: 700;
}

#myo_bbs .lst .text {
    display: none;
}

/* ===== 보호글 ===== */
.pass {
    width: 250px;
    margin: 40% auto;
    text-align: center;
}

.pass p .input,
.pass p .submit {
    margin: 8px 0;
    padding: 12px;
}

.pass p .input {
    width: 100%;
    border: 1px solid #3a3a3a;
    background: rgba(0, 0, 0, 0.5);
    color: #c0c0c0;
    font-family: inherit;
}

.pass p .input:focus {
    border-color: #6a6a6a;
}

.pass .submit {
    width: 100%;
    border: 1px solid #5a5a5a;
    background: linear-gradient(180deg, #3a3a3a, #1a1a1a);
    color: #d0d0d0;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
}

.pass .submit:hover {
    background: linear-gradient(180deg, #5a5a5a, #3a3a3a);
    color: #ffffff;
}

/* ===== 본문 타이틀 ===== */
.artititle {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #2a2a2a;
}

.artititle .logo {
    width: 50px;
    height: 50px;
    filter: grayscale(100%);
}

.artititle .title {
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #e0e0e0;
    letter-spacing: 2px;
}

.artititle .date {
    opacity: 0.5;
    margin-top: 10px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.artititle .admin {
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    margin-top: 10px;
}

.artititle .admin > a {
    margin: 0 8px;
    color: #707070;
}

.artititle .admin > a:hover {
    color: #c0c0c0;
}

.artititle:hover .admin {
    visibility: visible;
    opacity: 0.6;
}

/* ===== 인용구 ===== */
.tx-quote-tistory {
    position: relative;
    padding: 20px 25px;
    border-left: 3px solid #5a5a5a;
    background: rgba(255, 255, 255, 0.03);
    margin: 20px 0;
    font-style: italic;
    color: #a0a0a0;
}

.tx-quote-tistory:before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 3rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: #3a3a3a;
}

/* ===== 더보기 ===== */
.moreless_fold {
    cursor: pointer;
    color: #808080;
    transition: 0.3s;
}

.moreless_fold:hover {
    color: #c0c0c0;
}

.moreless_fold:before {
    content: "▸ ";
    font-size: 0.8em;
}

.moreless_content {
    position: relative;
    margin: 15px 0;
    padding: 20px;
    border: 1px solid #3a3a3a;
    background: rgba(0, 0, 0, 0.3);
}

/* ===== 본문 태그 ===== */
.artitag {
    margin: 20px 0;
}

.artitag a {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #3a3a3a;
    color: #808080;
    font-size: 0.85rem;
    transition: 0.3s;
}

.artitag a:before {
    content: "#";
}

.artitag a:hover {
    border-color: #6a6a6a;
    color: #c0c0c0;
}

/* ===== 본문 댓글 ===== */
.articmt {
    margin: 20px 0;
}

.articmt .title {
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* ===== 댓글, 방명록 작성 ===== */
.cmt {
    margin-top: 30px;
}

.write input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #3a3a3a;
    padding: 8px;
    color: #c0c0c0;
    font-family: inherit;
}

.write input:focus {
    border-bottom-color: #6a6a6a;
}

.write textarea {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 80px;
    border: 1px solid #3a3a3a;
    transition: 0.5s;
    margin: 10px 0;
    padding: 15px;
    color: #c0c0c0;
    font-family: inherit;
    resize: vertical;
}

.write textarea:focus,
.write textarea:hover {
    height: 130px;
    border-color: #5a5a5a;
}

.write .info {
    margin-bottom: 10px;
}

.write .info input {
    width: 32%;
    margin-right: 1%;
}

.write .info input:last-child {
    margin: 0;
}

.write .info,
.write .secret {
    display: inline-block;
}

.write .submit {
    float: right;
    background: linear-gradient(180deg, #3a3a3a, #1a1a1a);
    border: 1px solid #4a4a4a;
    padding: 8px 20px;
    color: #c0c0c0;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
}

.write .submit:hover {
    background: linear-gradient(180deg, #5a5a5a, #3a3a3a);
    color: #ffffff;
}

:not(.secret) + .submit {
    width: 100%;
}

.write .secret {
    display: inline-block;
    margin-bottom: 10px;
}

.write .checkbox {
    display: none;
}

.write .checkbox + .secret-label {
    cursor: pointer;
    color: #707070;
}

.write .checkbox + .secret-label:after {
    content: "🔓";
    margin-left: 5px;
}

.write .checkbox:checked + .secret-label:after {
    content: "🔒";
}

/* ===== 댓글, 방명록 목록 ===== */
.list li {
    position: relative;
}

.listbox {
    border-bottom: 1px solid #2a2a2a;
    padding: 20px 0;
}

.listbox:last-child {
    border: 0;
}

.list img {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: none;
    filter: grayscale(100%);
}

.list .info {
    margin: 20px 0;
}

.list .info .name,
.list .info .date {
    margin-right: 12px;
}

.list .info .name {
    font-weight: 700;
    color: #d0d0d0;
}

.list .info .date {
    color: #606060;
    font-size: 0.85rem;
}

.list .info .re {
    margin-top: 8px;
    color: #909090;
}

.reply {
    margin-left: 40px;
    border-left: 2px solid #2a2a2a;
    padding-left: 20px;
}

.list .date a {
    margin-right: 5px;
    visibility: hidden;
    font-size: 0.85em;
    color: #606060;
}

.list .date a:hover {
    color: #c0c0c0;
}

.rp_admin .name:before {
    content: "★ ";
    color: #5a5a5a;
}

.hiddenComment .name:after {
    content: " 🔒";
    font-size: 0.8em;
}

/* ===== 페이징 ===== */
.paging {
    text-align: center;
    margin: 40px 0;
}

.paging a {
    margin: 0 10px;
    color: #707070;
    transition: 0.3s;
}

.paging a:hover {
    color: #c0c0c0;
}

.paging .selected {
    border-bottom: 2px solid #c0c0c0;
    color: #c0c0c0;
    padding-bottom: 3px;
}

/* ===== 탑버튼 ===== */
.top {
    text-align: center;
}

.top a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #3a3a3a;
    color: #707070;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.top a:hover {
    border-color: #6a6a6a;
    color: #c0c0c0;
}

/* ===== 카피라이트 ===== */
.copy {
    position: fixed;
    bottom: 15px;
    right: 15px;
    white-space: nowrap;
    font-size: 0.75rem;
    color: #404040;
    letter-spacing: 1px;
}

/* ===== 모바일 영역 ===== */
@media all and (max-width: 768px) {
    #container {
        margin: 15px;
        max-width: 100%;
        padding: 25px;
    }

    #container::before {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    #tt-body-index #container {
        max-width: none;
    }

    #content {
        margin: 20px 0;
    }

    #c-notice {
        min-height: auto;
    }

    #c-notice .c-notice {
        float: none;
        width: 100%;
    }

    .c-twt {
        display: none;
    }

    #c-lst .info .text {
        -webkit-line-clamp: 1;
        max-height: 18px;
    }

    .top {
        position: fixed;
        right: 15px;
        bottom: 60px;
    }

    .top a {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .copy {
        position: static;
        text-align: center;
        margin-top: 30px;
    }

    html.open {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .page_cover.open {
        display: block;
    }

    .page_cover {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 999;
        display: none;
    }

    .catebox {
        width: 75%;
        overflow: hidden;
        height: 100%;
        position: fixed;
        top: 0;
        left: -80%;
        margin: 0;
        z-index: 999999;
        transition: 0.3s ease;
        background: linear-gradient(180deg, #0a0a0a, #151515);
        border-right: 1px solid #3a3a3a;
        line-height: 3;
    }

    .catebox.open {
        left: 0;
    }

    .catebox .scroll {
        width: 102%;
        height: 100%;
        overflow-y: scroll;
        padding: 50px 30px;
    }

    .catebox .scroll a {
        color: #a0a0a0;
    }

    .search {
        text-align: left;
    }

    .category_list > li {
        position: relative;
        border-bottom: 1px solid #2a2a2a;
    }

    .sub_category_list {
        margin-left: 15px;
    }

    /* ===== 모바일 메뉴 강제 수정 ===== */
@media all and (max-width:768px){

    /* 메뉴 기본 숨김 제거 */
    .catebox{
        opacity:1 !important;
        visibility:visible !important;

        position:fixed !important;

        top:0;
        left:-100%;

        width:75%;
        height:100vh;

        z-index:999999;

        overflow-y:auto;

        background:
        linear-gradient(
            180deg,
            rgba(10,10,10,.98),
            rgba(20,20,20,.98)
        );

        transition:.4s;
    }

    /* 열렸을 때 */
    .catebox.open,
    .catebox.active{

        left:0 !important;

    }

    /* 내부 스크롤 */
    .catebox .scroll{

        display:block !important;

        padding:
        80px 25px
        40px;

    }

    /* 카테고리 강제 출력 */
    .category_list,
    .tt_category{

        display:block !important;

    }

    .category_list > li{

        display:block !important;

        padding:12px 0;

        border-bottom:
        1px solid
        rgba(255,255,255,.08);

    }

    /* 하위 메뉴 */
    .sub_category_list{

        display:block !important;

        max-height:none !important;

        opacity:1 !important;

        visibility:visible !important;

        position:relative !important;

        left:auto !important;

        transform:none !important;

        background:none !important;

        border:0 !important;

        padding-left:15px;

    }

}
}

/* ===== Namecard 숨김 ===== */
div[data-tistory-react-app="Namecard"] {
    display: none;
}


