  /* ========== 기본 설정 ========== */
 <style>
  body {
    margin: 0;
    padding: 0;
    background-color: #79ACC5;
    font-family: 'Gulim', '굴림', 'Dotum', '돋움', sans-serif;
    font-size: 15.5px;
    color: #444;
    line-height: 1.5;
    overflow-x: auto;
}

.container {
    width: 100%;
    min-width: 1350px; 
    display: flex;
    min-height: 100vh;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    box-sizing: border-box;
}

/* ========== 왼쪽 사이드바 ========== */
.sidebar {
    width: 260px;
    flex-shrink: 0;
    background-color: #FDFAC8;
    background-image: url('bg_yellow.jpg');
    background-repeat: repeat;
    padding: 20px;
    border-right: 2px solid #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-header {
    font-weight: bold;
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 2px dotted #cc9966;
    padding-bottom: 5px;
    text-align: center;
    background-color: rgba(255,255,255,0.3);
}

.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list li { margin-bottom: 12px; padding-left: 5px; }

/* [수정 2] 왼쪽 메뉴 텍스트 파란색 링크 스타일 적용 */
.menu-list a { 
    color: #0000CD; /* 파란색으로 변경 */
    font-weight: bold; 
    font-size: 16px; 
    text-decoration: underline; /* 밑줄 추가 */
}
.menu-list a:hover { color: #ff6600; }

.menu-icon {
    color: #D26432;
    font-size: 18px;
    vertical-align: middle;
    margin-right: 3px;
}

.new-tag {
    color: red; 
    font-size: 12px; 
    font-weight: bold;
    vertical-align: top;
    animation: blink 1s step-end infinite;
}

.link-info {
    font-size: 13px; 
    color: #222; 
    font-weight: bold;
    margin-top: 10px; 
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.banner-area { margin-top: 10px; text-align: center; }
.banner-img {
    width: 100%; height: auto;
    border: 2px solid #CC9966; display: block;
}

/* ========== 오른쪽 메인 컨텐츠 ========== */
.main-content {
    flex: 1;
    padding: 30px 40px;
    background-color: #D0F0F5;
    background-image: url('bg_blue.jpg');
    background-repeat: repeat;
}

/* [수정 1] 헤더 섹션 레이아웃 변경 (제목 옆에 로고 배치) */
.header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.header-top-row {
    display: flex;
    align-items: center; /* 수직 중앙 정렬 */
    justify-content: center;
    gap: 10px; /* 로고와 텍스트 사이 간격 */
}

.logo-side { max-width: 80px; height: auto; } /* 로고 크기 살짝 조정 */
.title-img { max-width: 450px; }

.welcome-msg {
    font-weight: bold; 
    margin-top: 10px; 
    color: #333;
    font-size: 16px; 
    text-shadow: 1px 1px 0 #fff;
}

/* 무단 전재 경고바 */
.warning-bar {
    width: 100%;
    background-color: #0f5e6d;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 4px 4px;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 0;
    text-align: center;
    margin-bottom: 20px;
    border-top: 1px solid #0a4550;
    border-bottom: 1px solid #0a4550;
}

.star-orange { color: #ffad33; text-shadow: 1px 1px 0 #333; }
.star-green  { color: #00cc66; text-shadow: 1px 1px 0 #333; }
.star-purple { color: #aa44dd; text-shadow: 1px 1px 0 #333; }

/* 디지털 카운터 */
.counter-area { text-align: center; margin-bottom: 30px; font-weight: bold; font-size: 16px; position: relative; z-index: 10; }
.counter-wrapper {
    background-color: #000; display: inline-block;
    padding: 4px 12px; border: 3px inset #666;
    vertical-align: middle; position: relative;
}
.digital-clock {
    font-family: 'VT323', monospace; 
    font-size: 28px;
    letter-spacing: 3px; line-height: 1;
}
.digital-bg { color: #1a2a1a; position: absolute; top:0; left:0; z-index:1; }
.digital-fg { color: #00ff33; position: relative; z-index:2; text-shadow: 0 0 8px #00ff33; }

/* 툴팁 CSS */
.tooltip-container {
    position: relative;
    cursor: help;
    border-bottom: 1px dashed #336699;
    color: #336699;
    display: inline-block;
}
.tooltip-container.btn-mode { border-bottom: none; }

.tooltip-content {
    display: none;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background-color: #fff;
    border: 2px solid #FF9966;
    padding: 10px;
    z-index: 999;
    text-align: left;
    font-size: 13px;
    font-weight: normal;
    color: #555;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.2);
    line-height: 1.4;
    white-space: normal;
}

.tooltip-content::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #FF9966 transparent;
}

.tooltip-container:hover .tooltip-content {
    display: block;
}

.h-point { color: #ff6600; font-weight: bold; }
.h-bg { background-color: #eee; padding: 3px; display: block; margin: 5px 0; border: 1px dotted #999;}

/* 메인 컨텐츠 영역 */
.center-area {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.illust-container { flex: 0 0 650px; text-align: center; }
.main-illust {
    width: 100%; height: auto;
    border: 4px solid #fff;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
}

.log-container {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.update-box {
    width: 100%; height: 250px;
    background-color: #fff;
    border: 2px solid #79ACC5;
    overflow-y: scroll;
    padding: 15px; font-size: 14px;
    box-sizing: border-box;
}
.update-box ul { padding-left: 20px; margin: 0; }
.date { color: #888; font-family: monospace; }

/* Web박수 영역 스타일 */
.web-clap-area {
    text-align: center; 
    font-size: 14px; 
    color: #333;
    margin-top: 15px;
}

.web-clap-btn {
    background: #FFCC99; 
    color: #fff; 
    padding: 2px 8px; 
    border: 2px solid #FF9966;
    font-size: 13px; 
    display: inline-block; 
    margin-bottom: 3px;
    cursor: pointer;
    font-weight: bold;
    text-shadow: 1px 1px 0 #FF9966; 
}

.clap-sub-text {
    font-size: 11px;
    color: #444;
    margin-bottom: 5px;
}

.clap-highlight-text {
    font-size: 16px; 
    font-weight: bold;
    color: #000;
}

.clap-purple { color: #C71585; } 
.clap-link { color: blue; text-decoration: underline; }

.notice-box {
    background-color: transparent; border: none;
    padding: 10px; text-align: center; margin-bottom: 30px;
    font-weight: bold; color: #224466; font-size: 16px;
}

/* 하단 테이블 */
.info-table {
    width: 70%; /* 테이블 전체 너비 살짝 늘림 */
    margin: 0 auto;
    border-collapse: separate; 
    border-spacing: 2px;
    background-color: transparent;
    border: 2px solid #487A8A; 
    font-size: 14px;
}
.info-table th {
    background-color: transparent; color: #000; padding: 8px;
    border: 1px solid #487A8A; font-weight: bold; text-align: center;
}
.info-table td {
    background-color: transparent; border: 1px solid #487A8A;
    padding: 10px; color: #000; font-weight: bold;
}
.col-page-link {
    color: #0000CD; text-decoration: underline; font-weight: bold; cursor: pointer;
}
/* [수정 3] 테이블 첫 번째 열 너비 확장 */
.col-page { 
    width: 200px; /* 140px -> 200px로 넓혀서 텍스트 줄바꿈 방지 */
    text-align: left; 
    vertical-align: top; 
}

@keyframes blink { 50% { opacity: 0; } }
</style>