.point-popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1200;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Prompt', sans-serif;
}

.point-popup {
    position: relative;
    background: #FFFFFF;
    width: 90%;
    max-width: 340px;
    border-radius: 16px;
    padding: 32px 24px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.point-popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #333333;
    cursor: pointer;
}

.point-popup-header {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.point-popup-body {
    font-size: 16px;
    color: #333333;
    white-space: pre-line;
    margin-bottom: 24px;
}

.point-popup-button {
    display: inline-block;
    background: #DA3732;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 22px;
    transition: background 0.2s ease;
}

.point-popup-button:hover {
    background: #C13F3E;
}
