@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Sans+KR:wght@400;500;700&display=swap');

:root {
    --primary-blue: #0066cc;
    --dark-blue: #0a1931;
    --secondary-blue: #1e70d6;
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: #f8faff;
    --popup-width: 550px;
    --popup-height: 850px;
}

body.notice-page {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: transparent;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

@media (min-width: 769px) {
    body.notice-page {
        width: 550px;
        height: 850px;
    }
}

.notice-container {
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Header Section */
.notice-header {
    background: #0a1931;
    background-image:
        radial-gradient(circle at 100% 0%, rgba(26, 60, 110, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(10, 25, 49, 1) 0%, transparent 50%);
    padding: 20px 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.notice-header::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: transparent;
    border: 40px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 1;
}

.notice-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30, 112, 214, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo img {
    height: 30px;
    filter: brightness(0) invert(1);
}

.ir-notice-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: background 0.2s;
    text-decoration: none;
}

.ir-notice-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-content h4 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.header-content h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.header-content h1 span {
    color: #80eaff;
}

/* Body Section */
.notice-body {
    flex: 1;
    padding: 20px 25px;
    /* 25px 30px -> 20px 25px */
    background-color: #fff;
    overflow-y: auto;
}

.notice-intro {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    /* 15px -> 10px */
    color: #333;
}

.notice-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    /* 30px -> 20px */
    text-align: justify;
}

.info-box {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 15px 20px 10px 20px;
    /* 상15 우20 하10 좌20 */
    border-left: 4px solid var(--secondary-blue);
}

.info-box h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    /* 15px -> 12px */
    color: var(--dark-blue);
    display: flex;
    align-items: center;
}

.info-box h3::before {
    content: '■';
    margin-right: 8px;
    font-size: 12px;
    color: var(--secondary-blue);
}

.method-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.method-item {
    margin-bottom: 12px;
    /* 15px -> 12px */
}

.method-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    /* 8px -> 5px */
    padding-left: 15px;
    position: relative;
}

.method-label::before {
    content: '○';
    position: absolute;
    left: 0;
    font-weight: 400;
}

.sub-list {
    list-style: none;
    padding-left: 15px;
}

.sub-list li {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.sub-list li::before {
    content: attr(data-num);
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--secondary-blue);
}

.contact-highlight {
    margin-top: 8px;
    /* 15px -> 8px */
    padding: 8px 15px;
    /* 10px -> 8px */
    background: #fff;
    border: 1px dashed var(--secondary-blue);
    border-radius: 8px;
    text-align: center;
}

.contact-highlight strong {
    color: var(--secondary-blue);
    font-size: 16px;
}

.notice-footer-text {
    margin-top: 10px;
    /* 15px -> 10px */
    margin-bottom: 0;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.company-sign {
    margin-top: 20px;
    /* 30px -> 20px */
    text-align: center;
}

.company-sign p {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 5px 0;
}

/* Integrated Bottom Bar */
.privacy-info-bar {
    background-color: #0d1b32;
    padding: 10px 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #fff;
    flex-shrink: 0;
    /* 내용이 길어도 하단 바가 찌그러지지 않게 고정 */
}

.privacy-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.privacy-left p {
    font-size: 11px;
    margin: 0 0 4px 0;
    opacity: 0.5;
    letter-spacing: -0.2px;
}

.privacy-left a {
    font-size: 11px;
    color: #3e8ede;
    text-decoration: underline;
    opacity: 0.8;
}

.privacy-right {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.2;
}

.footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-group {
    display: flex;
    gap: 12px;
}

.dont-show-checkbox {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    user-select: none;
}

.dont-show-checkbox input {
    margin-right: 5px;
    width: 13px;
    height: 13px;
    accent-color: #3e8ede;
}

.close-link {
    font-size: 12px;
    color: #fff;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-weight: 500;
    opacity: 0.8;
}

.close-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Custom Scrollbar */
.notice-body::-webkit-scrollbar {
    width: 6px;
}

.notice-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notice-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.notice-body::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Mobile */
@media (max-width: 600px) {

    body.notice-page,
    .notice-container {
        width: 100vw;
        height: 100vh;
    }

    .notice-header {
        padding: 20px;
    }

    .notice-header h1 {
        font-size: 18px;
    }

    .notice-body {
        padding: 25px;
    }

    .notice-intro {
        font-size: 14px;
    }

    .notice-text {
        font-size: 13px;
    }
}