@import url('https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css');

@font-face {
    font-family: 'BelovedMyoeunttobak';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2601-1@1.0/Griun_Myoeunddobak-Rg.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NostalgicKiteDrifting';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2604-1@1.0/Griun_InaDoongdoong-Rg.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-color: #F9F6F0;
    --text-color: #1D1D1D;
    --accent-color: #FF8A00;
    --warning-color: #E74C3C;
    --dark-panel: #2C2C2C;
    --card-bg: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'NanumSquare', sans-serif;
    letter-spacing: -0.05em;
    /* -10% */
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Common Section Styles */
.scene {
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 4rem 2rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow-x: hidden;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Text Utilities */
h1,
h2,
h3,
h4,
.main-title,
.section-title,
.center-title,
.huge-text {
    font-family: 'NostalgicKiteDrifting', 'NanumSquare', sans-serif;
}

.main-title {
    font-size: 5rem;
    font-weight: normal;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.section-title {
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 2rem;
}

.center-title {
    font-size: 4rem;
    font-weight: normal;
    text-align: center;
    line-height: 1.3;
}

.huge-text {
    font-size: 4.5rem;
    font-weight: normal;
    text-align: center;
    line-height: 1.3;
}

.highlight {
    color: var(--accent-color);
}

.highlight-red {
    color: var(--warning-color);
}

/* Utility Classes */
.mobile-only {
    display: none;
}

/* --- Scene 1: Intro --- */
.intro-scene {
    background-color: #e6ffe6;
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding: 0 !important;
    /* Remove inherited padding to prevent content from pushing down */
}

.intro-halftone-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 50%;
}

.halftone-pattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}

.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100vh;
    padding: 0 2rem;
    z-index: 10;
}

/* 공유하기 영역 */
.intro-share-container {
    position: fixed;
    top: 2rem;
    right: 4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-10px);
    animation: shareFadeIn 0.6s ease forwards;
    animation-delay: 2.6s;
    /* delay changed to sync with credit/scroll indicator */
}

.intro-share-container.on-dark .share-mail-btn {
    color: #FFFFFF;
}

.intro-share-container.on-dark .share-mail-btn:hover {
    color: #00E1E1;
}

@keyframes shareFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-mail-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #1D1D1D;
    display: flex;
    align-items: center;
    transition: transform 0.2s, color 0.2s;
    padding: 0.5rem;
}

.share-mail-btn:hover {
    transform: scale(1.1);
    color: #00E1E1;
}

.share-txt-btn {
    background-color: #5fff5f;
    color: #1D1D1D;
    border: none;
    border-radius: 4px;
    padding: 0.45rem 1.1rem;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.share-txt-btn:hover {
    transform: scale(1.05);
    background-color: #4cd94c;
}

/* 연락처 팝업 */
.contact-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    z-index: 20000;
    justify-content: center;
    align-items: center;
}

.contact-popup.active {
    display: flex;
}

.contact-popup-content {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    min-width: 300px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: popupIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.contact-popup-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    line-height: 1;
}

.contact-popup-close:hover {
    color: #333;
}

.contact-popup-title {
    font-family: 'NanumSquare', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1D1D1D;
}

.contact-popup-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
}

.contact-popup-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1D1D1D;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-value:hover {
    color: #00C4C4;
}





@keyframes charBounceDrop {
    0% {
        opacity: 0;
        transform: translateY(-50px) scaleY(1.1);
        /* gentler fall */
    }

    60% {
        opacity: 1;
        transform: translateY(6px) scaleY(0.92);
        /* smaller squash */
    }

    80% {
        transform: translateY(-3px) scaleY(1.03);
        /* smaller bounce */
    }

    100% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

/* --- Scene 1 SVG Stack (Unified Canvas) --- */
.intro-canvas-container {
    position: relative;
    width: 100%;
    max-width: 840px;
    aspect-ratio: 841.89 / 595.28;
    margin: 0 auto;
    z-index: 2;
}

.intro-subtitle-img,
.intro-title-img,
.intro-credit-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.3);
}

/* 띠용하며 나타나는 애니메이션 (bouncy pop-in) */
@keyframes ddiyongPop {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 나타나는 순서: 제목(0.4s) > 부제(0.9s) > 크레딧(1.4s) */
#scene-1.active .intro-title-img {
    animation: ddiyongPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.4s;
    transform-origin: center center;
    /* Scale from center of title */
}

#scene-1.active .intro-subtitle-img {
    animation: ddiyongPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.9s;
    transform-origin: center 15%;
    /* Scale from center of subtitle */
}

#scene-1.active .intro-credit-img {
    animation: ddiyongPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 1.4s;
    transform-origin: center 85%;
    /* Scale from center of credit */
}

/* 스크롤 가이드 스타일 */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    opacity: 0;
    transition: opacity 1s ease 2.0s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    z-index: 5;
}

#scene-1.active .scroll-indicator {
    opacity: 0.8;
    animation: bouncySpring 1.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite 3.0s;
}

@keyframes bouncySpring {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    30% {
        transform: translateX(-50%) translateY(-14px);
    }

    50% {
        transform: translateX(-50%) translateY(4px);
    }

    70% {
        transform: translateX(-50%) translateY(-6px);
    }

    85% {
        transform: translateX(-50%) translateY(2px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}


/* --- Scene 2: Chat Scene --- */
#scene-2 {
    height: auto;
    min-height: 100vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.character-intro-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 4rem;
}

.character {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    flex: 0 1 300px;
}

.character.visible {
    opacity: 1;
    transform: translateY(0);
}

.char-full-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
    display: block;
}

.char-info {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.char-info h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.char-info p {
    font-size: 0.95rem;
    color: #555;
    word-break: keep-all;
}

.chat-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: #E8ECEF;
    border-radius: 30px;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.02);
}

.scene7-chat {
    margin-bottom: 2rem;
    box-shadow: none;
    background: transparent;
    padding: 1rem 0;
}

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.chat-profile {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-message.visible .chat-profile {
    opacity: 1;
    transform: scale(1);
}

.chat-bubbles {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 70%;
}

.bubble {
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-family: 'BelovedMyoeunttobak', 'NanumSquare', sans-serif;
    line-height: 1.5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bubble.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Student Chat (Left) */
.student-msg {
    flex-direction: row;
}

.student-msg .bubble {
    background: white;
    color: var(--text-color);
    border-top-left-radius: 5px;
}

/* Pro Chat (Right) */
.pro-msg {
    flex-direction: row-reverse;
}

.pro-msg .chat-bubbles {
    align-items: flex-end;
}

.pro-msg .bubble {
    background: #FFDC00;
    color: var(--text-color);
    border-top-right-radius: 5px;
}

.bubble-concept-desc {
    font-size: 0.82rem;
    color: #555;
    font-family: 'NanumSquare', sans-serif;
    line-height: 1.5;
    text-align: left;
    word-break: keep-all;
}

.pro-msg .bubble.bubble-concept-desc {
    background: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    border-top-right-radius: 12px;
    padding: 1rem 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    margin-top: 0.6rem;
    color: #555;
}

.bubble-concept-desc p {
    margin: 0.5rem 0 0 0;
}

.bubble-concept-desc p:first-child {
    margin-top: 0;
}

.bubble-concept-desc strong {
    color: #2D2D2D;
    font-weight: 700;
}

.motion-underline {
    background-image: linear-gradient(120deg, rgba(231, 76, 60, 0.35) 0%, rgba(231, 76, 60, 0.35) 100%);
    background-repeat: no-repeat;
    background-size: 0% 35%;
    background-position: 0 88%;
    transition: background-size 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.3s;
    font-weight: 700;
}

.bubble.visible .motion-underline {
    background-size: 100% 35%;
}


/* --- Scene 3: Floating --- */
.floating-scene {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden;
}

.floating-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    opacity: 0;
    animation: floatUp linear forwards;
}

.floating-cookie {
    width: 60px;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.floating-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-20vh) rotate(360deg);
        opacity: 0;
    }
}

.glass-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --- Scene 4: Split Cookie --- */
#scene-4 {
    background-color: var(--bg-color);
}

.split-cookie-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto 4rem;
}

.cookie-piece {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.cookie-piece img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Approximate pie slices (Left, Top-Right, Bottom-Right) */
.piece-1 img {
    clip-path: polygon(50% 50%, 40% 0, 0 0, 0 100%, 60% 100%);
}

.piece-2 img {
    clip-path: polygon(50% 50%, 40% 0, 100% 0, 100% 50%);
}

.piece-3 img {
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 60% 100%);
}

.split-active .piece-1 {
    transform: translate(-30px, 0px);
    transition-delay: 0s;
}

.split-active .piece-2 {
    transform: translate(20px, -20px);
    transition-delay: 0.8s;
}

.split-active .piece-3 {
    transform: translate(20px, 20px);
    transition-delay: 1.6s;
}

.label-box {
    position: absolute;
    background: var(--dark-panel);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.label-box span {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.box-1 {
    top: 40%;
    left: -30%;
}

.box-2 {
    top: 10%;
    right: -25%;
}

.box-3 {
    bottom: 15%;
    right: -25%;
}

.split-active .box-1 {
    opacity: 1;
    transition-delay: 0.3s;
}

.split-active .box-2 {
    opacity: 1;
    transition-delay: 1.1s;
}

.split-active .box-3 {
    opacity: 1;
    transition-delay: 1.9s;
}

.line {
    position: absolute;
    background-color: var(--text-color);
    height: 2px;
    opacity: 0;
    transition: opacity 0.5s ease;
    transform-origin: left center;
}

.line-1 {
    top: 50%;
    left: 10%;
    width: 120px;
    transform: rotate(180deg);
}

.line-2 {
    top: 25%;
    left: 65%;
    width: 120px;
    transform: rotate(-25deg);
}

.line-3 {
    top: 75%;
    left: 65%;
    width: 120px;
    transform: rotate(25deg);
}

.split-active .line-1 {
    opacity: 1;
    transition-delay: 0.3s;
}

.split-active .line-2 {
    opacity: 1;
    transition-delay: 1.1s;
}

.split-active .line-3 {
    opacity: 1;
    transition-delay: 1.9s;
}

.sub-text {
    text-align: center;
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.split-active~.sub-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2.2s;
}

.role-definitions {
    margin-top: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.role-definitions p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #444;
    word-break: keep-all;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 10px;
    align-items: start;
}

.role-definitions p:last-child {
    margin-bottom: 0;
}

.role-definitions strong {
    color: var(--accent-color);
    font-size: 1.15rem;
    font-weight: 800;
}

.split-active~.role-definitions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2.7s;
}

/* --- Scene 5: Bridge --- */
.bridge-scene {
    background-color: var(--dark-panel);
    height: 100vh;
}

.bridge-scene .huge-text.init-fade-in {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    transition: opacity 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bridge-scene .huge-text.init-fade-in.animate-active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* --- Scene 6: Simulation --- */
.center-text {
    text-align: center;
}

.subtitle {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 3rem;
    color: #666;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contract-card {
    background: #FFFCF5;
    border: 1px solid #D2C6B0;
    border-radius: 4px;
    padding: 2.5rem;
    width: 320px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.contract-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, #E5D5BA 10px, #E5D5BA 20px);
    opacity: 0.5;
}

.contract-card:hover,
.contract-card.selected {
    transform: translateY(-10px);
    border-color: var(--warning-color);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.contract-card.selected::after {
    content: '선택됨';
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--warning-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.contract-header {
    text-align: center;
    border-bottom: 2px solid #555;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.contract-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #222;
    letter-spacing: 0.1px;
}

.parties {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
    display: block;
    text-align: right;
}

.contract-clauses {
    flex-grow: 1;
}

.contract-clauses p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.2rem;
    word-break: keep-all;
}

.contract-clauses strong {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
    color: #111;
}

.stamp-area {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #CCC;
}

.stamp-btn {
    background: transparent;
    color: var(--warning-color);
    border: 3px solid var(--warning-color);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 1rem;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'BelovedMyoeunttobak', sans-serif;
    transform: rotate(-15deg);
    opacity: 0.7;
    animation: stampPulse 2s infinite ease-in-out;
}

.contract-card:hover .stamp-btn,
.contract-card.selected .stamp-btn {
    background: var(--warning-color);
    color: white;
    transform: rotate(0) scale(1.1);
    opacity: 1;
    animation: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--card-bg);
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 8px solid #CCC;
    /* default fallback */
    transition: border-color 0.3s ease;
}

.modal-content.type-danger {
    border-top-color: var(--warning-color);
    /* #E74C3C */
}

.modal-content.type-warning {
    border-top-color: var(--accent-color);
    /* #FF8A00 */
}

.modal-content.type-success {
    border-top-color: #27AE60;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #BBB;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #666;
}

.alert-title {
    font-size: 2.2rem;
    color: #2D2D2D;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.modal-subtitle {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #666;
    margin-top: 0.5rem;
    font-family: 'NanumSquare', sans-serif;
}

.modal-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #555;
    text-align: left;
    background: #FFF9F2;
    border-left: 4px solid var(--accent-color);
    padding: 1.2rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 1.5rem;
    word-break: keep-all;
}

.modal-content.type-danger .modal-desc {
    background: #FFF5F5;
    border-left-color: var(--warning-color);
}

.modal-content.type-success .modal-desc {
    background: #F5FAF6;
    border-left-color: #27AE60;
}

.debt-counter {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--warning-color);
    margin-top: 2rem;
    font-variant-numeric: tabular-nums;
    font-family: 'NostalgicKiteDrifting', 'NanumSquare', sans-serif;
    white-space: nowrap;
}

.warning-anim {
    animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
}

.bouncy-popup-anim {
    animation: bouncyPopup 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes bouncyPopup {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    75% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

/* --- Scene 7: MG Explanation --- */
.mg-explanation {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.comparison-board {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.jp-style,
.kr-style {
    background: #F8F9FA;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.jp-style {
    border-left-color: #27AE60;
}

.kr-style {
    border-left-color: var(--warning-color);
}

.comparison-board h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.definition {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: left;
}

.definition:last-child {
    margin-bottom: 0;
}

.warning-text {
    margin-top: 3rem;
    padding: 2rem;
    background: #FFEAEA;
    color: var(--warning-color);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    border: 2px dashed var(--warning-color);
}

.concept-cards-container {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.concept-card-section {
    flex: 1;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    padding: 1.8rem;
    border: 1px dashed rgba(0, 0, 0, 0.12);
}

.concept-card-section h4 {
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    border-bottom: 2px solid var(--text-color);
    padding-bottom: 0.4rem;
    display: inline-block;
}

.concept-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.concept-mini-card {
    background: var(--card-bg);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.concept-mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.04);
    border-color: var(--accent-color);
}

.card-term {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.3rem;
}

.card-definition {
    font-size: 0.88rem;
    color: #4A5568;
    line-height: 1.45;
    word-break: keep-all;
}

/* media query overrides */
@media (max-width: 768px) {
    .concept-cards-container {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .concept-card-section {
        padding: 0.9rem;
        border-radius: 14px;
    }

    .concept-card-section h4 {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.2rem;
    }

    .concept-card-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .concept-mini-card {
        padding: 0.5rem 0.6rem;
        border-radius: 8px;
    }

    .card-term {
        font-size: 0.82rem;
        margin-bottom: 0.15rem;
    }

    .card-definition {
        font-size: 0.72rem;
        line-height: 1.35;
        letter-spacing: -0.02em;
    }
}

/* --- Scene 8: Outro --- */
.outro-scene {
    background-color: var(--dark-panel);
    color: white;
}

.outro-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.summary-box {
    border-color: rgba(255, 255, 255, 0.1);
}

.summary-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.authors-note h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.summary-box ol {
    margin-left: 1.5rem;
    font-size: 1.2rem;
}

.summary-box li {
    margin-bottom: 1rem;
}

.authors-note p {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Outro Interactive Guide Section */
.outro-campaign {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    text-align: left;
}

.campaign-box {
    flex: 1;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 16px;
    padding: 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.campaign-box:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 138, 0, 0.45);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.campaign-title {
    font-size: 1.55rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.campaign-keywords {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.keyword-item {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    outline: none;
}

.keyword-item:hover,
.keyword-item.active,
.keyword-item:focus-within {
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.15);
}

.keyword-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.keyword-tag::after {
    content: '▼';
    font-size: 0.8rem;
    color: #888;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.keyword-item:hover .keyword-tag::after,
.keyword-item.active .keyword-tag::after,
.keyword-item:focus-within .keyword-tag::after {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.keyword-detail {
    max-height: 0;
    opacity: 0;
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.6;
    margin-top: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    word-break: keep-all;
}

.keyword-item:hover .keyword-detail,
.keyword-item.active .keyword-detail,
.keyword-item:focus-within .keyword-detail {
    max-height: 120px;
    opacity: 1;
    margin-top: 1rem;
}

.keyword-item:hover .keyword-detail.has-buttons,
.keyword-item.active .keyword-detail.has-buttons,
.keyword-item:focus-within .keyword-detail.has-buttons {
    max-height: 320px;
}

.helper-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.helper-btn {
    background: rgba(255, 138, 0, 0.15);
    color: var(--accent-color);
    border: 1px solid rgba(255, 138, 0, 0.3);
    text-decoration: none;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s ease;
    text-align: center;
    display: block;
}

.helper-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 138, 0, 0.25);
    border-color: var(--accent-color);
}

.credits {
    margin-top: 4rem;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.credit-col h4 {
    color: #999;
    margin-bottom: 0.5rem;
}

.credit-col p {
    font-size: 0.9rem;
}

/* Modal Calculation Styles */
.calc-list {
    text-align: left;
    list-style: none;
    margin: 1.5rem 0 2rem 0;
    background: #F9F9FB;
    padding: 1.5rem 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.calc-list li {
    font-size: 1.02rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 0.7rem;
    color: #4A4A4A;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-list li strong {
    font-weight: 700;
    color: #2D2D2D;
}

.calc-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.calc-result {
    font-size: 1.2rem !important;
    font-weight: 800;
    margin-top: 1.2rem !important;
    display: block !important;
    text-align: center;
    padding: 0.8rem 1rem !important;
    border-radius: 10px;
}

.calc-result.error-text {
    background: rgba(231, 76, 60, 0.06);
    border: 1px solid rgba(231, 76, 60, 0.1);
    color: var(--warning-color);
}

.calc-result.success-text {
    background: rgba(39, 174, 96, 0.06);
    border: 1px solid rgba(39, 174, 96, 0.1);
    color: #27AE60;
}

/* Selected Contract Display in Scene 7 */
.selected-contract-display {
    margin: 2rem auto 1rem auto;
    display: flex;
    justify-content: center;
    width: 100%;
}

.click-guide-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--warning-color);
    margin-bottom: 4rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    animation: pulse 2s infinite;
}

.click-guide-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card {
    width: 100%;
    max-width: 800px;
    background: #FFF9EB;
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 138, 0, 0.15);
    cursor: default;
    transform: none !important;
}

.highlight-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 138, 0, 0.15);
    transform: none !important;
}

.pulse-hl {
    background-image: linear-gradient(to right, rgba(255, 138, 0, 0.4) 100%, rgba(255, 138, 0, 0.4) 0%);
    background-repeat: no-repeat;
    background-size: 0% 40%;
    background-position: 0 90%;
    transition: background-size 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    border-bottom: none;
    padding: 0 4px;
    border-radius: 4px;
    background-color: transparent;
    display: inline;
}

.highlight-card.show-highlights .pulse-hl {
    background-size: 100% 40%;
}

.highlight-card .pulse-hl:hover {
    background-color: rgba(255, 138, 0, 0.1);
}

/* The floating tooltip */
.inline-tooltip {
    position: absolute;
    background: #333;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
    width: max-content;
    max-width: 320px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.inline-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.inline-tooltip::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
}

/* Statistics / Infographics */
.title-with-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    width: 100%;
}

.stat-hover-trigger {
    position: relative;
    display: inline-block;
}

.clickable-source {
    display: inline-flex;
    align-items: center;
    background: #E8ECEF;
    color: #555;
    border: 1px solid #C4C9CC;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.clickable-source:hover {
    background: #FFDC00;
    color: #1D1D1D;
    border-color: #1D1D1D;
    box-shadow: 0 4px 10px rgba(255, 220, 0, 0.3);
    transform: translateY(-1px);
}

.statistics-container {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(229, 213, 186, 0.5);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.statistics-container.hover-popup {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 580px;
    max-width: 90vw;
    background: #F4F4F6;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    z-index: 1000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform-origin: top left;
}

/* Hover active state */
.stat-hover-trigger:hover .statistics-container.hover-popup {
    display: block;
    animation: popupFadeIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.statistics-container.hover-popup .stat-main-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: #4A4A4F;
}

.statistics-container.hover-popup .chart-wrapper {
    padding: 1.2rem;
    margin-bottom: 0;
    background: #EAEAEF;
    border-radius: 12px;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(8px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.stat-main-desc {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    text-align: left;
    word-break: keep-all;
}

.stat-main-desc strong {
    color: var(--accent-color);
}

.chart-wrapper {
    background: rgba(0, 0, 0, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #444;
}

.source-tag {
    font-size: 0.75rem;
    color: #888;
    font-weight: 400;
    display: block;
    margin-top: 0.6rem;
    text-align: right;
    word-break: keep-all;
}

.chat-source-tag {
    display: block;
    font-size: 0.72rem;
    color: #888;
    margin-top: 0.3rem;
    font-weight: 400;
    opacity: 0.85;
    word-break: keep-all;
    line-height: 1.4;
}

.student-msg .chat-source-tag {
    text-align: left;
    padding-left: 5px;
}

.pro-msg .chat-source-tag {
    text-align: right;
    padding-right: 5px;
}

.chart-source-line {
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.8rem;
    text-align: right;
    width: 100%;
    font-weight: 400;
    word-break: keep-all;
}

.warning-source-line {
    font-size: 0.75rem;
    color: #888;
    margin-top: 1.2rem;
    text-align: right;
    width: 100%;
    font-weight: 400;
    word-break: keep-all;
}

.multi-bar-chart {
    display: flex;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    gap: 3px;
}

.chart-segment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    min-width: 0;
}

.segment-mg {
    background: linear-gradient(90deg, #FF5E3A, #FF2A68);
}

.segment-salary {
    background: #4A90E2;
}

.segment-etc {
    background: #6C7A89;
}

.segment-label {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
}

.sub-segments {
    position: absolute;
    bottom: -45px;
    left: 0;
    width: 100%;
    display: flex;
    height: 30px;
    gap: 3px;
}

.sub-segment {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 0 0 5px 5px;
    position: relative;
}

.sub-monthly {
    background: rgba(255, 42, 104, 0.1);
    border: 1px dashed rgba(255, 42, 104, 0.4);
    color: #FF2A68;
}

.sub-accumulative {
    background: rgba(255, 94, 58, 0.15);
    border: 1px dashed rgba(255, 94, 58, 0.6);
    color: #FF5E3A;
}

.sub-label {
    white-space: nowrap;
}

/* Scene 6: Reality Check Box (협상력 부족) */
.reality-check-box {
    display: flex;
    align-items: center;
    background: #FFF0F0;
    border: 1.5px solid #FFC9C9;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.05);
    text-align: left;
    gap: 1.5rem;
}

.reality-icon {
    font-size: 2.2rem;
    color: var(--warning-color);
    animation: pulse 2s infinite;
}

.reality-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #4A4A4A;
    word-break: keep-all;
}

.reality-text strong {
    color: var(--warning-color);
}

/* Scene 7: 차감 비율 이중 프로그레스 바 */
.split-ratio-bar-wrapper {
    margin-top: 1.5rem;
    background: rgba(0, 0, 0, 0.03);
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.split-ratio-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 0.8rem;
    text-align: left;
}

.split-ratio-bar {
    display: flex;
    height: 30px;
    border-radius: 6px;
    overflow: hidden;
    background: #DDD;
}

.ratio-segment {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.ratio-pre {
    background: #27AE60;
    /* 선차감 초록 계열 */
}

.ratio-post {
    background: #E74C3C;
    /* 후차감 빨강 계열 */
}

.ratio-desc {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.8rem;
    text-align: left;
    line-height: 1.4;
    word-break: keep-all;
}

/* Scene 8: Abuse Dashboard */
.real-abuse-dashboard {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 2px solid #FCD4D4 !important;
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.08) !important;
}

.dashboard-title {
    font-size: 2rem !important;
    color: var(--warning-color);
    margin-bottom: 0.8rem;
    text-align: center;
}

.dashboard-intro {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    word-break: keep-all;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.dash-card {
    background: #FFFBFB;
    border: 1px solid #FFE4E4;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.dash-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.08);
}

.dash-card.full-width {
    grid-column: span 2;
    align-items: stretch;
}

.dash-num {
    font-size: 3.5rem;
    font-weight: normal;
    color: var(--warning-color);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-family: 'NostalgicKiteDrifting', sans-serif;
}

.dash-label {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2D2D2D;
    margin-bottom: 1rem;
    text-align: center;
}

.dash-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
    word-break: keep-all;
}

.abuse-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.abuse-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.abuse-name {
    width: 220px;
    font-size: 1rem;
    font-weight: 700;
    color: #444;
    text-align: left;
    white-space: nowrap;
}

.abuse-bar-bg {
    flex-grow: 1;
    height: 20px;
    background: #EEE;
    border-radius: 10px;
    overflow: hidden;
}

.abuse-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #F5515F, #9F041B);
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.abuse-val {
    width: 60px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--warning-color);
    text-align: right;
}

.dashboard-footer {
    border-top: 1px dashed #E5D5BA;
    padding-top: 1rem;
    text-align: center;
}

/* Animation hooks for Stats Elements */
.init-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.init-fade-in.animate-active {
    opacity: 1;
    transform: translateY(0);
}

/* Contract Partner Stats (Scene 4) */
.contract-partner-stats {
    margin-top: 2.5rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    padding: 1.8rem;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;

    /* 노출 전 기본 숨김 처리 */
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.contract-partner-stats.animate-active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 3.2s;
}

.stats-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: #444;
    word-break: keep-all;
}

.stats-text strong {
    color: #555;
}

.partner-ratio-bar {
    display: flex;
    height: 35px;
    border-radius: 8px;
    overflow: hidden;
    background: #E0E0E0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.partner-segment {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
}

.segment-platform {
    background: #7F8C8D;
}

.segment-agency {
    background: #95A5A6;
}

.segment-studio {
    background: #BDC3C7;
    color: #444;
}

.segment-etc {
    background: #ECF0F1;
    color: #777;
}

.disclaimer-text {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.8rem;
    font-weight: 500;
    font-family: 'NanumSquare', sans-serif;
}

.chart-legend-box {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
    width: 100%;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 6px;
    display: inline-block;
    flex-shrink: 0;
}

/* 컬러 정의 */
.color-mg {
    background: linear-gradient(90deg, #FF5E3A, #FF2A68);
}

.color-salary {
    background: #4A90E2;
}

.color-etc {
    background: #6C7A89;
}

.color-platform {
    background: #7F8C8D;
}

.color-agency {
    background: #95A5A6;
}

.color-studio {
    background: #BDC3C7;
}

.color-etc-p {
    background: #ECF0F1;
    border: 1px solid #CCC;
}

/* Credits Source List Styling */
.source-col {
    max-width: 650px !important;
    text-align: left !important;
}

.source-main-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #444;
}

.source-detail-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.source-detail-list li {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 10px;
}

.source-detail-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #999;
}

.source-other {
    font-size: 0.88rem;
    color: #555;
    margin-top: 1rem;
    border-top: 1px dashed #DDD;
    padding-top: 0.8rem;
}

/* Warning Text Container (Scene 7) */
.warning-text-container {
    margin-top: 3.5rem;
    background: #FFF5F5;
    border: 2px solid #FCD4D4;
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 35px rgba(231, 76, 60, 0.06);
    text-align: center;
}

.warning-text-header {
    font-family: 'NostalgicKiteDrifting', 'NanumSquare', sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    color: var(--warning-color);
    margin-bottom: 2rem;
}

.warning-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.warning-stat-card {
    background: white;
    border: 1px solid #FFE4E4;
    border-radius: 12px;
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.02);
}

.w-stat-num {
    font-size: 1.6rem;
    font-weight: normal;
    color: var(--warning-color);
    margin-bottom: 0.4rem;
    font-family: 'NostalgicKiteDrifting', sans-serif;
}

.w-stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 700;
}

.warning-text-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4A4A4A;
    text-align: left;
    word-break: keep-all;
    border-top: 1px dashed #FCD4D4;
    padding-top: 1.5rem;
}

/* --- Scene 8 Additions: Damage Cases Carousel --- */
.damage-cases-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.scene8-sub-title {
    font-size: 2.2rem;
    font-weight: normal;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
}

.carousel-container {
    position: relative;
    padding: 2rem 0;
    overflow: visible;
    /* CRITICAL: allows left and right cards to be visible outside container bounds! */
    max-width: 580px;
    /* active card container viewport */
    margin: 0 auto 3rem;
}

.carousel-track {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.carousel-card {
    position: absolute;
    width: 100%;
    max-width: 520px;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(0) scale(0.8);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, filter 0.6s ease, visibility 0.6s;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

/* Central Active Card */
.carousel-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1.0);
    z-index: 3;
    filter: none;
    pointer-events: auto;
}

/* Left Semi-Translucent Card */
.carousel-card.prev {
    opacity: 0.35;
    visibility: visible;
    transform: translateX(-62%) scale(0.85);
    /* offset left */
    z-index: 1;
    filter: blur(0.5px);
    pointer-events: auto;
    cursor: pointer;
}

/* Right Semi-Translucent Card */
.carousel-card.next {
    opacity: 0.35;
    visibility: visible;
    transform: translateX(62%) scale(0.85);
    /* offset right */
    z-index: 1;
    filter: blur(0.5px);
    pointer-events: auto;
    cursor: pointer;
}

.carousel-card:hover.prev,
.carousel-card:hover.next {
    opacity: 0.55;
}

.carousel-card .badge {
    background-color: var(--warning-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.case-title {
    font-size: 1.4rem;
    font-family: 'NanumSquare', sans-serif;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    word-break: keep-all;
}

.case-desc {
    font-family: 'NanumSquare', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #DDD;
    word-break: keep-all;
    margin: 0;
}

.carousel-card .card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 1.2rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    padding-top: 0.8rem;
}

.card-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'NanumSquare', sans-serif;
}

.case-source {
    display: inline-block;
    color: #888;
    font-size: 0.8rem;
    font-family: 'NanumSquare', sans-serif;
    margin: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.carousel-dots .dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
}

/* --- Scene 9 Additions: Outro Light Theme --- */
.light-scene {
    background-color: var(--bg-color);
    /* #F9F6F0 */
    color: var(--text-color);
    /* #1D1D1D */
}

.light-scene .scene8-sub-title {
    color: var(--text-color);
}

.outro-chat-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.outro-chat-container {
    background: #E8ECEF !important;
    border: none !important;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.outro-chat-container .bubble {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Friend Chat Bubble - Teal Mint Theme */
.friend-msg {
    flex-direction: row-reverse;
}

.friend-msg .chat-bubbles {
    align-items: flex-end;
}

.light-scene .friend-msg .bubble {
    background: #00D5D5;
    color: var(--text-color);
    border-top-right-radius: 5px;
}

/* Special Profile Border for Friend */
.light-scene .friend-msg .chat-profile {
    border: 3px solid #00D5D5;
    box-shadow: 0 5px 15px rgba(0, 213, 213, 0.15);
}

/* Initially hide friend identity with opacity/blur if unnamed */
.friend-msg.init-unnamed .profile-wrapper {
    position: relative;
}

.friend-msg.init-unnamed .chat-profile {
    filter: brightness(0.35) blur(2px);
}

/* Question mark badge over unnamed profile image */
.friend-msg.init-unnamed .profile-wrapper::after {
    content: '?';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: var(--warning-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 5;
    animation: pulse 1.5s infinite;
}

/* --- Scene 9 Additions: Action Cards --- */
.action-cards-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.action-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.light-scene .action-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s, border-color 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.light-scene .action-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(255, 138, 0, 0.1);
}

.light-scene .action-card.star-card:hover {
    border-color: #00D5D5;
    box-shadow: 0 15px 30px rgba(0, 213, 213, 0.1);
}

.action-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.light-scene .action-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'NanumSquare', sans-serif;
}

.light-scene .action-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    word-break: keep-all;
}

/* --- Scene 9 Additions: Outro Advice Sticky Notes --- */
.outro-advice-section {
    width: 100%;
    max-width: 950px;
    margin: 0 auto 4rem;
}

.advice-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: stretch;
}

.advice-postit {
    flex: 1;
    background: #FFF9C4;
    color: #333333;
    padding: 2rem;
    box-shadow: 2px 8px 16px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.06);
    position: relative;
    border-radius: 4px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.outro-advice-section.animate-active .advice-postit {
    opacity: 1;
}

.outro-advice-section.animate-active .postit-pro {
    transform: translateY(0) rotate(-1.5deg) scale(1);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.outro-advice-section.animate-active .postit-friend {
    transform: translateY(0) rotate(1.2deg) scale(1);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

/* Adhesive Tape at top center */
.advice-postit::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 80px;
    height: 24px;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(1px);
    border-left: 1px dashed rgba(0, 0, 0, 0.08);
    border-right: 1px dashed rgba(0, 0, 0, 0.08);
    z-index: 2;
}

/* Post-it colors */
.postit-pro {
    background: #FEF9E7;
    /* Soft yellow cream */
}

.postit-friend {
    background: #EAF2F8;
    /* Soft blue */
}

.postit-pro:hover {
    transform: rotate(-0.5deg) scale(1.02) !important;
    box-shadow: 4px 12px 20px rgba(0, 0, 0, 0.18) !important;
}

.postit-friend:hover {
    transform: rotate(0.2deg) scale(1.02) !important;
    box-shadow: 4px 12px 20px rgba(0, 0, 0, 0.18) !important;
}

.postit-header {
    font-family: 'NanumSquare', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 1rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
    padding-bottom: 0.5rem;
}

.advice-postit p {
    font-family: 'BelovedMyoeunttobak', 'NanumSquare', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
    word-break: keep-all;
}

.postit-source {
    font-size: 0.82rem;
    color: #7A7A7F;
    text-align: right;
    margin-top: auto;
    padding-top: 1.2rem;
    font-family: 'NanumSquare', sans-serif;
    font-weight: 700;
    opacity: 0.85;
}

/* --- Outro Campaign Guide Bottom Characters Layout --- */
.guide-chars-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.authors-note.animate-active .guide-chars-row {
    opacity: 1;
    transform: translateY(0);
}

.guide-char-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

.guide-bottom-img {
    height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.guide-bottom-img:hover {
    transform: translateY(-5px) scale(1.06);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

.guide-char-name-label {
    font-size: 0.85rem;
    color: #AAA;
    margin-top: 0.6rem;
    font-weight: 700;
    font-family: 'NanumSquare', sans-serif;
}

/* Character Speech Bubbles on Hover */
.guide-char-bubble {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: #FFFFFF;
    color: #1D1D1D;
    padding: 0.45rem 0.9rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

/* Bubble Tail */
.guide-char-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #FFFFFF transparent;
    display: block;
    width: 0;
}

/* Hover state triggers bubble scale-up and fade-in */
.guide-char-item:hover .guide-char-bubble {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
    html {
        scroll-snap-type: none !important;
    }

    .scene {
        padding: 4rem 1rem;
        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
        min-height: auto !important;
    }

    .intro-scene,
    .floating-scene,
    .bridge-scene {
        min-height: 100vh !important;
    }

    .outro-scene {
        padding: 4rem 1.5rem;
    }

    .main-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 1.8rem;
        word-break: keep-all;
    }

    /* 화면 가로폭이 768px 이하(모바일)일 때만 작동하는 코드 */

    .warning-text {
        font-size: 1rem;
        /* 모바일에서는 작게 (예: 1rem) */
    }

    .character-intro-container {
        flex-direction: row !important;
        gap: 1rem !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .character {
        flex: 1 1 0% !important;
        max-width: 180px !important;
        min-width: 0 !important;
    }

    .char-info {
        padding: 0.8rem 0.5rem !important;
    }

    .char-info h3 {
        font-size: 1rem !important;
        margin-bottom: 0.2rem !important;
    }

    .char-info p {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        word-break: keep-all;
    }

    .chat-container {
        padding: 1rem 0.8rem;
    }

    .chat-profile {
        width: 45px;
        height: 45px;
    }

    .chat-bubbles {
        max-width: 100%;
        flex: 1;
    }

    .bubble {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        word-break: keep-all;
    }

    .bubble-concept-desc {
        font-size: 0.75rem !important;
    }

    .char-full-img {
        height: 150px !important;
    }

    .intro-cookie-container {
        width: 250px;
        height: 250px;
        margin: 1rem auto;
    }

    .scroll-indicator {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 3.5rem;
        font-size: 0.78rem;
        align-self: center;
    }

    .mobile-only {
        display: inline;
    }

    .huge-text {
        font-size: 1.8rem;
        word-break: keep-all;
    }

    .center-title {
        font-size: 1.8rem;
        word-break: keep-all;
    }

    .guide-group {
        flex-direction: column;
    }

    .split-cookie-container {
        width: 180px;
        height: 180px;
        margin: 2rem auto;
    }

    .line {
        display: none;
    }

    .label-box {
        transform: scale(0.6);
    }

    .box-1 {
        top: 20%;
        left: -35%;
        transform-origin: right center;
    }

    .box-2 {
        top: -10%;
        right: -30%;
        transform-origin: left center;
    }

    .box-3 {
        bottom: -10%;
        right: -30%;
        transform-origin: left center;
    }

    .sub-text br {
        display: none;
    }

    .sub-text {
        font-size: 1.1rem;
        word-break: keep-all;
        padding: 0 1rem;
    }

    .card-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
    }

    .contract-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 1.2rem;
    }

    .contract-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .contract-clauses p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .contract-clauses strong {
        font-size: 0.95rem;
    }

    .mg-explanation {
        padding: 1rem;
    }

    .jp-style,
    .kr-style {
        padding: 1.2rem;
    }

    .comparison-board h3 {
        font-size: 1.4rem;
        word-break: keep-all;
    }

    .definition {
        font-size: 1.05rem;
    }

    .tooltip-display {
        display: none;
        /* 모바일에서는 클릭 팝업으로 대체 */
    }

    .role-definitions {
        padding: 1.5rem;
    }

    .role-definitions p {
        grid-template-columns: 1fr;
        gap: 0.2rem;
        margin-bottom: 1.5rem;
    }

    .summary-box h3,
    .authors-note h3 {
        font-size: 1.5rem;
    }

    .summary-box ol {
        font-size: 1.05rem;
        margin-left: 1.2rem;
    }

    .authors-note p {
        font-size: 1.05rem;
        word-break: keep-all;
    }

    /* Outro Campaign Mobile Styling */
    .outro-campaign {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .campaign-box {
        padding: 1.5rem;
    }

    .campaign-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .keyword-item {
        padding: 1rem;
    }

    .keyword-tag {
        font-size: 1.05rem;
    }

    .keyword-detail {
        font-size: 0.9rem;
    }

    .keyword-item:hover .keyword-detail,
    .keyword-item.active .keyword-detail,
    .keyword-item:focus-within .keyword-detail {
        max-height: 180px;
    }

    .keyword-item:hover .keyword-detail.has-buttons,
    .keyword-item.active .keyword-detail.has-buttons,
    .keyword-item:focus-within .keyword-detail.has-buttons {
        max-height: 380px;
    }

    .helper-btn {
        padding: 0.8rem;
    }

    .credits {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .credit-col p {
        font-size: 0.85rem;
    }

    /* Mobile responsive for stats elements */
    .statistics-container {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .stat-main-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .chart-wrapper {
        padding: 1rem;
        margin-bottom: 3.5rem;
        /* space for absolute subsegments */
    }

    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        font-size: 0.9rem;
    }

    .multi-bar-chart {
        height: 50px;
    }

    .chart-segment {
        font-size: 0.8rem;
    }

    .sub-segments {
        bottom: -35px;
        height: 24px;
    }

    .sub-segment {
        font-size: 0.75rem;
    }

    .reality-check-box {
        flex-direction: column;
        padding: 1rem;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .reality-icon {
        font-size: 1.8rem;
    }

    .reality-text {
        font-size: 0.95rem;
        text-align: center;
    }

    .split-ratio-bar-wrapper {
        padding: 0.8rem;
        margin-top: 1rem;
    }

    .split-ratio-title {
        font-size: 0.82rem;
        margin-bottom: 0.5rem;
    }

    .split-ratio-bar {
        height: 22px;
    }

    .ratio-segment {
        font-size: 0.72rem;
    }

    .ratio-desc {
        font-size: 0.72rem;
        margin-top: 0.4rem;
        line-height: 1.35;
    }

    .dashboard-title {
        font-size: 1.5rem !important;
    }

    .dashboard-intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dash-card {
        padding: 1.2rem;
    }

    .dash-card.full-width {
        grid-column: span 1;
    }

    .dash-num {
        font-size: 2.5rem;
    }

    .dash-label {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .abuse-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .abuse-name {
        width: 100%;
        font-size: 0.9rem;
    }

    .abuse-bar-bg {
        width: 100%;
        height: 15px;
    }

    .abuse-val {
        width: 100%;
        text-align: right;
        font-size: 0.95rem;
        margin-top: -0.2rem;
    }

    /* Mobile for partner stats and warning-container */
    .contract-partner-stats {
        padding: 1.2rem;
        margin-top: 1.5rem;
    }

    .stats-text {
        font-size: 0.95rem;
    }

    .partner-ratio-bar {
        height: 30px;
    }

    .partner-segment {
        font-size: 0.75rem;
    }

    .warning-text-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .warning-text-header {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .warning-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .warning-stat-card {
        padding: 1rem 0.8rem;
    }

    .w-stat-num {
        font-size: 1.2rem;
    }

    .w-stat-label {
        font-size: 0.75rem;
    }

    .warning-text-desc {
        font-size: 0.95rem;
        padding-top: 1rem;
    }

    .chart-legend-box {
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .legend-item {
        font-size: 0.8rem;
    }

    .source-col {
        max-width: 100% !important;
        text-align: center !important;
    }

    .source-detail-list li {
        text-align: left;
    }

    .chat-source-tag {
        font-size: 0.65rem;
        line-height: 1.3;
    }

    .source-tag {
        font-size: 0.68rem;
        margin-top: 0.4rem;
    }

    .chart-source-line,
    .warning-source-line {
        font-size: 0.68rem;
        text-align: center;
    }

    /* Mobile for Scene 1 Intro (redesigned) */
    .intro-content {
        padding: 0 1.5rem;
    }

    .intro-share-container {
        right: 1.2rem !important;
        top: 1.2rem !important;
        gap: 0.5rem !important;
        padding: 0 !important;
    }

    .share-txt-btn {
        padding: 0.4rem 0.9rem !important;
        font-size: 0.85rem !important;
    }

    /* Mobile for Scene 1 Intro (redesigned SVG stack) */
    .intro-content {
        padding: 0 1.5rem;
    }

    .intro-canvas-container {
        width: 140%;
        max-width: 580px;
        margin-left: -20%;
        margin-right: -20%;
        flex-shrink: 0;
    }

    /* Increase vertical gaps between elements on mobile by shifting top/bottom elements */
    .intro-subtitle-img {
        top: -6% !important;
    }

    .intro-credit-img {
        top: 6% !important;
    }

    /* Define a new keyframe for scaled-up elements on mobile */
    @keyframes ddiyongPopMobileSubCredit {
        0% {
            opacity: 0;
            transform: scale(0.3);
        }

        100% {
            opacity: 1;
            transform: scale(1.21);
            /* Make them 18% larger on mobile */
        }
    }

    #scene-1.active .intro-subtitle-img {
        animation-name: ddiyongPopMobileSubCredit;
    }

    #scene-1.active .intro-credit-img {
        animation-name: ddiyongPopMobileSubCredit;
    }

    #scene-1.active .scroll-indicator {
        animation-delay: 2.2s;
        /* speed up scroll indicator for mobile */
    }

    /* Outro Scene Mobile Additions */
    .scene8-sub-title {
        font-size: 1.6rem;
    }

    .carousel-container {
        padding: 1rem 0;
        max-width: 82%;
        /* narrow view to keep side cards visible but on screen */
        overflow: visible;
    }

    .carousel-track {
        min-height: 480px;
        /* much taller to hold wrapped text on mobile! */
    }

    .carousel-card {
        padding: 1.2rem 1rem;
    }

    .carousel-card.prev {
        transform: translateX(-76%) scale(0.8);
        opacity: 0.2;
    }

    .carousel-card.next {
        transform: translateX(76%) scale(0.8);
        opacity: 0.2;
    }

    .case-title {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .case-desc {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .card-author {
        font-size: 0.85rem;
    }

    .case-source {
        font-size: 0.75rem;
    }

    .action-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .action-card {
        padding: 1rem 0.5rem;
    }

    .action-card .action-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
        height: auto;
    }

    .light-scene .action-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .light-scene .action-card p {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .advice-container {
        flex-direction: column !important;
        gap: 3rem !important;
        align-items: center !important;
    }

    .advice-postit {
        width: 100% !important;
        min-height: auto !important;
        padding: 1.5rem 1.2rem !important;
        margin-bottom: 0 !important;
    }

    .advice-postit p {
        font-size: 0.98rem !important;
        line-height: 1.6 !important;
    }

    .postit-source {
        font-size: 0.75rem !important;
    }

    .outro-advice-section.animate-active .postit-pro,
    .outro-advice-section.animate-active .postit-friend {
        transform: translateY(0) rotate(0deg) scale(1) !important;
    }
}

/* Locking and Shaking Effects for Scene 6 Contracts */
.scene.locked {
    display: none !important;
}

@keyframes stampPulse {
    0% {
        transform: rotate(-15deg) scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
    }

    70% {
        transform: rotate(-15deg) scale(1.08);
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }

    100% {
        transform: rotate(-15deg) scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.next-step-guide {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--warning-color);
    margin-top: 2rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    font-family: 'NanumSquare', sans-serif;
}

@keyframes cardShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-8px);
    }

    40%,
    80% {
        transform: translateX(8px);
    }
}

.contract-card.shake-attention {
    animation: cardShake 0.5s ease-in-out;
    border-color: var(--warning-color) !important;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.2) !important;
}

@keyframes textShake {

    0%,
    100% {
        transform: scale(1);
    }

    20%,
    60% {
        transform: scale(1.05);
    }

    40%,
    80% {
        transform: scale(0.95);
    }
}

.next-step-guide.shake-text {
    animation: textShake 0.5s ease-in-out;
}

.close-tip {
    display: none;
}

/* Custom Mobile Optimizations */
@media (max-width: 768px) {
    html {
        scroll-snap-type: none !important;
        overflow-x: hidden !important;
    }

    .scene {
        padding: 4rem 1rem !important;
        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
        min-height: auto !important;
        overflow-x: hidden !important;
    }

    /* Fix action cards layout to be stacked and centered on mobile */
    .action-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
        max-width: 450px !important;
        margin: 2rem auto 0 auto !important;
    }

    .action-card {
        padding: 1.5rem !important;
    }

    /* Shrink font size of platform/agency/writer role definitions on mobile */
    .role-definitions p {
        grid-template-columns: 1fr !important;
        gap: 0.2rem !important;
        margin-bottom: 1.2rem !important;
        font-size: 0.92rem !important;
    }

    .role-definitions strong {
        font-size: 1.02rem !important;
    }

    /* Modal Mobile Sizing & Alignment Optimization (Fit on Single Screen) */
    .modal-content {
        padding: 1.5rem 1.2rem 1.2rem 1.2rem !important;
        border-radius: 16px !important;
        max-height: 95vh !important;
        border-top-width: 6px !important;
        width: 92% !important;
    }

    .modal-content .alert-title {
        font-size: 1.45rem !important;
        margin-bottom: 0.6rem !important;
    }

    .modal-content .modal-subtitle {
        font-size: 0.9rem !important;
        margin-top: 0.2rem !important;
    }

    .modal-content .calc-list {
        margin: 0.8rem 0 !important;
        padding: 0.8rem 1rem !important;
        border-radius: 12px !important;
    }

    .modal-content .calc-list li {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
        padding-bottom: 0.4rem !important;
    }

    .modal-content .calc-result {
        font-size: 0.95rem !important;
        margin-top: 0.6rem !important;
        padding: 0.5rem 0.8rem !important;
    }

    .modal-content .modal-desc {
        font-size: 0.85rem !important;
        padding: 0.8rem !important;
        margin-bottom: 0.8rem !important;
        border-radius: 0 8px 8px 0 !important;
    }

    .modal-content .debt-counter {
        font-size: 1.6rem !important;
        margin-top: 0.8rem !important;
    }

    /* Bridge scene (Scene 5) fullscreen black background fix on mobile */
    .bridge-scene {
        min-height: 100vh !important;
        height: 100vh !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        background-color: var(--dark-panel) !important;
    }

    /* Fix actual contract type hover popup overlay on mobile */
    .statistics-container.hover-popup {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 88% !important;
        max-width: 380px !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
        z-index: 10000 !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        background: #F4F4F6 !important;
        padding: 1.2rem !important;
        margin: 0 !important;
    }

    .statistics-container.hover-popup .stat-main-desc {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.8rem !important;
        color: #555555 !important;
    }

    .statistics-container.hover-popup .chart-wrapper {
        padding: 0.8rem !important;
        background: #EAEAEF !important;
        border-radius: 10px !important;
        margin-bottom: 2.8rem !important;
    }

    .statistics-container.hover-popup .chart-header {
        font-size: 0.8rem !important;
    }

    .statistics-container.hover-popup .multi-bar-chart {
        height: 40px !important;
    }

    .statistics-container.hover-popup .segment-label,
    .statistics-container.hover-popup .sub-label {
        font-size: 0.7rem !important;
    }

    .statistics-container.hover-popup .chart-legend-box {
        margin-top: 0.8rem !important;
        gap: 0.8rem !important;
    }

    .statistics-container.hover-popup .legend-item {
        font-size: 0.75rem !important;
    }

    .statistics-container.hover-popup .sub-segments {
        bottom: -35px !important;
        height: 24px !important;
    }

    .close-tip {
        display: block !important;
        font-size: 0.8rem !important;
        color: #888 !important;
        text-align: center !important;
        margin-top: 1rem !important;
        font-family: 'NanumSquare', sans-serif !important;
    }

    .guide-chars-row {
        gap: 1.5rem !important;
        margin-top: 3.5rem !important;
    }

    .guide-bottom-img {
        height: 120px !important;
    }

    .guide-char-bubble {
        font-size: 0.7rem !important;
        padding: 0.35rem 0.7rem !important;
    }

    /* Scene 4 Mobile Transitions */
    .split-active~.sub-text {
        transition-delay: 1.0s !important;
    }

    .split-active~.role-definitions {
        transition-delay: 1.4s !important;
    }

    .contract-partner-stats.animate-active {
        transition-delay: 1.8s !important;
    }
}

/* --- Scene 9 Additions: Reader's Messages (Guestbook) --- */
.reader-messages-section {
    width: 100%;
    max-width: 950px;
    margin: 6rem auto 4rem;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.reader-section-desc {
    text-align: center;
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    font-family: 'NanumSquare', sans-serif;
    word-break: keep-all;
}

/* Guestbook Form Styling */
.reader-form-box {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    margin: 0 auto 3.5rem;
    max-width: 680px;
    box-sizing: border-box;
}

.reader-form-box .form-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.reader-form-box input[type="text"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'NanumSquare', sans-serif;
    background: #ffffff;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    box-sizing: border-box;
}

.reader-form-box textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'NanumSquare', sans-serif;
    background: #ffffff;
    resize: none;
    height: 90px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    box-sizing: border-box;
}

.reader-form-box input[type="text"]:focus,
.reader-form-box textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.15);
}

.reader-form-box .form-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.reader-form-box .color-selector {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.reader-form-box .color-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
    font-family: 'NanumSquare', sans-serif;
}

.reader-form-box .color-options {
    display: flex;
    gap: 0.6rem;
}

.reader-form-box .color-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    outline: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.reader-form-box .color-btn:hover {
    transform: scale(1.2);
}

.reader-form-box .color-btn.active {
    border-color: #333;
    transform: scale(1.1);
}

/* 4 Post-it Colors */
.reader-form-box .btn-yellow { background: #FEF9E7; }
.reader-form-box .btn-blue { background: #EAF2F8; }
.reader-form-box .btn-green { background: #EAFAF1; }
.reader-form-box .btn-pink { background: #FDEDEC; }

.reader-form-box .submit-btn {
    padding: 0.8rem 1.6rem;
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    font-family: 'NanumSquare', sans-serif;
    box-shadow: 0 4px 10px rgba(255, 138, 0, 0.2);
}

.reader-form-box .submit-btn:hover {
    background: #e07b00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 138, 0, 0.3);
}

.reader-form-box .submit-btn:active {
    transform: translateY(0);
}

/* Post-it Board Styling */
.reader-board {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 2.5rem;
    justify-content: center;
    align-items: start;
    margin-top: 3rem;
}

/* Reader Post-it Card Styling (Smaller than Author's) */
.reader-postit {
    padding: 1.4rem 1.2rem 1.2rem;
    box-shadow: 2px 6px 14px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    border-radius: 4px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, z-index 0s;
    box-sizing: border-box;
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.reader-postit:hover {
    transform: scale(1.05) rotate(0deg) !important;
    box-shadow: 4px 12px 22px rgba(0, 0, 0, 0.14) !important;
    z-index: 10;
}

/* Tape decoration at top center of each mini post-it */
.reader-postit::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(0.5px);
    border-left: 1px dashed rgba(0, 0, 0, 0.06);
    border-right: 1px dashed rgba(0, 0, 0, 0.06);
    z-index: 2;
}

/* Post-it colors */
.reader-postit.bg-yellow { background: #FEF9E7; }
.reader-postit.bg-blue { background: #EAF2F8; }
.reader-postit.bg-green { background: #EAFAF1; }
.reader-postit.bg-pink { background: #FDEDEC; }

/* Header of post-it (Nickname + Delete button) */
.reader-postit .postit-header {
    font-family: 'NanumSquare', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: #222;
    margin-bottom: 0.6rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    padding-bottom: 0.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reader-postit p {
    font-family: 'BelovedMyoeunttobak', 'NanumSquare', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
    word-break: keep-all;
}

.reader-postit .postit-date {
    font-size: 0.75rem;
    color: #888;
    text-align: right;
    margin-top: auto;
    padding-top: 0.8rem;
    font-family: 'NanumSquare', sans-serif;
    font-weight: 700;
    opacity: 0.8;
}

/* Delete Button on Post-it */
.reader-postit .delete-btn {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 2px 4px;
    transition: color 0.2s, opacity 0.2s;
    opacity: 0;
    z-index: 5;
}

.reader-postit:hover .delete-btn {
    opacity: 0.7;
}

.reader-postit .delete-btn:hover {
    color: #E74C3C;
    opacity: 1;
}

/* Pop-in animation */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Overrides for Reader Messages */
@media (max-width: 768px) {
    .reader-messages-section {
        margin-top: 4rem;
        padding: 0 1rem;
    }
    
    .reader-section-desc {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
    }
    
    .reader-form-box {
        padding: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .reader-form-box textarea {
        height: 75px;
    }
    
    .reader-form-box .form-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .reader-form-box .color-selector {
        justify-content: space-between;
    }
    
    .reader-form-box .submit-btn {
        width: 100%;
        text-align: center;
    }
    
    .reader-board {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 2rem;
    }
    
    .reader-postit {
        min-height: auto;
        padding: 1.2rem 1rem;
    }
    
    .reader-postit::before {
        width: 45px;
        height: 16px;
        top: -8px;
    }
    
    .reader-postit .postit-header {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .reader-postit p {
        font-size: 0.92rem;
        line-height: 1.45;
    }
    
    .reader-postit .postit-date {
        font-size: 0.7rem;
        padding-top: 0.5rem;
    }
    
    /* Make delete button always visible on mobile since there is no hover */
    .reader-postit .delete-btn {
        opacity: 0.5;
        font-size: 1rem;
        padding: 2px;
    }
}