@charset "utf-8";
/* ==================================================================================
   공통
================================================================================== */
@font-face {
    font-family: 'TmonMonsori';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/TmonMonsori.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary: rgba(9, 9, 9, 0.49);
    --primary-hover: #7c3aed;
    --accent: #333333;
    --bg: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.9);
    --border: rgba(139, 92, 246, 0.15);
    --text: #1e293b;
    --text-muted: #64748b;
    --danger: #ef4444;
    --festive-yellow: #f59e0b;

    --primary-color: #8b5cf6;
    --primary-hover: #7c3aed;
    --bg-color: #f8fafc;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --card-bg: rgba(255, 255, 255, 0.9);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

/* ==================================================================================
   login.jsp
================================================================================== */

.login-container {
    width: 100%;
    max-width: 440px;
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgb(200, 214, 238);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.05);
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-area {
    margin-bottom: 30px;
}

.logo-area i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), #ff007f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.logo-area img {
    width: 140px;
}
.logo-area h1 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    background: linear-gradient(to right, #7c3aed, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-area p {
    font-size: 1.8rem;
    color: #1d3a8f;
    /*color: var(--text-muted);*/
    font-weight: 900;
    margin-top: 15px;
    line-height: 1.1;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    transition: color 0.3s;
}

.form-control {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 15px 14px 45px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: rgba(29, 58, 143, 0.48);
    box-shadow: 0 0 0 3px rgba(134, 162, 250, 0.16);
}

.form-control:focus + i {
    color: rgba(29, 58, 143, 0.43);
}

.btn-submit {
    width: 100%;
    background: #1d3a8f;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(29, 58, 141, 0.16);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 58, 141, 0.39);
}

.btn-submit:active {
    transform: translateY(0);
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    color: #ef4444;
    border-radius: 12px;
    padding: 12px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.4;
}

.info-footer {
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==================================================================================
   index.jsp
================================================================================== */

.user-badge {
    font-size: 0.8rem;
    background: rgb(228, 239, 253);
    padding: 6px 12px;
    border-radius: 20px;
    color: var(--primary);
    border: 1px solid rgb(200, 212, 228);
    font-weight: 700;
}

.user-badge strong {
    color: #1a3581;
}

.btn-logout {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.3rem;
    margin-left: 10px;
    transition: color 0.2s;
}

.btn-logout:hover {
    color: var(--danger);
}

.container {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    padding: 15px;
}

/* Hero Banner - 축제용 화사한 비주얼 */
.hero {
    background-color: #fff;
    /*background: linear-gradient(135deg, rgba(250, 204, 21, 0.12) 0%, rgba(236, 72, 153, 0.08) 100%);*/
    border: 1px solid rgb(200, 214, 238);
    border-radius: 12px;
    text-align: center;
    padding: 0 ;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.06);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    background: #1d3a8f;
    font-family: TmonMonsori, Sans-Serif;
    /*background: linear-gradient(to right, #7c3aed, #db2777);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-align: center;
}
.hero p.subtitle {
    font-size: 1rem;
    color: #1d3a8f;
    /*color: #475569;*/
    margin-bottom: 18px;
    line-height: 1.5;
    word-break: auto-phrase;
}
.hero img {
    width: 100%;
}

.more-text {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 5px;

    margin-top: 10px;
    padding: 12px 16px;
    font-size: 20px;
    font-weight: 700;
    color: #1d3a8f;
    background-color: rgba(206, 225, 248, 0.5);
}
.more-text b {
    padding: 2px 70px;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    border-radius: 20px;
    background-color: #1d3a8f;
}
@media only screen
and (max-width: 768px) {
    .more-text {
        font-size: 15px;
        font-weight: 700;
    }

    .more-text b {
        padding: 2px 30px;
        font-size: 14px;
        font-weight: 400;
    }
}

    .more-text span {
        display: flex;
        justify-content: center;
        align-items: center;

        width: 100%;
        padding: 10px;
        border-radius: 5px;
        background-color: #fff;
    }

    .instruction-box {
        background: rgb(241 247 255);
        border-radius: 16px;
        padding: 16px;
        font-size: 0.9rem;
        color: #333;
        text-align: left;
        line-height: 1.6;
        border: 1px solid rgb(200, 214, 238);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        margin: 16px;
    }
    .instruction-box b {
        display: block;
        font-size: 1rem;
        margin-top: 20px;
        margin-bottom: 8px;
    }
    .instruction-box b:first-child {
        margin-top: 0;
    }
    .instruction-box img {
        max-width: 500px;
        width: 100%;
    }
    /* Upload Button */
    .upload-section {
        margin: 20px 0 10px;
        text-align: center;
    }

    .btn-upload-trigger {
        background: rgb(233 32 83);
        /*background: linear-gradient(135deg, var(--primary), var(--accent));*/
        color: #ffffff;
        border: none;
        border-radius: 50px;
        padding: 16px 32px;
        font-size: 1.1rem;
        font-weight: 800;
        cursor: pointer;
        box-shadow: 0 12px 30px rgba(255, 0, 71, 0.09);
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        width: 85%;
        max-width: 320px;
        justify-content: center;
    }

    .btn-upload-trigger:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(255, 0, 71, 0.18);
    }

    .btn-upload-trigger:disabled {
        background: #00000036;
        /*background: #cbd5e1;*/
        box-shadow: none;
        cursor: not-allowed;
        transform: none;
    }

    .upload-limit-info {
        font-size: 1rem;
        color: #1d3a8f;
        /*color: var(--text-muted);*/
        margin-top: 10px;
    }

    /* Search Section */
    .search-section {
        margin-bottom: 25px;
    }

    .search-wrapper {
        position: relative;
    }

    .search-wrapper i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
    }

    .search-input {
        width: 100%;
        background: var(--card-bg);
        border: 1px solid rgba(30, 69, 184, 0.18);
        border-radius: 14px;
        padding: 16px 15px 16px 42px;
        color: var(--text);
        font-size: 0.95rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        transition: all 0.3s;
    }

    .search-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
    }

    /* Photos Stream Grid */
    .photo-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    @media (min-width: 600px) {
        .photo-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
    }

    .photo-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 1 / 1;
        position: relative;
        cursor: pointer;
        box-shadow: 0 6px 15px rgba(139, 92, 246, 0.04);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    }

    .photo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(139, 92, 246, 0.15);
    }

    .photo-card:active {
        transform: scale(0.97);
    }

    .photo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .photo-card-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0) 100%);
        padding: 15px 12px 10px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .photo-card-author {
        font-size: 0.85rem;
        font-weight: 700;
        color: #ffffff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 70%;
    }

    .photo-card-likes {
        font-size: 0.95rem;
        color: #ffffff;
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 700;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    .photo-card-likes i {
        color: #f43f5e;
        font-size: 1.25rem;
        filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
    }

    /* Loading Spinner */
    .loader {
        display: none;
        text-align: center;
        padding: 25px;
    }

    .loader i {
        font-size: 1.6rem;
        color: var(--primary);
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Modal Popups (Detail & Upload) */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.55);
        z-index: 100;
        justify-content: center;
        align-items: center;
        padding: 15px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .modal-content {
        background: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 28px;
        width: 100%;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25);
        color: var(--text);
        animation: modalScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes modalScaleUp {
        from { opacity: 0; transform: scale(0.9); }
        to { opacity: 1; transform: scale(1); }
    }

    .modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.8);
        border: none;
        color: #475569;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: background 0.2s;
    }

    .modal-close:hover {
        background: #fff;
    }

    /* Upload Modal Specifics */
    .upload-modal-body {
        padding: 30px 20px;
    }

    .upload-modal-body h3 {
        font-size: 1.4rem;
        font-weight: 900;
        margin-bottom: 15px;
        text-align: center;
        color: #1d3a8f;
    }

    .file-select-zone {
        border: 2px dashed rgba(29, 58, 142, 0.25);
        background: rgba(205, 218, 255, 0.25);
        border-radius: 18px;
        padding: 45px 20px;
        text-align: center;
        cursor: pointer;
        margin-bottom: 20px;
        transition: all 0.3s;
    }

    .file-select-zone:hover {
        border-color: var(--primary);
        background: rgba(203, 216, 251, 0.54);
    }

    .file-select-zone i {
        font-size: 2.8rem;
        color: var(--primary);
        margin-bottom: 10px;
    }

    .file-select-zone p {
        font-size: 0.95rem;
        color: var(--text-muted);
        font-weight: 600;
    }

    .file-preview {
        display: none;
        max-width: 100%;
        max-height: 300px;
        margin: 0 auto 20px;
    }

    /* Cropper 커스텀 스타일 */
    .cropper-container {
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid var(--border);
        margin-bottom: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .textarea-comment {
        width: 100%;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        padding: 14px;
        color: var(--text);
        font-size: 0.95rem;
        resize: none;
        height: 90px;
        margin-bottom: 20px;
        font-family: inherit;
        transition: border-color 0.2s;
    }

    .textarea-comment:focus {
        outline: none;
        border-color: var(--primary);
    }

    .btn-upload-submit {
        width: 100%;
        background: #1d3a8f;
        color: #ffffff;
        border: none;
        border-radius: 14px;
        padding: 16px;
        font-size: 1.05rem;
        font-weight: 800;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(34, 63, 145, 0.15);
        transition: all 0.2s;
    }

    .btn-upload-submit:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(34, 63, 145, 0.38);
    }

    .btn-upload-submit:disabled {
        background: #cbd5e1;
        box-shadow: none;
        cursor: not-allowed;
        transform: none;
    }

    /* Detail Modal Specifics */
    .detail-img-container {
        width: 100%;
        aspect-ratio: 4 / 3;
        background: #090d16;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .detail-img-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        cursor: zoom-in;
    }

    .detail-body {
        padding: 24px;
    }

    .detail-interactive {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 18px;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 18px;
    }

    .btn-like {
        background: none;
        border: none;
        color: #dfdfdf;
        font-size: 1.65rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: transform 0.2s, color 0.2s;
    }

    .btn-like.liked {
        color: #f43f5e;
    }

    .btn-like:active {
        transform: scale(0.85);
    }

    .likes-text {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text);
    }

    .detail-author-info {
        font-size: 1rem;
        font-weight: 800;
        color: var(--text);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .detail-author-info #detailAuthorName {
        font-weight: 700;
        color: #333;
        font-size: 0.85rem;
    }
    .detail-author-info #detailAuthorAff {
        font-weight: 500;
        color: #666;
        font-size: 0.8rem;
    }
    .detail-comment {
        font-size: 0.95rem;
        color: #334155;
        line-height: 1.6;
        background: #f8fafc;
        padding: 14px;
        border-radius: 16px;
        border: 1px solid #e2e8f0;
        white-space: pre-wrap;
    }

    /* Detail Modal Extra Feed (Infinite scroll under clicked photo) */
    .detail-extra-section {
        border-top: 1px solid #f1f5f9;
        padding: 24px;
    }
    .detail-extra-title {
        font-size: 0.85rem;
        font-weight: 800;
        color: var(--text-muted);
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .detail-extra-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .detail-extra-card {
        aspect-ratio: 1/1;
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        border: 1px solid rgba(0,0,0,0.05);
    }
    .detail-extra-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 마이 포토 섹션 스타일 */
    .my-photos-section {
        margin: 16px;
        background: #fff;
        border: 1px solid rgb(200, 214, 238);
        border-radius: 10px;
        padding: 18px;
        text-align: left;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    }

    .my-photos-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: #1d3a8f;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .my-photos-grid {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .my-photo-card {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        border: 1px solid rgba(0,0,0,0.06);
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .my-photo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .btn-my-photo-delete {
        position: absolute;
        top: 4px;
        right: 4px;
        background: rgba(239, 68, 68, 0.9);
        border: none;
        color: white;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        transition: background 0.2s, transform 0.2s;
    }

    .btn-my-photo-delete:hover {
        background: #dc2626;
        transform: scale(1.1);
    }

    /* ==================================================================================
       tv.jsp
    ================================================================================== */


    /* 갤러리 슬라이드 컨테이너 */
    .slide-container {
        width: 100%;
        height: 100%;
        position: relative;
    }
    .slide-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        align-items: flex-end;
    }

    .slide-layer.active {
        opacity: 1;
        z-index: 2;
    }

    /* Ambient Background Blur to fill the screen */
    .ambient-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        filter: blur(80px);
        opacity: 0.25;
        background-size: cover;
        background-position: center;
        z-index: 1;
        transition: background-image 1.5s ease-in-out;
    }

    /* 오버레이 정보 영역 */
    .caption-card {
        position: absolute;
        bottom: 40px;
        left: 50px;
        background: rgba(255, 255, 255, 0.13);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 25px 35px;
        max-width: 500px;
        z-index: 10;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
        transform: translateY(20px);
        opacity: 0;
        transition: transform 1s ease, opacity 1s ease;
    }

    .caption-card.show {
        transform: translateY(0);
        opacity: 1;
    }

    .author-info {
        font-size: 1.3rem;
        font-weight: 800;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #ffffff;
    }

    .author-info span {
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
    }
    .author-info #authorAff {
        color: rgba(255, 255, 255, 0.86);
        font-weight: 400;
    }

    .comment-text {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #e2e8f0;
        word-break: break-all;
        white-space: pre-wrap;
    }

    /* 실시간 좋아요 수 플로팅 */
    .likes-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #ec4899, #6366f1);
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
        margin-bottom: 15px;
    }

    .likes-badge i {
        animation: beat 1s infinite alternate;
    }

    @keyframes beat {
        to { transform: scale(1.2); }
    }

    /* 상단 플로팅 뱃지 */
    .live-badge {
        position: absolute;
        top: 40px;
        right: 50px;
        background: rgba(220, 38, 38, 0.85);
        backdrop-filter: blur(10px);
        color: white;
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: 1px;
        z-index: 10;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    }

    .live-badge .blink {
        width: 8px;
        height: 8px;
        background-color: white;
        border-radius: 50%;
        animation: blinker 1s linear infinite;
    }

    @keyframes blinker {
        50% { opacity: 0; }
    }

    .header-logo {
        position: absolute;
        top: 30px;
        left: 50px;
        z-index: 10;
        font-size: 1.5rem;
        font-weight: 900;
        letter-spacing: -0.5px;
        display: flex;
        align-items: center;
        gap: 10px;
        background-color: #fff;
        border-radius: 10px;
        padding: 10px 12px;
    }
    .header-logo img {
        width: 180px;
    }
    /* TV 부팅/빈 상태 스크린 */
    .empty-screen {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 5;
        color: #94a3b8;
    }

    .empty-screen i {
        font-size: 4rem;
        margin-bottom: 20px;
        color: #475569;
    }

    .empty-screen p {
        font-size: 1.2rem;
    }

    /* TV용 고품격 비활성 화면 스타일 */
    .empty-screen-full {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
        color: #f8fafc;
        text-align: center;
        padding: 40px;
        z-index: 100;
    }

    .empty-screen-full h1 {
        font-size: 3.5rem;
        font-weight: 900;
        background: linear-gradient(135deg, #8b5cf6, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .empty-screen-full .status-msg {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: #e2e8f0;
    }

    .empty-screen-full .sub-msg {
        font-size: 1.2rem;
        color: #64748b;
    }

    .pulse-icon {
        font-size: 6rem;
        background: linear-gradient(135deg, #8b5cf6, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 30px;
        animation: iconPulse 2s infinite alternate;
    }

    @keyframes iconPulse {
        0% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.3)); }
        100% { transform: scale(1.08); filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.6)); }
    }
