.vip-entry-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vip-entry-modal.hidden {
    display: none !important;
}

.vip-entry-dialog {
    position: relative;
    width: min(460px, calc(100vw - 32px));
    border-radius: 20px;
    background: #ffffff; 
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
    overflow: visible;
}

.vip-entry-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 9999px;
    background: #f7f8fa;
    color: #2c3e50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vip-entry-close:hover {
    background: #eef2f7;
    color: #111827;
}

.vip-entry-header {
    padding: 22px 56px 0;
    text-align: center;
}

.vip-entry-title {
    margin: 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
}

.vip-entry-body {
    padding: 18px 24px 24px;
}

.vip-entry-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vip-entry-image-box {
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

 img {
    flex: 1 0;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.vip-entry-desc {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.75;
}

.vip-entry-desc-highlight {
    color: #ef4444;
    font-weight: 600;
}

.vip-entry-checkbox-row {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
    width: 100%;
    margin-top: 14px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.75;
    cursor: pointer;
    user-select: none;
}

.vip-entry-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    margin: 0;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #ffffff;
    position: relative;
    cursor: pointer;
}

.vip-entry-checkbox:checked {
    background: #ef4444;
    border-color: #ef4444;
}

.vip-entry-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.vip-entry-checkbox-text {
    display: inline-block;
}

.vip-entry-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
}

.vip-entry-primary,
.vip-entry-secondary {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.vip-entry-primary {
    color: #fff;
    background: linear-gradient(135deg, #ef4444 0%, #c53030 100%);
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.22);
}

.vip-entry-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(239, 68, 68, 0.26);
}

.vip-entry-secondary {
    color: #374151;
    background: #f7f8fa;
    border: 1px solid #e5e7eb;
}

.vip-entry-secondary:hover {
    color: #111827;
    border-color: #d1d5db;
    background: #f3f4f6;
}

@media (max-width: 640px) {
    .vip-entry-dialog {
        width: min(100%, calc(100vw - 24px));
        border-radius: 18px;
    }

    .vip-entry-header {
        padding: 20px 50px 0;
    }

    .vip-entry-title {
        font-size: 20px;
    }

    .vip-entry-body {
        padding: 16px 20px 20px;
    }

    .vip-entry-visual {
        width: 140px;
        height: 140px;
        border-radius: 18px;
    }

    .vip-entry-visual img {
        width: 98px;
        height: 98px;
    }
}
