/* 테이블 텍스트 강조 서식 */
.korea-host-bg {
    background: linear-gradient(90deg, #001F3F, #003366) !important;
    position: relative;
    overflow: hidden;
}

.korea-host-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.0) 45%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.0) 55%, rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: shine 4s linear infinite;
    pointer-events: none;
}

@keyframes shine {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.korea-host {
    background: linear-gradient(90deg, #00D7FF, #00C3FF, #00A5FF, #008CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

.korea-host2 {
    background: linear-gradient(90deg, #00D7FF, #00C3FF, #00A5FF, #008CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}

.korea-host2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #00D7FF, #00C3FF, #00A5FF, #008CFF);
}

.foreign-host {
    background: linear-gradient(90deg, #FFD700, #FFC300, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

.foreign-host1 {
    text-decoration: none;
    position: relative;
}

.foreign-host1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #f0f6fc;
}

.foreign-host2 {
    background: linear-gradient(90deg, #FFD700, #FFC300, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}

.foreign-host2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #FFD700, #FFC300, #FFA500, #FF8C00);
}

/* 페이지 및 포스트 텍스트 강조 서식 */
.post-title {
    background: linear-gradient(90deg, #D7FF00, #C3FF00, #A5FF00, #8CFF00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

/* 카테고리 포스트 개수 텍스트 강조 서식 */
.font-color-\#f0f6fc {
    color: #f0f6fc !important;
}
