.mindwatch-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.7);
    font-family: "Noto Sans KR", sans-serif;
}

.mindwatch-popup[hidden] {
    display: none;
}

.mindwatch-popup__dialog {
    width: min(100%, 290px);
    outline: none;
}

.mindwatch-popup__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #fff;
}

.mindwatch-popup__control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
}

.mindwatch-popup__check {
    width: 13px;
    height: 7px;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: rotate(-45deg) translateY(-2px);
}

.mindwatch-popup__card {
    display: block;
    padding: 30px 22px 28px;
    border-radius: 16px;
    color: #080808;
    background: #E9E9EB;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    text-decoration: none;
}

.mindwatch-popup__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mindwatch-popup__title {
    margin: 0;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -1px;
}

.mindwatch-popup__logo {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.mindwatch-popup__copy {
    margin: 20px 0 0;
    color: #6A6A6A;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -1px;
}

body.mindwatch-popup-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .mindwatch-popup {
        align-items: flex-start;
        padding: min(42vh, 360px) 20px 24px;
        overflow-y: auto;
    }

}
