#tsubs-restart-subscription-details-backdrop,
#theme-tsubs-restart-subscription-details-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.tsubs-rsd-section {
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: tsubs-rsd-pop 0.3s ease-out;
}

@keyframes tsubs-rsd-pop {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.tsubs-rsd-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #121117;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.tsubs-rsd-close-btn:hover {
    opacity: 1;
}

.tsubs-rsd-avatar-wrap {
    margin-bottom: 20px;
}

.tsubs-rsd-avatar {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
}

.tsubs-rsd-title {
    font-size: 26px;
    font-weight: 700;
    color: #121117;
    margin-bottom: 24px;
}

.tsubs-rsd-plan-card {
    background: #F8F8FA;
    border: 1px solid #E6E6EB;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.tsubs-rsd-plan-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #121117;
    margin-bottom: 4px;
}

.tsubs-rsd-plan-period {
    display: block;
    font-size: 14px;
    color: #121117;
    opacity: 0.6;
}

.tsubs-rsd-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tsubs-rsd-info-list li {
    font-size: 15px;
    color: #121117;
    opacity: 0.8;
    line-height: 1.5;
    position: relative;
    padding-left: 12px;
}

.tsubs-rsd-info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #121117;
}

.tsubs-rsd-btn-primary {
    width: 100%;
    background: #FF2500;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.tsubs-rsd-btn-primary:hover {
    background: #E62200;
}
