/* 희망적이고 세련된 공직가치 웹사이트 스타일 */

/* 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 크리스마스 색상 팔레트 - 빨강, 초록, 금색 */
    --primary-blue: #C41E3A;
    --secondary-blue: #E74C3C;
    --light-blue: #FFE5E5;
    --accent-green: #165B33;
    --dark-green: #0D3D22;
    --soft-green: #E8F5E9;
    --accent-gold: #FFD700;
    --warm-orange: #FFA500;
    --neutral-white: #FFFAFA;
    --soft-white: #FFF5F5;
    --text-dark: #2C3E50;
    --text-medium: #546E7A;
    --text-light: #78909C;
    
    /* 그라데이션 */
    --gradient-primary: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
    --gradient-success: linear-gradient(135deg, #165B33 0%, #0D3D22 100%);
    --gradient-light: linear-gradient(180deg, #FFFAFA 0%, #FFF5F5 100%);
    --gradient-accent: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    
    /* 그림자 */
    --shadow-soft: 0 4px 20px rgba(196, 30, 58, 0.1);
    --shadow-medium: 0 8px 30px rgba(196, 30, 58, 0.15);
    --shadow-strong: 0 12px 40px rgba(196, 30, 58, 0.2);
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: var(--gradient-light);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* 눈송이 효과 컨테이너 */
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #FFFFFF;
    font-size: 1em;
    animation: snowfall linear infinite;
    opacity: 0.8;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

@keyframes snowfall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* 크리스마스 조명 */
.christmas-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1000;
    pointer-events: none;
}

.light {
    position: absolute;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: twinkle 1.5s ease-in-out infinite;
    animation-delay: var(--delay);
}

.light:nth-child(odd) {
    background: radial-gradient(circle, #C41E3A, #8B0000);
    box-shadow: 0 0 10px #C41E3A, 0 0 20px #C41E3A;
}

.light:nth-child(even) {
    background: radial-gradient(circle, #FFD700, #FFA500);
    box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
}

.light:nth-child(3n) {
    background: radial-gradient(circle, #50C878, #165B33);
    box-shadow: 0 0 10px #50C878, 0 0 20px #50C878;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* 메인 컨테이너 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* 헤더 */
.header {
    text-align: center;
    padding: 80px 40px;
    background: var(--gradient-primary);
    border-radius: 30px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

.decorative-element {
    position: absolute;
    font-size: 4rem;
    animation: float-gentle 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.decorative-element.left {
    left: 5%;
    top: 20%;
    animation-delay: 0s;
}

.decorative-element.right {
    right: 5%;
    top: 20%;
    animation-delay: 2s;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--neutral-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.accent-icon {
    display: inline-block;
    animation: pulse-glow 2s ease-in-out infinite;
    margin-left: 10px;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(244, 196, 48, 0.8));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(244, 196, 48, 1));
    }
}

.subtitle {
    font-size: 1.3rem;
    color: var(--soft-white);
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

/* 섹션 스타일 */
.content-section {
    margin-bottom: 80px;
}

.section-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--neutral-white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.section-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--secondary-blue), var(--accent-green), var(--accent-gold), var(--secondary-blue));
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.section-wrapper:hover::before {
    opacity: 1;
}

.section-wrapper.reverse {
    flex-direction: row-reverse;
}

.image-container {
    flex: 1;
    position: relative;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--gradient-accent);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-medium);
    animation: pulse 2s ease-in-out infinite;
    border: 3px solid white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.content-text h2 i {
    margin-right: 10px;
    color: var(--accent-green);
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* 체크박스 스타일 */
.check-box, .action-plan {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--soft-white) 100%);
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
    border-left: 5px solid var(--secondary-blue);
    box-shadow: var(--shadow-soft);
}

.check-box h3, .action-plan h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.check-box h3 i, .action-plan h3 i {
    margin-right: 10px;
    color: var(--accent-green);
}

.check-list, .action-list {
    list-style: none;
}

.check-list li, .action-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.check-list input[type="checkbox"], .action-list input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: var(--accent-green);
}

.check-list label, .action-list label {
    font-size: 1.05rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.check-list label:hover, .action-list label:hover {
    color: var(--secondary-blue);
}

/* 인용구 박스 */
.quote-box {
    background: var(--gradient-success);
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
    position: relative;
    color: white;
    box-shadow: var(--shadow-medium);
}

.quote-box i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.quote-box p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: white;
    margin: 0;
}

/* 하이라이트 박스 */
.highlight-box {
    background: var(--gradient-accent);
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-medium);
}

.highlight-box i {
    font-size: 2rem;
    color: white;
    animation: rotate-sun 10s linear infinite;
}

@keyframes rotate-sun {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.highlight-box p {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    font-weight: 500;
}

/* 언어 카드 그리드 */
.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.language-card {
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--soft-white) 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--shadow-soft);
}

.language-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: var(--shadow-medium);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.language-card h4 {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 10px;
    font-weight: 600;
}

.language-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* 감사 일기 */
.gratitude-journal {
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--soft-white) 100%);
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
    border-left: 5px solid var(--accent-green);
    box-shadow: var(--shadow-soft);
}

.gratitude-journal h3 {
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.gratitude-journal h3 i {
    margin-right: 10px;
    color: var(--accent-gold);
}

.gratitude-journal textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--accent-green);
    border-radius: 10px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gratitude-journal textarea:focus {
    outline: none;
    border-color: var(--dark-green);
    box-shadow: 0 0 15px rgba(80, 200, 120, 0.3);
}

.save-btn {
    margin-top: 15px;
    padding: 12px 30px;
    background: var(--gradient-success);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.save-btn i {
    margin-right: 8px;
}

/* 이론 노트 */
.theory-note {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE4B3 100%);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1rem;
}

.emphasis {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.15rem;
    margin-top: 25px;
}

/* 결론 섹션 */
.conclusion-section {
    margin-bottom: 60px;
}

.conclusion-wrapper {
    background: var(--gradient-primary);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    color: white;
}

.conclusion-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--neutral-white);
}

.conclusion-wrapper h2 i {
    color: var(--accent-gold);
    margin-right: 15px;
}

.conclusion-wrapper > p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: center;
    color: var(--soft-white);
}

.action-plan {
    background: white;
    border-left: 5px solid var(--accent-gold);
}

.action-plan h3 {
    color: var(--primary-blue);
}

.action-plan .action-list label {
    color: var(--text-dark);
}

/* 마무리 섹션 */
.final-section {
    margin-bottom: 60px;
}

.final-content {
    background: var(--gradient-success);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.symbol-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: rainbow-glow 3s ease-in-out infinite;
}

@keyframes rainbow-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(244, 196, 48, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(244, 196, 48, 1));
    }
}

.final-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--neutral-white);
}

.final-question {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.final-message {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 30px;
    color: var(--soft-white);
}

.inspiring-message {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 30px 0;
    color: var(--accent-gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.thank-you {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 20px;
    color: var(--neutral-white);
}

/* 푸터 */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
    padding: 40px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
}

.footer-content {
    text-align: center;
    color: white;
}

.footer-content p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.footer-content .inspiring-message {
    font-size: 1.15rem;
    color: var(--accent-gold);
    margin: 15px 0;
    font-weight: 500;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* 반응형 디자인 */
@media (max-width: 968px) {
    .section-wrapper, .section-wrapper.reverse {
        flex-direction: column;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .content-text h2 {
        font-size: 1.6rem;
    }
    
    .section-wrapper {
        padding: 30px;
    }
    
    .languages-grid {
        grid-template-columns: 1fr;
    }
    
    .decorative-element {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 30px 15px;
    }
    
    .header {
        padding: 60px 30px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.6rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .header {
        padding: 40px 20px;
    }
    
    .section-wrapper {
        padding: 20px;
    }
    
    .content-text h2 {
        font-size: 1.4rem;
    }
    
    .content-text p {
        font-size: 1rem;
    }
    
    .decorative-element {
        font-size: 2rem;
    }
    
    .symbol-icon {
        font-size: 3rem;
    }
    
    .final-question {
        font-size: 1.4rem;
    }
    
    .inspiring-message {
        font-size: 1.1rem;
    }
    
    .conclusion-wrapper, .final-content {
        padding: 40px 30px;
    }
    
    .two-column-concept {
        grid-template-columns: 1fr;
    }
    
    .mindset-comparison {
        flex-direction: column;
    }
    
    .arrow-transform {
        transform: rotate(90deg);
        margin: 15px 0;
    }
}

/* 추가 스타일 - 업그레이드된 콘텐츠용 */

/* 인사이트 인용구 */
.insight-quote {
    background: linear-gradient(135deg, #F0F8FF 0%, #E8F4F8 100%);
    padding: 20px 25px;
    border-left: 4px solid var(--secondary-blue);
    border-radius: 10px;
    margin: 25px 0;
    font-style: italic;
}

.insight-quote i {
    color: var(--accent-gold);
    margin-right: 10px;
    font-size: 1.3rem;
}

.insight-quote p {
    color: var(--primary-blue);
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
}

/* 체크 설명 */
.check-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 15px;
    font-style: italic;
}

/* 2열 개념 박스 */
.two-column-concept {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.concept-box {
    background: var(--light-blue);
    padding: 20px;
    border-radius: 12px;
    border-top: 3px solid var(--secondary-blue);
}

.concept-box h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.concept-box h4 i {
    margin-right: 8px;
    color: var(--accent-green);
}

.concept-box p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
}

/* 순간 리스트 */
.moment-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.moment-list li {
    padding: 12px 15px;
    background: var(--soft-white);
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.moment-list li:hover {
    background: var(--light-blue);
    transform: translateX(5px);
}

/* 마인드셋 비교 */
.mindset-comparison {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
}

.mindset-card {
    flex: 1;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.mindset-card.negative {
    background: linear-gradient(135deg, #FFE5E5 0%, #FFF0F0 100%);
    border-left: 4px solid #E74C3C;
}

.mindset-card.positive {
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8F4 100%);
    border-left: 4px solid var(--accent-green);
}

.mindset-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.mindset-card p {
    font-size: 0.95rem;
    margin: 8px 0;
    color: var(--text-dark);
}

.arrow-transform {
    font-size: 2rem;
    color: var(--accent-green);
    font-weight: bold;
}

/* 실천 팁 */
.practice-tip {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFAED 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    margin-top: 25px;
}

.practice-tip h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.practice-tip h4 i {
    color: var(--accent-gold);
    margin-right: 8px;
}

.practice-tip ul {
    margin: 10px 0 0 20px;
}

.practice-tip li {
    margin: 8px 0;
    color: var(--text-dark);
}

/* 핵심 통찰 */
.key-insight {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #FFD700 100%);
    padding: 20px 25px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: var(--shadow-medium);
}

.key-insight p {
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* 언어 카드 예시 */
.language-card .example {
    margin-top: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-medium);
}

/* 액션 프롬프트 */
.action-prompt {
    background: linear-gradient(135deg, #E8F4F8 0%, #F0F8FF 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px dashed var(--secondary-blue);
    margin-top: 25px;
}

.action-prompt h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.action-prompt p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

/* 과학적 근거 박스 */
.science-fact {
    background: linear-gradient(135deg, #F0F8FF 0%, #E8F4F8 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-blue);
    margin: 20px 0;
}

.science-fact h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.science-fact h4 i {
    color: var(--accent-green);
    margin-right: 8px;
}

.science-fact p {
    color: var(--text-dark);
    margin: 8px 0;
}

/* 감사 예시 */
.gratitude-examples {
    background: var(--soft-green);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.gratitude-examples h4 {
    color: var(--dark-green);
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.gratitude-examples ul {
    list-style: none;
    padding: 0;
}

.gratitude-examples li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 1rem;
}

/* 저널 가이드 및 팁 */
.journal-guide {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 15px;
    font-style: italic;
}

.journal-tip {
    font-size: 0.9rem;
    color: var(--dark-green);
    margin-top: 10px;
    font-style: italic;
}

/* 핵심 요점 */
.key-takeaways {
    margin: 30px 0;
}

.key-takeaways h3 {
    color: var(--neutral-white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.takeaway-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.takeaway-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.takeaway-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.takeaway-item .number {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.takeaway-item p {
    color: var(--soft-white);
    font-size: 0.95rem;
    margin: 0;
}

/* 실천 계획 설명 */
.plan-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-style: italic;
}

/* 다짐 박스 */
.commitment-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.commitment-box h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.commitment-box > p {
    color: var(--soft-white);
    margin-bottom: 20px;
    text-align: center;
}

.commitment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.commitment-options label {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.commitment-options label:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.commitment-options input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-gold);
}

/* 추가 컨텐츠 링크 버튼 호버 효과 */
.additional-content a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

/* 완료 축하 모달 */
.completion-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.completion-modal.show {
    opacity: 1;
}

.completion-content {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 50px 40px;
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    animation: modalPop 0.4s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.completion-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes modalPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.completion-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: bounce 0.6s ease-in-out;
    position: relative;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.completion-content h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.completion-content p {
    color: white;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.completion-btn {
    background: var(--accent-gold);
    color: var(--primary-blue);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.completion-btn:hover {
    background: var(--warm-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.completion-btn:active {
    transform: translateY(-1px);
}

/* 반응형 - 완료 모달 */
@media (max-width: 576px) {
    .completion-content {
        padding: 40px 25px;
    }
    
    .completion-icon {
        font-size: 4rem;
    }
    
    .completion-content h3 {
        font-size: 1.6rem;
    }
    
    .completion-content p {
        font-size: 1rem;
    }
    
    .completion-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
}
