/* 폰트 정의 - 폰트 파일이 있을 때 활성화 */
/*
@font-face {
    font-family: 'SDGdGothic';
    src: url('fonts/SDGdGothic.woff2') format('woff2'),
         url('fonts/SDGdGothic.woff') format('woff'),
         url('fonts/SDGdGothic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SDGyeokdongG205Bd';
    src: url('fonts/SDGyeokdongG205Bd.woff2') format('woff2'),
         url('fonts/SDGyeokdongG205Bd.woff') format('woff'),
         url('fonts/SDGyeokdongG205Bd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'SDGyeokdongG206Hv';
    src: url('fonts/SDGyeokdongG206Hv.woff2') format('woff2'),
         url('fonts/SDGyeokdongG206Hv.woff') format('woff'),
         url('fonts/SDGyeokdongG206Hv.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
*/

/* 기본 리셋 및 글로벌 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nanum Square', 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* 고정 카피라이트 바 */
.copyright-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #00144b;
    color: white;
    padding: 18px 0;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.copyright-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    font-family: 'Nanum Square', 'Noto Sans KR', sans-serif;
    font-size: 25px;
    font-weight: 600;
    width: 100%;
    margin: 0;
    padding: 0 20px;
}

.copyright-text {
    color: white;
}

.copyright-divider {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* 섹션 공통 스타일 */
section {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    overflow: visible;
    margin: 0;
    padding: 0;
}

/* 섹션 1: 선거 공고 */
.election-announcement {
    background: #1e3a8a;
    min-height: 100vh;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cityscape-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.main-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-height: 100vh;
}

.top-text {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.5s both;
    font-family: 'Nanum Square', 'Noto Sans KR', sans-serif;
}

.main-title {
    font-size: 6.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 1s both;
    font-family: 'Nanum Square', 'Noto Sans KR', sans-serif;
}

.main-title span {
    display: inline-block;
    animation: bounceIn 0.6s ease-out both;
}

.main-title span:nth-child(1) { animation-delay: 1.2s; }
.main-title span:nth-child(2) { animation-delay: 1.3s; }
.main-title span:nth-child(3) { animation-delay: 1.4s; }
.main-title span:nth-child(4) { animation-delay: 1.6s; }
.main-title span:nth-child(5) { animation-delay: 1.7s; }
.main-title span:nth-child(6) { animation-delay: 1.8s; }
.main-title span:nth-child(7) { animation-delay: 1.9s; }
.main-title span:nth-child(8) { animation-delay: 2.0s; }
.main-title span:nth-child(9) { animation-delay: 2.1s; }
.main-title span:nth-child(10) { animation-delay: 2.2s; }
.main-title span:nth-child(11) { animation-delay: 2.3s; }
.main-title span:nth-child(12) { animation-delay: 2.4s; }
.main-title span:nth-child(13) { animation-delay: 2.5s; }

.date-text {
    font-size: 4.2rem;
    font-weight: 700;
    color: #ffff00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 1.5s both;
    font-family: 'Nanum Square', 'Noto Sans KR', sans-serif;
}

.quick-menu {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 1000;
}

.quick-item {
    width: 90px;
    height: 90px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInRight 0.8s ease-out both;
}

.quick-item:nth-child(1) { animation-delay: 2s; }
.quick-item:nth-child(2) { animation-delay: 2.2s; }
.quick-item:nth-child(3) { animation-delay: 2.4s; }

.quick-item:hover {
    transform: scale(1.1);
}

.quick-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.schedule-container {
    margin:0 auto;
	margin-top:80px;
	margin-bottom:80px;
}

.schedule-image {
	text-align:center;
	width:100%;
    max-width: 1500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 애니메이션 키프레임 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    50% {
        text-shadow: 2px 2px 20px rgba(255, 255, 0, 0.8), 0 0 30px rgba(255, 255, 0, 0.6);
    }
}

.date-text {
    animation: glowPulse 2s ease-in-out infinite 1.5s both;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .top-text {
        font-size: 2.5rem;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
    
    .date-text {
        font-size: 1.3rem;
    }
    
    .quick-menu {
        display: none;
    }
    
    .schedule-container {
        bottom: 30px;
    }
    
    .schedule-image {
        max-width: 95%;
    }
}

/* 섹션 2: 투표 및 홍보 */
.voting-promotion {
    background: #f8f9fa;
    min-height: 100vh;
    overflow: visible;
    position: relative;
}
.section2-top {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.section2-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.voting-background {
    height: 50%;
    position: relative;
    overflow: hidden;
}

.section2-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-content {
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
}

.content-wrapper {
    margin-top: 50vh;
    padding: 80px 150px 150px 150px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    gap: 80px;
    min-height: 80vh;
}

.left-text-area {
    flex: 1;
    max-width: 45%;
    padding-bottom: 60px;
}

.right-promo-area {
    flex: 1;
    max-width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 60px;
}

.purple-heading {
    color: #000;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0;
    line-height: 1.1;
    animation: slideInLeft 1s ease-out 1s both;
    font-family: 'Nanum Square', sans-serif;
}

.purple-heading .main-purple-heading {
    color: #6331d6;
    font-size: 4.5rem;
    font-weight: 900;
    font-family: 'Nanum Square',  sans-serif;
}

.description-text {
    padding-top:20px;
    font-size: 1.35rem;
    line-height: 1.8;
    color: #333;
    font-family: 'Nanum Square',  sans-serif;
}

.description-text p {
    margin-bottom: 25px;
}

.desc-line-1 {
    animation: slideInLeft 1s ease-out 1.4s both;
}

.desc-line-2 {
    font-size: 1.1rem;
    animation: slideInLeft 1s ease-out 1.6s both;
}

.desc-line-3 {
    animation: slideInLeft 1s ease-out 1.8s both;
}

.highlight-text {
    font-weight: 700;
    color: #000;
    font-family: 'Nanum Square', 'Noto Sans KR', sans-serif;
}

.promo-image {
    width: 600px;
    height: auto;
    max-width: 600px;
    max-height: 70%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    animation: slideInRight 1s ease-out 1.6s both;
}

/* 애니메이션 */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes highlightGlow {
    0%, 100% {
        text-shadow: none;
    }
    50% {
        text-shadow: 0 0 10px rgba(99, 49, 214, 0.5);
    }
}

.highlight-text {
    animation: highlightGlow 2s ease-in-out infinite;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .voting-promotion {
        background: white;
    }
    .section2-top {
        height: 50vh;
    }
    
    .promotion-content {
    margin-top:-60%;
	}

    .content-wrapper {
        flex-direction: column;
        padding: 40px 20px 80px 20px;
        gap: 40px;
        min-height: 50vh;
        margin-top: 0;
    }
    
    .left-text-area,
    .right-promo-area {
        max-width: 100%;
        padding-bottom: 30px;
    }
    
    .purple-heading {
        font-size: 1.8rem;
    }
    
    .main-purple-heading {
        font-size: 2.5rem;
    }
    
    .description-text {
        font-size: 1.1rem;
    }
    
    .promo-image {
        width: 100%;
        max-width: 100%;
        max-height: 50%;
    }
}

@media (max-width: 768px) {
    #sec2 .main-purple-heading {
        font-size: 2.8rem !important;
        margin-bottom: 15px;
    }
    
    #sec2 .desc-line-2 {
        font-size: 1rem !important;
    }
    
    #sec3 .strategy-main .main-purple-heading {
        font-size: 2.2rem !important;
        margin-bottom: 2px !important;
        margin-top: 2px !important;
    }
    
    #sec3 .strategy-main .purple-text {
        font-size: 1.5rem !important;
        margin-bottom: 2px !important;
        margin-top: 2px !important;
    }
    
    #sec3 .strategy-main .description-text {
        font-size: 1rem !important;
        margin-bottom: 2px !important;
        margin-top: 2px !important;
    }
    
    #sec3 .strategy-main {
        min-height: 50vh !important;
        padding: 5px 20px 5px 20px !important;
    }
    
    #sec3 .strategy-subsections {
        padding: 60px 20px 0px 20px !important;
        gap: 0px !important;
    }
    
    #sec3 .strategy-subsections .top-section {
        margin-bottom: 0px !important;
    }
    
    #sec3 .strategy-subsections .autobiography-title {
        margin-bottom: 0px !important;
		flex: 0 0 10px;
 
    }
    
    #sec3 .strategy-subsections .bottom-section {
        margin-bottom: 0px !important;
        margin-top: 40px !important;
    }
    
    #sec3 .strategy-subsections .ceremony-title {
        margin-bottom: 0px !important;
		flex: 0 0 10px;
    }
    
    #sec3 .strategy-subsections .top-special-boxes {
        margin-bottom: 0px !important;
    }
    
    #sec3 .strategy-subsections .bottom-special-box {
        margin-bottom: 0px !important;
    }
	#sec3 .special-box p {
    font-size: 0.8rem;
	}
}

/* 섹션 3: 후보자 준비 및 홍보 전략 */
.candidate-strategy {
    color: #333;
    position: relative;
    min-height: 60vh;
    overflow: visible;
}

.strategy-content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 80vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.strategy-main {
	padding:0;
    background: url('./images/section3_bg.jpg') no-repeat center center;
    background-size: contain;
    padding: 0 120px 0 200px;
    text-align: left;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.5s both;
    max-width: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.strategy-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.strategy-main > * {
    position: relative;
    z-index: 2;
}

.purple-text {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 1s both;
    font-family: 'Nanum Square', sans-serif;
}

.purple-text .main-purple-heading {
    font-size: 5.5rem;
    font-weight: 900;
    color: #6434d1;
    font-family: 'Nanum Square', sans-serif;
}

.strategy-main .description-text {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #000;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 2s both;
    max-width: 740px;
    margin-top:-20px;
    margin-bottom: 15px;
    font-family: 'Nanum Square', sans-serif;
}

.strategy-main .description-text:nth-child(4) {
    animation-delay: 2.3s;
}

.strategy-subsections {
    background: white;
    padding: 0px 200px 80px 200px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.top-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

.autobiography-title {
    flex: 0 0 300px;
    display: flex;
    align-items: flex-start;
    padding-top: 0;
}

.top-special-boxes {
    flex: 1;
    display: flex;
    gap: 30px;
}

.top-special-boxes .special-box {
    flex: 1;
    min-width: calc(33.333% - 20px);
}

.bottom-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

.ceremony-title {
    flex: 0 0 300px;
    display: flex;
    align-items: flex-start;
    padding-top: 0;
}

.bottom-special-box {
    flex: 1;
    display: flex;
}

.bottom-special-box .special-box {
    width: 100%;
}

/* .left-column 스타일 제거 - 새로운 구조로 대체됨 */

.title-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-top {
    font-size: 1.8rem;
    font-weight: 500;
    color: #000;
    text-align: left;
    animation: slideInLeft 1s ease-out 3s both;
    margin-bottom: 0;
    font-family: 'Nanum Square', sans-serif;
}

.title-bottom {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    text-align: left;
    animation: slideInLeft 1s ease-out 3.1s both;
    margin-top:-10px;
    margin-bottom: 0;
    font-family: 'Nanum Square', sans-serif;
}

.title-group:nth-child(2) .title-top {
    font-size: 3rem;
    font-weight: 700;
    animation-delay: 3.3s;
    font-family: 'Nanum Square', sans-serif;
}

.title-combined {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    text-align: left;
    animation: slideInLeft 1s ease-out 3s both;
    margin-top:-10px;
    margin-bottom: 0;
    line-height: 1.1;
    font-family: 'Nanum Square', sans-serif;
}
.title-combined span{
    font-size: 2.8rem;
    font-weight: 500;
}

.special-box {
    background: #e5d6ef;
    color: #333;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5d6ef;
    animation: scaleIn 0.8s ease-out both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Nanum Square', sans-serif;
}

.special-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.special-box:nth-child(1) { animation-delay: 3.6s; }
.special-box:nth-child(2) { animation-delay: 3.8s; }
.special-box:nth-child(3) { animation-delay: 4.0s; }
.special-box:nth-child(4) { animation-delay: 4.2s; }

.special-box h4 {
    font-family: 'Nanum Square', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #3b2763;
    margin-bottom: 15px;
    padding-bottom: 10px;
    display: inline-block;
    position: relative;
}

.special-box h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #3b2763;
}

.special-box h5 {
    font-family: 'Nanum Square', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3b2763;
    margin-bottom: 20px;
}

.special-box p {
    margin-top:20px;
    font-family: 'Nanum Square', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
}

.special-box .box-title {
    font-family: 'Nanum Square', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3b2763;
    margin-bottom:5px;
    line-height: 1.2;
}

/* 섹션 4: 선거 도구 및 연락처 */
.campaign-tools {
    background: white;
    color: #333;
    min-height: 100vh;
}

.section4-top {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.section4-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section4-bottom {
    padding: 80px 40px 120px 40px;
    background: white;
}

.section4-content {
    text-align: center;
    margin-bottom: 60px;
}

.section4-title {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Nanum Square', sans-serif;
}

.section4-description {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Nanum Square', sans-serif;
}

.campaign-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}

.tool-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.tool-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.tool-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: 'Nanum Square', sans-serif;
}

.tool-item p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-family: 'Nanum Square', sans-serif;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .announcement-content {
        padding: 40px 20px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .top-text {
        font-size: 1.4rem;
    }
    
    .date-text {
        font-size: 2rem;
    }
    
    /* 모바일에서 퀵메뉴 숨김 */
    .quick-menu {
        display: none;
    }
    
    .voting-background {
        height: 40%;
    }
    
    .content-wrapper {
        margin-top: 40vh;
        padding: 50px 30px;
        flex-direction: column;
        gap: 50px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
        min-height: auto;
    }
    
    .promo-image {
        max-width: 400px;
        min-width: auto;
        max-height: none;
    }
    
    .left-text-area {
        max-width: 100%;
    }
    
    .right-promo-area {
        max-width: 100%;
        justify-content: center;
        align-items: center;
        height: auto;
    }
    
    .promo-image {
        max-width: 400px;
        max-height: none;
    }
    
    .purple-heading {
        font-size: 2.5rem;
    }
    
    .main-purple-heading {
        font-size: 3.5rem;
    }
    
    .description-text {
        font-size: 1.3rem;
    }
    
    .description-paragraphs {
        gap: 25px;
    }
    
    .promo-image {
        max-width: 350px;
    }
    
    .strategy-content {
        padding: 60px 30px;
    }
    
    .strategy-main {
        background-size: cover;
        min-height: 100vh;
        padding: 0 20px 0 20px;
    }
    
    .strategy-main .main-purple-heading {
        font-size: 2.8rem;
    }
    
    .strategy-main .description-text {
        font-size: 1.1rem;
    }
    
    .purple-text {
        font-size: 2rem;
    }
    
    .strategy-subsections {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px 60px 20px;
    }
    
    .top-section {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .autobiography-title {
        width: 100%;
    }
    
    .top-special-boxes {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }
    
    .top-special-boxes .special-box {
        width: 100%;
        min-width: auto;
    }
    
    .bottom-section {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .ceremony-title {
        width: 100%;
    }
    
    .bottom-special-box {
        width: 100%;
    }
    
    .special-boxes {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .special-box {
        padding: 25px;
    }
    
    .campaign-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section4-title {
        font-size: 2.2rem;
    }
    
    .section4-description {
        font-size: 1rem;
    }
    
    .section4-bottom {
        padding: 80px 40px 120px 40px;
    }
    
    .main-slogan {
        font-size: 2.5rem;
    }
    
    .copyright-content {
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
    }
    
    .copyright-divider {
        display: none;
    }
	.section4-title {
    font-size: 1.7rem;
	}
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .main-purple-heading {
        font-size: 2rem;
    }
    
    .main-slogan {
        font-size: 2rem;
    }
    
    .campaign-icons {
        grid-template-columns: 1fr;
    }
    
    .tool-item {
        padding: 20px 15px;
    }
    
    .special-box {
        padding: 20px;
    }
}

/* 크로스 브라우저 호환성 */
@supports not (backdrop-filter: blur(10px)) {
    .special-box,
    .tool-item {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* 접근성 개선 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 포커스 스타일 */
*:focus {
    outline: 2px solid #f39c12;
    outline-offset: 2px;
}

/* 고대비 모드 지원 */
@media (prefers-contrast: high) {
    .special-box,
    .tool-item {
        border: 2px solid #000;
    }
}

/* 기존 스타일 제거 - 새로운 구조로 대체됨 */
