.sub-popup-overlay-9e32e9e0 {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.sub-popup-overlay-9e32e9e0.show {
    opacity: 1;
}
.sub-popup-content-9e32e9e0 {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sub-popup-overlay-9e32e9e0.show .sub-popup-content-9e32e9e0 {
    transform: translateY(0) scale(1);
}
.sub-popup-close-9e32e9e0 {
    position: absolute;
    top: 15px; right: 20px;
    background: #f1f5f9; 
    border: none;
    border-radius: 50%;
    width: 36px; height: 36px;
    font-size: 24px; cursor: pointer;
    color: #64748b;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.sub-popup-close-9e32e9e0:hover { 
    background: #e2e8f0;
    color: #0f172a; 
}
.sub-popup-header-9e32e9e0 h2 { 
    margin-top: 0; 
    color: #0f172a; 
    font-size: 2.2rem; 
    font-weight: 800;
    margin-bottom: 15px; 
    letter-spacing: -0.02em;
}
.sub-popup-header-9e32e9e0 p { 
    color: #475569; 
    margin-bottom: 2rem; 
    line-height: 1.6; 
    font-size: 1.05rem;
}
#sub-popup-form-9e32e9e0 { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}
.sub-popup-input-group-9e32e9e0 input { 
    width: 100%;
    padding: 16px; 
    border: 2px solid #e2e8f0; 
    border-radius: 8px; 
    font-size: 16px; 
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.sub-popup-input-group-9e32e9e0 input:focus { 
    border-color: #3b82f6; 
}
.sub-popup-btn-9e32e9e0 { 
    padding: 16px; 
    background: #3b82f6; 
    color: #ffffff; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 18px; 
    font-weight: 700; 
    transition: background-color 0.3s ease, transform 0.1s ease; 
}
.sub-popup-btn-9e32e9e0:hover { 
    background: #2563eb; 
}
.sub-popup-btn-9e32e9e0:active {
    transform: scale(0.98);
}
#sub-popup-success-9e32e9e0 {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 2rem;
    border-radius: 12px;
}
#sub-popup-success-9e32e9e0 p { 
    color: #166534; 
    font-size: 1.1rem; 
    margin-bottom: 15px; 
    font-weight: 600;
}
.sub-popup-code-box-9e32e9e0 strong { 
    background: #ffffff; 
    padding: 15px 30px; 
    border: 2px dashed #22c55e;
    border-radius: 8px; 
    display: inline-block; 
    color: #15803d; 
    letter-spacing: 2px; 
    font-size: 1.5rem; 
}